/* UVP player */

#myDivHolder {
    width: calc(100% - 40px);
    max-width: 1920px;
    position: relative;
    margin: 0px auto 0;
    z-index: 2;
}

#myDivHolder .shadow {
    width: 100%;
    max-width: 1000px;
    height: 70px;
    background: radial-gradient(50% 50% at 50% 50%, #0E0E0E 0%, rgba(196, 196, 196, 0) 100%);
    opacity: .2;
    margin: 30px auto;
}

#myDivHolder #theme {
    position: absolute;
    z-index: 100;
    top: calc(50% - 50px);
    transform: translate(0, -50%);
    right: 27px;
    opacity: 1;
    padding: 30px 10px 25px;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: #FFF;
    transition: transform 0.7s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.7s cubic-bezier(0.7, 0, 0.2, 1);
}

#myDivHolder .dark {
    cursor: pointer;
    margin: 5px 0 0;
}

#myDivHolder .white,
#myDivHolder .dark {
    position: relative;
    cursor: pointer;
}

#myDivHolder .white svg,
#myDivHolder .dark svg {
    opacity: .4;
    transition: opacity .25s ease-out;
}

#myDivHolder .white:after,
#myDivHolder .dark:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 0;
    top: 0;
}

#myDivHolder .white:hover svg,
#myDivHolder .dark:hover svg {
    opacity: 1;
}

#myDivHolder .line,
#myDivHolder .line2 {
    width: 20px;
    height: 1px;
    margin: 14px auto 18px;
    background: #D9D9D9;
}

#myDivHolder .line2 {
    display: none;
    width: 1px;
    height: 20px;
}

#myDivHolder .colors {
    width: 20px;
    margin: auto;
}

#myDivHolder .colors .color {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    cursor: pointer;
    margin-top: 11px;
}

#myDivHolder .colors .color .outline {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: -3px;
    top: -3px;
    border: 1px solid #FFF;
    border-radius: 100%;
    transition: opacity .25s ease-out;
}

#myDivHolder .colors .color .outline:not(.showed) {
    opacity: 0;
}

#myDivHolder .colors .color.showed {
    cursor: default;
}

#myDivHolder .colors .color.showed svg {
    display: inline;
}

#myDivHolder .colors .color.showed .outline {
    opacity: 1;
}

#myDivHolder .colors .color:last-child {
    margin-bottom: 5px;
}

#myDivHolder .colors .color svg {
    display: none;
    pointer-events: none;
    position: absolute;
    top: -7px;
    right: -5px;
    z-index: 1;
}

#myDivHolder .colors .color:hover .outline {
    opacity: 1;
}

#myDivHolder .tp {
    position: absolute;
    top: -3px;
    right: calc(100% + 17px);
    display: none;
    opacity: .4;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1);
    padding: 1px 16px 0;
    background: #FFF;
}

#myDivHolder .tp:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -4px;
    border-width: 4px;
    border-style: solid;
    border-color: transparent transparent transparent #FFF;
}

.theme-disabled {
    transform: translate(60px, -50%) !important;
    opacity: 0 !important;
}

.tc-disabled {
    cursor: default !important;
    pointer-events: none;
}

.tc-disabled svg {
    opacity: 1 !important;
}

#myDiv,
#myDiv2 {
    margin: auto;
}

#myDiv2 {
    margin: 40px auto;
    box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.2);
}

.app-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-loading-overlay #loading-canvas {
    width: 100%;
    height: 100%;
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 500ms ease-in-out;
}

.app-loading-overlay .loading-widget {
    background: #0d0d0d;
    z-index: 9999;
    padding: 20px 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: absolute;
    transition: opacity 500ms ease-in-out;
}

.app-loading-overlay .loading-widget .loading-title {
    font-size: 16px;
    font-weight: bold;
    color: #838383;
    text-align: center;
    margin-bottom: 10px;
}

.loading-progress-widget {
    height: 8px;
    width: 300px;
    background: #838383;
    display: flex;
    margin-bottom: 10px;
}

.loading-progress-widget .loading-progress-bar {
    height: 100%;
    width: 0%;
    background: #000000;
    transition: width 500ms ease-in-out;
}

.opening-top-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #000000;
    z-index: 9999;
    transition: height 1s ease-in-out;
}

.opening-top-window.show {
    height: 50%;
    transition: height 1s ease-in-out;
}

.opening-bottom-window {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #000000;
    z-index: 9999;
    transition: height 1s ease-in-out;
}

.opening-bottom-window.show {
    height: 50%;
    transition: height 1s ease-in-out;
}