
    html, body{
      margin: 0;
      height: 100%;
    }

    main{
      background-color: beige;
      margin: 0;
      height: 100%;
    }

    #interactivo-container{
      background-color: #E4E4E4;
      max-width: 100vmin;
      margin: 0 auto;
      position: relative;
      margin-bottom: 1em;
    }

    #interactivo{
      display: flex;
      flex-flow: row nowrap;
    }

    #content{
      display: flex;
      flex-flow: column wrap;
      justify-content: center;
      align-items: stretch;

      flex: 1 auto;
    }

    #map-container{      
      flex: 1 10vh;
      width: 100%;
      
      position: relative;

      cursor: pointer;
    }

    #map{
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 100;
    }

    #artwork-container{
      flex: 0 auto;
      width:100%;
      
      height: 0;
      background:url(../assets/oido-cropped.jpg) center no-repeat;
      background-size: contain;
      padding-bottom: calc(1800/2555*100%);
      
      position: relative;
    }


    #artwork{
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 100;
    }

    #controllers{
      flex: 0 auto;

      display: flex;
      flex-flow: column wrap;
      justify-content: space-around;
      align-items: center;
    }

    .controller{
      flex: 0 auto;
      margin: 0.5em;
    }

    #slider-container-outer{
      flex: 1 auto;
      width: 14px;

      height: fit-content;
    }

    #slider-container-inner{
      display: table;
      width: inherit;
      position: relative;

      width: 100%;
      height: 100%;
    }

    .button{
      border: 0;
      background: #525252;
      color: white;
      border-radius: 100%;
      font-size: 1.5em;
      width: 1.5em;
      height: 1.5em;
      line-height: 1;
      text-align: center;
      cursor: pointer;
    }

    .button:disabled {
      background: #BEBEBE;
    }

    #playButton{
      width: 2.5em;
      height: 2.5em;
    }


    #tempoSlider{
      
      display: block;
      transform-origin: top left;
      transform: rotate(-90deg) translate(-100%);
      white-space: nowrap;
      margin: 0%;
      position: absolute;

      background-color: #9D9C9C;
      width: 30vmin;
      height: 14px;
      cursor: pointer;
      -webkit-appearance: none;
      border-radius: 14px;
      border: 0;

      top: calc((100% - 30vmin) /2);


    }

    #tempoSlider::-webkit-slider-thumb{
      -webkit-appearance: none;
      height: 2.5em;
      width: 2.5em;
      background: #525252;
      border-radius: 100%;
      border: 2px solid #E4E4E4;
      cursor: pointer;   
    }

    #tempoSlider::-moz-range-thumb{
      height: 2em;
      width: 2em;
      background: #525252;
      border-radius: 100%;
      border: 2px solid #E4E4E4;
      cursor: pointer;
    }

    #tempoSlider::-ms-thumb {
      height: 3em;
      width: 3em;
      background: #525252;
      border-radius: 100%;
      border: 2px solid #E4E4E4;
      cursor: pointer;
    }

    #tempoSlider:disabled::-webkit-slider-thumb{
      background: #BEBEBE;
    }
    
    #tempoSlider:disabled::-moz-range-thumb{
      background: #BEBEBE;
    }

    #tempoSlider:disabled::-ms-thumb{
      background: #BEBEBE;
    }

    #tempoSlider::-moz-range-track {
      background: transparent;
    }

    #tempoSlider::-ms-track {
      height: 14px;
      background: transparent;
      border-color: transparent;
      color: transparent;
    }
    #tempoSlider::-ms-fill-lower {
      background: grey;
    }
    #tempoSlider::-ms-fill-upper {
      background: grey;
    }


    /*CSS reset custom browser styles*/
    input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      background: transparent;
    }

    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
    }

    input[type=range]:focus {
      outline: none;
    }

    input[type=range]::-ms-track {
      width: 100%;
      cursor: pointer;
      background: transparent; 
      border-color: transparent;
      color: transparent;
    }

    .overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      background: rgba(0, 0, 0, 0.65);
      top: 0;
      visibility: hidden;
      z-index: 1000;
    }

    .overlay svg{
      width: 100%;
      height: 100%;
    }

    svg.artwork-overlay{
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1001;
      cursor: pointer;
    }

    svg#tutorial{
      visibility: hidden;
    }

    svg#tutorial-phone{
      visibility: hidden;
    }

    .caption {
      font-size: 12px;
      /*font-weight: 600;*/
      bottom: 10px;
      left: 10px;
      text-shadow: rgba(255,255,255,0.3) 0px 0px 5px;
      padding: 0;
      border: 0;
      font-family:'Gotham SSm A', 'Gotham SSm B';
    }


    @media only screen and (max-width : 768px){

      #interactivo{
        flex-direction: column;
      }

      #controllers{
        flex-direction: row;
        flex-wrap: nowrap
      }

      #slider-container-outer{
        width: auto;
        display: auto;
      }

      #slider-container-inner{
        padding: 0;
        height: auto;
      }

      #tempoSlider{
        transform: rotate(0deg);
        position: relative;
        width: 100%;
      }

      svg#tutorial-phone {
        visibility: visible;
      }

      svg#tutorial {
        visibility: hidden;
      }

      
      #tutorial-overlay{
        visibility: visible;
      }

      
       
    }


    @media screen and (max-width: 480px) and (orientation: portrait) {
      #rotation {
        visibility: visible;
      }  

      #tutorial-overlay{
        visibility: hidden;
      }

      svg.artwork-overlay{
        visibility: hidden;
      }

      svg#tutorial-phone {
        visibility: hidden;
      }
    }

    @media screen and (min-width: 769px) {
      svg#tutorial {
        visibility: visible;
      }

      svg#tutorial-phone {
        visibility: hidden;
      }
      
      
      #tutorial-overlay{
        visibility: visible;
      }
    }