.card { border: none !important; }
video {
    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    -moz-transform:rotateY(180deg); /* Firefox */
}
label.required::after {
    content: " *";
    color: red;
}
#sound-bar {
    transition-duration: 50ms;
    background-color: rgb(255, 69, 63);
}
.rectangle-sound-bar {
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 15px;
    max-width: 100%;
    height: 0.5rem;
    width: 0;
}
#camera-asking {
    position: relative;
    color: white;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 140px;
}
#asynchronous-interview-guidelines {
    width: 40%;
    height: 94vh;
    margin-bottom: 10px;
}
#full-screen-itvw {
    width: 90%;
    aspect-ratio: 4 / 3;
    max-width: 90%;
}
#video-container {
    padding-top: 40px;
    padding-bottom: 40px;
    justify-content: center;
}
#video-placer {
    height: 75vh;
}
#interviewee-name {
    margin-right: 6px;
}
#interviewee-referal {
    margin-right: 6px;
}
#sound-container {
    width: 100%;
}
/* #code-form {
    max-width: 90%;
    max-height: 90%;
} */
.async-text {
    font-size: 27px;
}
.async-rule {
    font-size: 16px;
}
.async-pic {
    height: 100% !important;
    width: 100% !important;
}
@media (max-width: 1080px) {
    #two-element-boxes {
        flex-direction: column;
        height: 100vh;
        gap: 20px;
    }
    #video-placer {
        height: 100%;
    }
    #asynchronous-interview-guidelines {
        width: 100%;
        flex: 1 1 auto;
    }
    #video-container {
        width: 100%;
        height: auto;
        justify-content: start;
    }
    #camera-asking {
        font-size: 22px;
        margin: 0;
        padding: 0 70px;
    }
    #camera-active-prompt {
        font-size: 70%;
    }
}
@media (max-width: 900px) {
    #interview-starts-in {
        font-size: small;
    }
    #timer-interval {
        font-size: small;
    }
    #timer {
        font-size: small;
    }
    #question-header {
        font-size: small;
    }
    #question {
        font-size: x-small;
    }
    #next-question {
        width: 50%;
        height: 50%;
        font-size: smaller;
        padding: 5px;
    }
    #microphone {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        padding-right: 0;
    }
    #vidcam {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        padding-left: 0;
    }
    #mic-pic {
        width: 80%;
        height: 80%;
    }
    #vid-pic {
        width: 80%;
        height: 80%;
    }
    #camera-asking {
        font-size: 20px;
        margin: 0;
    }
}
@media (max-width: 768px) {
    #asynchronous-interview-guidelines {
        width: 100%;
        margin-bottom: 20px;
        height: auto;
    }
    #camera-asking {
        font-size: 20px;
        margin: 0;
        padding: 0 70px;
    }
    /* #video-on-one {
        width: 20%;
        height: 20%;
    } */
    #camera-active-prompt {
        font-size: 50%;
    }
    #microphone {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0;
        padding-right: 0;
    }
    #vidcam {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        padding-left: 0;
    }
    #mic-pic {
        width: 60%;
        height: 60%;
    }
    #vid-pic {
        width: 60%;
        height: 60%;
    }
    #code-form {
        flex-direction: column;
    }
    #interviewee-name {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    #interviewee-referal {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
}
@media (max-width: 480px) {
    #interviewee-name {
        width: 75%;
        height: 75%;
        margin-right: 0;
        font-size: 70%;
    }
    #interviewee-referal {
        width: 75%;
        height: 75%;
        margin-right: 0;
        font-size: 70%;
    }
    #two-element-boxes {
        gap: 0;
    }
    .async-text {
        font-size: 16px;
    }
    .async-rule {
        font-size: 12px;
    }
    .async-pic {
        display: none;
    }
    #camera-asking {
        font-size: 15px
    }
}

.indicator {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    background-color: darkgray;
    color: darkgray;
}

.indicator.done {
    background-color: #0a58ca !important;
    color: #0a58ca !important;
}

/* button next question timer style */
.timer-button {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border: none;
    color: white;
    background: #0d6efd;
    cursor: pointer;
    font-size: 16px;
}
button.timer-button:disabled {
    cursor: not-allowed !important;
    pointer-events: visible !important;
    opacity: 0.8;
}
.fill-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #0d3FfF;
    z-index: 0;
    transition: width 1s linear;
    width: 0%;
}
.label {
    position: relative;
    z-index: 1;
}