.loading svg polyline {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loading svg polyline#back {
    fill: none;
    stroke: #ff4d5033;
}

.loading svg polyline#front {
    fill: none;
    stroke: #ff4d4f;
    stroke-dasharray: 48, 144;
    stroke-dashoffset: 192;
    animation: dash_682 1.4s linear infinite;
}

@keyframes dash_682 {
    72.5% {
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.video_content section {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
    padding: 0.3rem;
    background: transparent;
    border-radius: 0.8rem;
}

.video_content {
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background: transparent;
    width: 100%;
    position: relative;
}

.video_content video {
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    background-color: transparent;
}

::-webkit-media-controls {
    display: none !important;
}

.video_loader {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: absolute;
    transform: translate(-1%, -1%);
    background-color: transparent;
}

.video_content span {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    border-radius: 20px;
    color: #ff5733;
    position: relative;
    outline: none;
    background-color: transparent;
    text-align: start;
    padding: 0.1rem 0.1rem;
}

.video_unmute_btn .button {
    --main-color: #ff5733;
    --main-bg-color: var(--base_bg);
    --pattern-color: rgba(46, 213, 116, 0.073);

    filter: hue-rotate(0deg);

    cursor: pointer;
    letter-spacing: 0.08rem;
    background: radial-gradient(
    circle,
    var(--main-bg-color) 0%,
    rgba(0, 0, 0, 0) 95%
    ),
    linear-gradient(var(--pattern-color) 1px, transparent 1px),
    linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
    background-size:
    cover,
    15px 15px,
    15px 15px;
    background-position:
    center center,
    center center,
    center center;
    border-image: radial-gradient(
    circle,
    var(--main-color) 0%,
    rgba(0, 0, 0, 0) 100%
    )
    1;
    border-width: 1px 0 1px 0;
    color: var(--main-color);
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 0.5rem;
    transition: background-size 0.2s ease-in-out;
    overflow: hidden;
}

.video_unmute_btn .button:hover {
    background-size:
    cover,
    10px 10px,
    10px 10px;
}

.video_unmute_btn .button:active {
    filter: hue-rotate(250deg);
}

.video_content img, .video_content video {
    width: 100%;
    object-fit: contain;
    border-radius: 20px;
    overflow: hidden;
}

.video_content {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    background-color: transparent;
    border-radius: 20px;
    color: var(--base_text_color);
    position: relative;
    width: 100%;
    height: 100%;
}

.video_content .video-plyr {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
    border-radius: 20px;
    background-color: transparent;
    position: relative;
}

.video_content span svg {
    background: transparent;
    width: 15px;
    height: 15px;
}

.controls .btns {
    gap: 3px;
}

.video {
    display: flex;
    flex-direction: column;
    position: relative;
    place-items: center;
    place-content: center;
}

.video section {
    display: flex;
    place-items: center;
    place-content: center;
    z-index: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_unmute_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: absolute;
    top: 1%;
    left: 1%;
    transform: translate(-1%, -1%);
}

.video_seek_bar input {
    -webkit-appearance: none;
    width: 100%;
    height: 0.7em;
    background: transparent;
    border-radius: 5px;
    outline: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video_seek_bar input:hover {
    opacity: 1;
    height: 1.0em;
}

.video_seek_bar input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.1em;
    height: 1.1em;
    background: #ff5733;
    border-radius: 50%;
    cursor: pointer;
    overflow: visible;
}

.video_seek_bar input::-moz-range-thumb {
    width: 1.1em;
    height: 1.1em;
    background: #444;
    color: #ff5733;
    border-radius: 20px;
    cursor: pointer;
    overflow: visible;
}

.video_seek_bar_right {
    position: absolute;
    font-size: 1.5rem;
    font-weight: medium;
    color: #ff5733;
    opacity: 0;
    transform: scale(1);
    animation: fastForward 0.8s ease-out infinite;
    position: absolute;
    top: 45%;
    right: 5%;
}

.video_seek_bar_left {
    position: absolute;
    font-size: 1.5rem;
    font-weight: medium;
    color: #ff5733;
    opacity: 0;
    transform: scale(1);
    animation: seekBackward 0.8s ease-out infinite;
    top: 45%;
    left: 5%;
}

@keyframes fastForward {
    0% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    30% {
        opacity: 1;
        transform: translateX(10px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(20px) scale(1);
    }
}

@keyframes seekBackward {
    0% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    30% {
        opacity: 1;
        transform: translateX(-10px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateX(-20px) scale(1);
    }
}

.video_main_controls {
    padding-left: 1%;
    padding-right: 1%;
    top: 90%;
}

.video_controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: absolute;
    top: 85%;
    right: 2%;
    transform: translate(-1%, -1%);
    overflow: hidden;
}

.video_time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    position: absolute;
    top: 85%;
    left: 1%;
    transform: translate(-1%, -1%);
}

.video_seek_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: absolute;
    top: 93%;
    width: 95%;
    transform: translate(-1%, -1%);
}

.video-plyr .video_loader {
    z-index: 2000;
    display: none;
}

.video-plyr span {
    font-size: 0.8rem;
}

.video_captions {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: absolute;
    bottom: 14%;
    transform: translate(-1%, -1%);
}

.video_captions_content {
    font-size: 1.0rem;
    font-weight: 1000;
    color: #ff4d4f;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
    text-align: center;
    padding: 0rem 3rem;
}