#flashPreview {
    width: 100%;
    height: 180px;
}

.audio-preview {
    transition-duration: 0.1s;
    transition-property: all;
    height: 4px;
    max-width: 100%;
    border-radius: 2px;
    margin-bottom: 16px;
    background-color: lightgrey
}

.video-preview {
    display: inline-block;
    position: relative;
    width: 266px;
    height: 150px;
    max-width: 100%;
    border-radius: 2px;
    overflow: hidden;
}

.video-preview video {
    display: inline-block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
}

.escalate-popup {
    font-size: 11pt;
    line-height: normal;
    position: absolute;
    bottom: 40px;
    left: -115px;
    cursor: default;
    text-transform: none;
    text-shadow: none;
}

.arrow_box {
    position: relative;
    background: black;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 2px;
    top: -11px;
    box-shadow: 1px 1px 8px black;
}

.arrow_box:before,
.arrow_box:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:before {
    border-color: transparent;
    border-top-color: rgba(255, 255, 255, .2);
    border-width: 11px;
    margin-left: -11px;
}
.arrow_box:after {
    border-color: transparent;
    border-top-color: black;
    border-width: 10px;
    margin-left: -10px;
}
