/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility Classes */
.blur-bg {
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.3);
}

.circle-btn {
    height: 48px;
    width: 48px;
    border-radius: 40px;
}

.btn-reset {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: 0.1s cubic-bezier(0.4, 0, 1, 1);
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

/* Container */
.video-controls-container {
    max-width: 800px;
    width: 90%;
    margin: auto;
    padding-top: 50px;
    padding-top: 350px;
    background: url(https://i.makeagif.com/media/10-05-2017/CJV1lo.gif) no-repeat center/cover;
}

/* Controls Wrapper */
.video-controls {
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 10px;
}

/* Left & Right Controls */
.video-left-controls,
.video-right-controls {
    display: flex;
    align-items: center;
    border-radius: 28px;
    text-shadow: 0 0 2px #000;
}

.video-left-controls {
    gap: 5px;
}

.video-left-controls .circle-btn {
    padding: 4px;
}

.video-right-controls {
    composes: blur-bg;
    padding: 4px;
}

/* Control Items */
.vlc-left-item,
.vlc-right-item {
    height: 48px;
}

.vlc-right-item button {
    composes: btn-reset;
    width: 48px;
}

.vlc-right-item button:hover,
.vlc-left-item-inner:hover button,
.video-time-container .video-time-counter:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Time Display */
.video-time-container {
    composes: blur-bg;
    font-size: 18px;
    height: 48px;
    padding: 4px;
    color: #fff;
    border-radius: 40px;
    transition: 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.video-time-counter {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    border-radius: 40px;
    transition: 0.1s cubic-bezier(0.4, 0, 1, 1);
}

/* Left Button Inner Wrapper */
.vlc-left-item-inner {
    composes: blur-bg circle-btn;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vlc-left-item-inner button {
    composes: btn-reset;
}