.dash-nav-btn {
    margin: 0px 2px;
    padding: 1px 6px;
    border: 1px solid #a3a3a3;
    border-radius: 4px;
    font-size: 11px;
}




/* ////////////////////////////////  DASHBOARD INDEX STYLES  ///////////////////////////////////// */

.dash-out-container {
    height: 100%;
    padding-top: 0px;
    background: #ffffff;
    /* min-height: 950px; */
}

.dash-out-container .container {
    /* max-width: 1035px; */
    /* overflow: hidden; */
    padding-right: 0px;
    padding-left: 0px;
}

.dash-part-inject {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}






/* ////////////////////////////////  DASHBOARD INNER CONTENT STYLES  ///////////////////////////////////// */

.dash-in-container {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 0px;
}

.dash-in-container .container-xxl {
    padding-right: 0px;
    padding-left: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 1035px;
}

.col-main {
    margin-bottom: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 0px;
}

.primary-col {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-bottom: 0px;
    padding-top: 0px;
    box-shadow: 0px 0px;
    padding-right: 5px;
}

.inbod-col {
    margin-right: 7px;
    margin-left: 7px;
    margin-bottom: 20px;
    margin-top: 20px;
}


.mv-metadata-bar {
    display: flex;
    flex-direction: row;
    display: none;
}

.mv-comments-embed {
    height: auto;
    overflow-y: auto;
}


.mv-message-compose-lower {
    /* padding: 0px 0px 20px 0px; */
    box-shadow: 0px 0px 14px 0px #00000038;
    padding: 7px;
    border-radius: 10px;
}

.mv-message-compose-lower textarea {
    font-size: 13px;
    border: 1px solid #bfbfbf;
    border-radius: 6px;
    padding: 6px;
    width: 100%;
    margin: 4px 0px;
}



.mv-media-placeholder {
    margin-top: 20px;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
    margin-bottom: 20px;
    z-index: 1;
}


#mediaimg {
    cursor: pointer;
}


.med-ctl-btn {
    background-color: #ffffffeb;
    color: #000;
    height: 25px;
    width: 25px;
    margin-right: 9px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
    transition: 0.5s;
}

.med-ctl-btn:hover {
    transition: 0.5s;
}





.video-container {
    position: relative;
    max-width: 100%;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    max-height: 700px;
}

.video-container video {
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 5px;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
    z-index: 1;
    position: relative;
    text-align: center;
    color: #dc0000;
    padding: 10px;
}



.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.123);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

.play-button-overlay i {
    font-size: 50px;
    color: white;
}

.play-button-overlay.playing {
    display: none;
}














