/* Load/Playback Bar*/
#progressBar {
position: absolute;
width: 60vw;
bottom: 3vh;
left: 50%;
transform: translateX(-50%);
border-radius: 10px;
box-shadow: #00000052 0px 0px 30px;
}

#playProgress {
position: absolute;
width: 1vh;
height: 1vh;
border-radius: 10px;
background-color: #AD50FF; /* progress bar color */
}

#loadProgress {
height: 1vh;
border-radius: 10px;
background-color: #FFFFFF; /* load bar color */
}


.over {
z-index: 10;
pointer-events: none;
position:absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;

text-align: center;
color: white;
font-family: 'Nunito', monospace;
text-shadow: 0px 0px 5px black;
}

/* "Tap to Place/Loading..." Text */
#promptText {
font-size: 2em;
bottom: 12vh;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
}

.media-btn {
position: absolute;
pointer-events: auto;
width: 7vw;
bottom: 2vh;
}

#pauseBtn {
left: 4vw;
}

#muteBtn {
right: 4vw;
}

#gradient-box {
background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
z-index: -1;
width: 100vw;
height: 20vh;
position: absolute;
bottom: 0;
}

#promptText {
    bottom: 25vh !important;
}

@media only screen and (min-width: 768px) { /* For Desktop */
#promptText {
    font-size: 3em;
}

#progressBar {
    position: absolute;
    bottom: 5.5vh;
}

.media-btn {
    bottom: 4vh;
    width: 4vw;
}
}
.recorder-container {
    bottom: 7vmin !important;
}

.a-modal {
    display: none !important;
}

#recorder {
    display: none;
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    }
    @keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
                transform: scale(1);
}
}
  

.scale-up-center {
	-webkit-animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
	        animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate both;
}

.landing-page {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 814;
    background: rgb(0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: middle;
}

.landing-page__content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-family: 'Nunito', monospace;
    text-align: center;
}

.landing-page__logo {
    width: 40%;
}

.landing-page__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.landing-page__button {
    background: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: black;
    font-family: 'Nunito', monospace;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-bottom: 20px;
}

.landing-page__description {
    font-size: 1.2em;
    margin-bottom: 20px;
    width: 80%;
}