.video_player {
    width: 100%;
    position: relative;
}
.default_video_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgb(0 0 0 / 75%);
    color: white;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
}
.default_video_controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 15px;
    z-index: 1;
    background: linear-gradient(to top, rgb(0 0 0) 0%, transparent 100%);
    align-items: center;
}
.default_video_controls button {
    border: 0;
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-shrink: 0;
    margin-right: 10px;
    font-size: 20px;
    outline: none!important;
    box-shadow: none!important;
    color: #ffffff;
}
.default_video_controls button:last-child {
    margin: 0px;
}

.progress-progress-container {
    flex: 1;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
    overflow: hidden;
}

.video_progress_bg {
    width: 0%;
    background: #00CF7D;
    -ms-flex: 0;
    flex: 0;
    -ms-flex-preferred-size: 0%;
    flex-basis: 0%;
    border-radius: 4px;
    height: 100%;
}
