* {
    margin: 0;
}

body {
    background: #202020;
}

.button1 {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #333;
}
.button2 {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #333;
}

.button1:hover {
    background: #444;
}
.button2:hover {
    background: #444;
}

.line {
    display: flex;
    flex-direction: row;
}
.column {
    display: flex;
    flex-direction: column;
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.fill {
    flex-grow: 1;
}

.fullscreen {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

iframe {
    border: none;
}

#timelineContainer {
    visibility: hidden;
    pointer-events: none;
}

#buttonContainer > #play, #buttonContainer > #pause {
    visibility: hidden;
    pointer-events: none;
}

.rough-preview {
    z-index: 1000;
    position: fixed;
    right: 0;
    top: 0;
}

.front-lox {
    z-index: 200;
    overflow: auto;
    min-width: 268px;
    right: 0;
    display: flex;
    flex-direction: column;
}

#viewer {
    background: #000;
    /* background: #000 url(./bg.png); */
    /* background-size: 100% 100%; */
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #161616;
}

::-webkit-scrollbar-thumb {
  background: #303030;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #505050;
}