body{
    font-family: 'Zilla Slab', serif;
    padding: 0;
    margin: 0;
}

body::-webkit-scrollbar { width: 0 !important }

body { overflow: -moz-scrollbars-none; }

body { -ms-overflow-style: none; }

.wrapContainer{
    max-width: 95vw;
    margin: 0 auto;
}

.wrapContainerNarrow{
    max-width: 60ch;
    margin: 0 auto;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 16px 0;
    background-color: #333652;
    color: #ffffff;
    z-index: 200;
    transition: all .15s ease-out;
}

#header h1{
    font-family: 'Sacramento', cursive;
    font-size: 3.5rem;
    margin: 0;
    transition: all .15s ease-out;
}


#header p{
    font-size: 1.125rem;
    margin: 0 32px;
    max-width: 80ch;
    transition: all .15s ease-out;
}

#header.small{
   height: 40px !important;
    padding: 4px 0 !important;
    transition: all .3s ease-in;
}

#header.small h1{
font-size: 2rem;
    transition: all .3s ease-in;
}

#header.small p{
display: none;
    transition: all .3s ease-in;
}


.header .wrapContainer{
    display: flex;
    align-items: center;
  position: relative;
}


.volume{
    position: absolute;
    right: 0;
    top: 0;
    font-size: .675rem;
}

main{
    overflow: hidden;
}

main.addMargin{
    padding-top: 48px;
}



.orchestraContainer{
    width: 100vw;
height: calc(100vh - 112px);
    padding-top: 112px;
   display: flex;
    justify-items: center;
    align-items: flex-end;
    overflow: hidden;
    background-color: #FAD02C;
  /*  background: #FAD02C url(../img/curve.svg) no-repeat center bottom;
    background-size: 80vw;*/
}

.orchestraContainer svg{
    max-width: 100%;
}
#circle{
    max-height: 75%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.orchestraContainer #textPath{
    font-family: 'Sacramento', cursive;
    font-size: 53px;
    position: absolute;
    
    max-height: 80%;
   top: 18%;
}
    /*    position: absolute;
    width: 100%;
    height: 100%;*/
}

/*.orchestraContainer svg#circle{
    align-self: end;
    margin-top: 200px;
}*/
/*.orchestraContainer svg#textPath{
    position: absolute;
    top: -5vh;
    left: 2vw;
}*/



.orchestraContainer #textPath #text {
        transform: rotate(1deg);
}



.wholeContainer{
    /*width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;*/
  
    background-color: antiquewhite;
 
}


.orchestraRow .wrapContainer{
    display: flex;
}

.orchestraRow h2{
    margin: 0;
    padding: 12px 0;
    font-family: 'Sacramento', cursive;
    font-size: 1.75rem;
}

.instruments{
    margin-left: 32px;
    height: 250px;
    flex-grow: 1;
    border: 2px dashed black;
}

.rowsContainer .row{
    width: 100%;
    height: calc(100vh - 298px);
 
}
.rowsContainer .rows{
    /*height: calc(100vh - 298px);*/
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.rows::-webkit-scrollbar { width: 0 !important }

.rows { overflow: -moz-scrollbars-none; }

.rows { -ms-overflow-style: none; }

.rows > div{
    scroll-snap-align: start;
    height: 200px; 
}

.rowO{
    margin-top: 48px;
}
.orchestraRow{
    background-color: #FAD02C;
    width: 100%;
    height: 250px;
    position: fixed;
    top: 48px;
    left: 0;
    opacity: 0;
}


.muteBtn{
width: 0.8em;
    opacity: 0;
    cursor: pointer;
    margin-left: 8px;
    }
.muteIcon {
    margin: 0 0.8em;
    background: url(../img/unmute.svg) no-repeat left center;
    cursor: pointer;
    background-size: 0.9em;
    opacity: 0.9;
}

.mute {
    background: url(../img/mute.svg) no-repeat left center;
    background-size: 0.9em;
}



.rowIndicator{
    display: none;
}
.rows.snapped{
    /*height:70vh;*/
    height: 66vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    margin-top: 34vh;
    /*width: calc(100vw + 15px);*/
}

.rows.snapped .rowIndicator{
    display: block;
    position: fixed;
    left: 0;
    bottom: 25vh;
    z-index: 15;
}


.row.active{
    border: 2px solid yellow;
    
}
.rowIndicator{
    position: fixed;
    left: 0;
    bottom: 30vh;
    z-index: 15;
    font-size: 2rem;
}

.rowOne{
    background-color:  rgb(0, 204, 0);
    margin-top: 298px;
}

.rowTwo{
     background-color: #0099ff;
}

.rowThree{
     background-color: pink;
}
.rowFour{
    border: 2px solid palevioletred;
}

.rowFive{
    border: 2px solid darkseagreen;
}

.rowSix{
    border: 2px solid skyblue;
}


/* .rowsContainer{
    height:66vh;
     margin-top: 34px;
     border: 1px solid fuchsia;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}*/


.is-locked {
	overflow: hidden;
}

.is-scrolllocked { /* Specifically for iOS*/
	overflow: hidden;
	height: 100vh;
}

