.lds-facebook {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}
.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 13px;
    background: #444444;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
    left: 6px;
    animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
    left: 45px;
    animation-delay: 0;
}
@keyframes lds-facebook {
    0% {
        top: 6px;
        height: 51px;
    }
    50%, 100% {
        top: 19px;
        height: 26px;
    }
}  

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
}
.lds-ripple div {
    position: absolute;
    border: 4px solid #444444;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}  

p {
    font-weight: 100;
    font-size: 1em;
}

.page-container {
    margin-top: 3%;
    margin-left: 25%;
    margin-right: 25%;
    font-family: Arial, sans-serif
}

.subheader {
    color: #666666;
    font-size: 1em;
}

.text-container {
    background-color: #CCCCCC;
    padding: 17px 12px 17px 12px;
    border-radius: 5px;
    height: 150px;
}

.text-container-2 {
    background-color: rgb(250, 241, 221);
}

.transcript  {
    color: #353535;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1em;
}

.uploader {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
}

.label {
    margin-bottom: 10px;
}

audio {
    width: 100%;
    height: 54px;
}

.player {
    width: 45%;
    margin-right: 20px;
}

.button-play {
    width: 38px;
    height: 38px;
    border-style: solid;
    border-width: 19px 0px 19px 38px;
    border-color: white white white #083e5f;
    padding: 0px;
    margin: 8px 12px 8px 3px;
}

.basic-button {
    background-color: rgb(71, 151, 255);
    border: none;
    color: white;
    padding: 15px 13px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 0px 4px 6px;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: 5px;
}

.button-selected {
    background-color: rgb(71, 255, 111);
}

.nav-button {
    width: 120px; 
    padding: 7px; 
    background-color: rgb(151, 151, 151);
}

.synth-button {
    width: 120px; 
    padding: 7px; 
    background-color: rgb(71, 151, 255);
}

.disabled-nav {
    background-color: rgb(202, 202, 202);
    /* color: rgb(100, 100, 100); */
    cursor: default;
}

.disabled {
    background-color: rgb(158, 200, 255);
    cursor: default;
}

.text-area {
    background-color: rgb(202, 202, 202);
    outline: none;
    border-radius: 5px;
    width: 100%;
    height: 60%;
    padding: 10px;
}

@media only screen and (max-width: 1400px) {
    .page-container {
        margin-top: 3%;
        margin-left: 20%;
        margin-right: 20%;
        font-family: Arial, sans-serif
    }

    .submit-button {
        background-color: rgb(71, 151, 255);
        border: none;
        color: white;
        padding: 15px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
        height: 54px;
        border-radius: 5px;
        right: 10%;
        position: absolute;
    }

    .disabled {
        background-color: rgb(158, 200, 255);
        cursor: default;
    }
}