#footer {
    position: fixed;
    z-index: 20;
    right: 0;
    left: 0;
    bottom: 40px;

	height: 16vh;
	line-height: 16vh;
	height: 10vh;
	line-height: 10vh;
	height: 64px;
    line-height: 64px;
    
    text-align: center;
}

#capture {
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    width: 80px;
    height: 80px;
    line-height: 120px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    transition: .4s;
}

#audioButtonContents {
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
}

#audioButton {
    display: inline-block;
    text-decoration: none;
    max-width: 50%;
    max-height: 50%;
}

#capture:hover {
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}

#description {
    margin: 0;
}

.modalArea {
    display: none;
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 70%;
    height: 80%;
    padding: 10px 30px;
    background-color: #fff;
}

.modalContents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 10% 10px 10px;
}

.modalContents > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

#progress {
    position: relative;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
}
  
#openModal {
    position: absolute;
    z-index: 21;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
}