/* Toggle Button Style BEGIN */

#druid-toggle-chat-button {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 20px 20px 0;
    height: 60px;
    width: 60px;
    background-color: #e61b29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    cursor: pointer;
}

#druid-open-chat-icon {
    height: 40px;
    width: 40px;
    display: inline-block;
    background-image: url(../images/speech-bubble.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}

#druid-close-chat-icon {
    height: 23px;
    width: 23px;
    display: inline-block;
    background-image: url(../images/close-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
}

.hidden {
    display: none !important;
}


/* Toggle Button Style END */


/* Video Elements Style BEGIN */

#video {
    background-color: grey;
    height: 250px;
    width: 100%;
    max-width: 350px;
}

#video .volume-indicator {
    position: absolute;
    top: 10px;
}

.dropdowns {
    display: flex;
    margin: 20px 0px;
    flex-direction: column;
}

.dropdowns>.dropdown {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dropdowns>.dropdown>select {
    margin-top: 5px;
}

.dropdowns>.dropdown {
    margin-right: 20px;
    flex-direction: column;
    margin-bottom: 0;
}

.dropdowns>.dropdown>select {
    margin-top: 0;
}

.dropdowns label {
    font-weight: 900;
    margin-right: 15px;
}
.dropdowns label:not(:first-child) {
    margin-left: 30px;
}
.controls {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
}
.controls .video-controls {
    display: flex;
    flex-direction: column;
}
.controls .video-controls>* {
    margin-top: 5px;
}
.controls .result-controls {
    display: flex;
    margin-top: 10px;
}

/* Video Elements Style END */