
:root {
  --myred: #f15a24;
  --mygreen: #22b573;
  --myblue: #29abe2;
  --myyellow: #edd811;
  --mypink: #ff7bac;
}

.myred {
    color: var(--myred);
    
}


* {
    
    font-family: sans-serif;
        
}


.process {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    height: 400px;
    background-color: aliceblue;
}

.process a {
    text-decoration: none;
    display: flex;
    margin: auto;
}

.process div:hover {
    opacity: 1 !important;
}

.empathise, .define, .ideate, .prototype, .test {
    width: 150px;
    height: 150px;
    display: flex;
}



.step {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: auto;
}

.empathise {
    background-color: #22b573;
}

.define {
    background-color: #f15a24;
}

.ideate {
    background-color: #29abe2;
}

.prototype {
    background-color: #edd811;
}

.test {
    background-color: #ff7bac;
}

#empathise, #define, #ideate, #prototype, #test {
    color: black;
    display: none;
    margin: 0;
    position: relative;
}

.empathise:hover ~ #empathise {
    display: block;
    padding: 0px 15px;
    animation-name: step;
    animation-duration: 1s;
}

@keyframes step {
  from {opacity: 0;}
  to {opacity: 1;}
}

.define:hover ~ #define {
    display: block;
    padding: 0px 15px;
    animation-name: step;
    animation-duration: 1s;

}

.ideate:hover ~ #ideate {
    display: block;
    padding: 0px 15px;
    animation-name: step;
    animation-duration: 1s;
}

.prototype:hover ~ #prototype {
    display: block;
    padding: 0px 15px;
    animation-name: step;
    animation-duration: 1s;
}

.test:hover ~ #test {
    display: block;
    padding: 0px 15px;
    animation-name: step;
    animation-duration: 1s;
}

.dance {
    height: 250px;
    width: 90%;
    position: relative;
    margin: auto;
}

#runner, #runner2, #runner3, #runner4, #runner5 {
    position: absolute;
    width: 30px;
    height: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#runner {
    background-color: #22b573;
    left: calc(40% + 0px);
    top: 100px;
}

#runner2 {
    background-color: #f15a24;
    left: calc(40% + 30px);
    top: 100px;
}

#runner3 {
    background-color: #29abe2;
    left: calc(40% + 60px);
    top: 100px;
}

#runner4 {
    background-color: #edd811;
    left: calc(40% + 90px);
    top: 100px;
}

#runner5 {
    background-color: #ff7bac;
    left: calc(40% + 120px);
    top: 100px;
}


p {
    line-height: 1.7;
    font-size: 1.2rem
}

h1 {
    font-size: 60px;
 
}

h2 {
    margin-top:100px;
    margin-left: 0px;
    background-color: grey;
    color: white;
    padding: 10px;
    text-transform: uppercase;
}

h3 {
    
    margin-top: 60px;
    text-decoration: underline;
}


.red { font-size: 10px; }


hr {
    
    margin-top: 100px;
}

#keyterms {
    color: firebrick;
}

.singleimg { 
    width: 50%;
    display: block;
    margin: 70px auto 0px auto ;
}

   .singleimgsmall { 
    width:25%;
    display: block;
    margin: 70px auto 0px auto ;

}

   .singleimgbig { 
    width:90%;
    
    display: block;
    margin: 70px auto 0px auto ;
}

.border {
    border: 1px solid grey
}

.imgcaption {
    margin-bottom: 50px;
    text-align: center;
    font-style: italic; 
    padding: 0 20% 0 20%; 
}

#callout {
    display: none;
}

#callout:hover {
    display:block;
    z-index: 2;
}


.gallery {
    
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    
}

.gallery img {
    max-width: 100%;
    padding: 0px;
    margin: 0px;
    border: 1px solid grey;
}

iframe {    
    width: 98%;
    height: 40vw;
    
}

.wrapper {
    
    width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    
}

.hide{
    opacity: 0;
}

.hide:hover{
    display: block;
    opacity: 1;
    animation-name: step;
    animation-duration: 1s;
}

q {
    border-left: 2px solid gray;
    font-style: italic;
    margin: 5%;
    padding-left: 3%; 
    color: #f15a24;
    display: block;
}

li {margin-top: 10px;
font-size: 1.1rem}

#transcript {
    height: 50px;
    overflow-y: scroll;
    color: darkgray;
}

body {background-color: white;}


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  
  background-color: black;
  color: #fff;
  text-align: left;
  padding: 20px 20px;
  border-radius: 6px;
  position: absolute;
  width: 30vh;
  max-width: 250px;
  z-index: 1;
}

.zoom:hover {
    transform: scale(2)
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}


.dates li {margin-bottom: 20px;
 text-indent: -3em;
    padding-left: 30px;
list-style: none;}



.dotted {
    
    padding: 20px;
    border: 3px dashed red;
    position: relative;
    color: red;
}

.dotted h7 {
    font-size: 4vw;
    font-weight: 800;
    position: absolute;
    
}

.dotted h8 {
    font-size: 4vw;
    font-weight: 800;
    top: 40%;
    left: 60px;
    position: absolute;
}

.dotted h9 {
    font-size: 3.5vw;
    font-weight: 800;
  position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
    
}

.dotted h10 {
    font-size: 3.5vw;
    font-weight: 800;
  position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
    
}

.dotted img {
    width: 100%;
}

.gallery > * {
    
    background-color: #ECECEC;
    margin-right: 30px;
    flex:1;
}


.likert {
    display: flex;
    list-style: none;
    margin: auto;
    width: 60%;
    justify-content: space-between;
    background-color: gainsboro;
    padding: 20px;
    line-height: 25px;
    
}

.likert li {
    display: flex;
    flex-direction: column;
    text-align: center;
}


table {
    margin: auto;
    text-align: center;
    width: 70%;
}

td {padding: 10px;
vertical-align: text-top;

}

td:nth-child(even) {
background-color: var(--myyellow);
}

td:nth-child(odd) {
    background-color: var(--myblue);
}


th {
    background-color: var(--myred);
    padding: 10px;
    color: white;
    width: 50%;
}

video {
    width: 100%;
}
    


@media (max-width:800px) {
  

.wrapper {
    
 width: 90%;
 padding: 5px;
   
}

    .responsivegallery img {

width:100%;
}

   .singleimg { 
  width:95%;
}
    
}

    