html {
    --mainColor: #326CF0;
    --mainColorOpacity: rgba(50, 108, 240, 0.5);
    --mainColorOpacityThird: rgba(50, 108, 240, 0.3);
    --mainColorLight: #5e8af3;
    --mainColorUltraLight: #a0baf8;
    --mainColorHover: #0b328e;
    --mainColorPlaceholder: #a0baf8;

    --timelineHandleColor: #1254ed;
    --timelineProgressColor: #1254ed;
}

.previewContApi app-video {
    --previewApiMinWidth: 425px;
}

#pubSearchForm,
#pubSearchForm .searchFormUi {
    --colorUi: var(--mainColor);
    --bgUi: var(--mainColorLight);
    --focusShadow: 0 0 4px rgba(99, 166, 233, 0.4);

    --filterBg: var(--mainColorUltraLight);
    --filterText: var(--mainColor);

    --borderRecentSerchSep: 1px solid var(--mainColor);
}

.bodyUserRedir .fullPage > header .editingTitle,
.fullPageEmbed.fullPage > header,
video-assistant > h1,
.fullPageEmbed .folderCont > .folderNav,
.fullPageEmbed .actions > .btnFolderAdd,
.dropdown-content .btn-url-upload,
.dropdown-menu > a,
.folderCont > .tabs,
.mediathequeBack,
.thumbnailFrameFlag {
    display: none;
}

.dropdown-menu .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    display: flex;
}

.detachedTimeControl video-timecontrol .audio-control {
    display: none;
}

.detachedTimeControl video-timecontrol:not([context="album"]) .play-pause {
    border: none;
    color: #fff;
    padding: 0;
    width: 30px;
    height: 30px;
    background: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.detachedTimeControl video-timecontrol .play-pause i {
    font-size: 80%;
    position: static;
    transform: none;
}

.detachedTimeControl video-timecontrol .play-pause:hover {
    background-color: var(--mainColorHover);
}

video-timecontrol:not([context="album"]) .durations::after,
video-timecontrol:not([context="album"]) .durations::before {
    display: none;
}

video-timecontrol:not([context="album"]) .durations .start,
video-timecontrol:not([context="album"]) .durations .end {
    position: relative;
    overflow: hidden;
    width: 35px;
    text-indent: -60px;
    text-align: right;
    font-size: 14px;
}

video-timecontrol:not([context="album"]) .durations .end {
    padding-left: 14px;
}

video-timecontrol:not([context="album"]) .durations .end::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    display: block;
    width: 10px;
    text-align: right;
    padding-right: 5px;
    font-size: 12px;
    content: '/';
    background-color: var(--bgEditor);
}

.detachedTimeControl video-timecontrol .durations {
    margin: 0;
}

.compact video-timecontrol .video-controls {
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 400px;
}

video-assistant.preview .editionContent {
    margin-top: 10px;
}

video-assistant > .actions {
    margin-right: 290px;
    transform: translate(0, 15px);
}

video-assistant-upload .compact video-timecontrol .video-controls {
    padding: 10px 0;
    transform: translate(min(0px, calc((var(--previewWidth) * var(--scale) - 400px) / 2)), 0);
}

.detachedTimeControl video-timecontrol:not([context="album"]) .play-pause {
    order: 1;
    margin: 0;
}

.compact video-timecontrol:not([context="album"]) .video-slider {
    order: 2;
    margin: 0 10px;
}

.detachedTimeControl video-timecontrol:not([context="album"]) .durations {
    order: 3;
}

video-timecontrol .video-slider,
video-timecontrol .video-slider .bufferLine {
    border-radius: 6px;
}

video-timecontrol[context="album"] .video-slider {
    margin-left: 16px;
}

.backLink {
    position: relative;
    border: 1px solid var(--mainColorText);
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-indent: -999em;
    transition: color 300ms, background-color 300ms;
}

.backLink:before {
    content: 'X';
    position: absolute;
    text-indent: 0;
    top: 0;
    left: 0;
    width: 32px;
    line-height: 32px;
    font-size: 20px;
    text-align: center;
}

.backLink:hover {
    color: var(--mainColor);
    background-color: var(--mainColorText);
}