body {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    overflow: hidden;
    background: #444;
}
* {
    padding:0px;
    margin:0px;
}
.top {
    width: 75vw;
    height: calc(55vh + 0px);
    position:absolute;
    left:0;
}
#ppt-url {
    width: 100%;
    min-height: 60px;
    padding: 7px;
    background: #777;
    color: #DDD;
    border: none;
    border-radius: 5px;
    margin: 5px 0;
    box-sizing: border-box;
}
input::file-selector-button {
    background: #777;
    color: #EEE;
    padding: 7px;
    margin: 3px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
#gum-local, #ppt {
    width: 100%;
    height: 100%;
}
#gum-local {
    z-index: 1;
    position: absolute;
}
.bottom {
    width: 75vw;
    height:45vh;
    position:absolute;
    left:0;
    bottom:0;
}
video {
    width: 100%;
    height: 100%;
    background: #000;
}
.menu {
    position:absolute;top:10px;left:10px;
    background: #3e3e3e;
    color: #CCC;
    border-radius: 500px;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    z-index: 11;
}
.options {
    position:absolute;top:50px;
    left:10px;
    width: 315px;
    padding: 15px;
    font-size: 16px;
    z-index: 10;
    display: block;
    background: #3e3e3e;
    color: #ccC;
    margin-top: -15px;
    padding-top: 15px;
    border-radius: 0 5px 5px;
    overflow: auto;
    max-height: calc(100vh - 80px);
}
.options b {
    color: #FFF;
    display: block;
    margin-bottom: 5px;
    margin-top: 10px;
    letter-spacing: 1px;
}
.toggle {
    background: #d40404;
    border: none;
    padding: 10px;
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
}
.toggle:hover {
    background: #f50404;
}
.toggle.active {
    background: #3ba55d;
}
.toggle.active:hover {
    background: #3dce84;
}
iframe {
    border: none;
}
.settings-container {
    padding: 5px 0;
    margin: 5px 0;
    border-bottom: 1px solid #727272;
}
button {
    BORDER: NONE;
    border-radius: 5px;
    background: #666;
    color: #EEE;
    padding: 10PX;
}
button:hover {
    cursor: pointer;
    background: #888;
}

#dragwrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    opacity: .2;
    border: none;
}

.slidecontainer {
    width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 25px; /* Specified height */
    background: #666; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    border-radius: 10px;
}

/* Mouse-over effects */
.slider:hover {
    opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
}



.right {
    position:absolute;
    top:0;
    right:0;
    width: calc(25vw);
    height: calc(100vh);
    box-sizing: border-box;
}

.notes textarea:focus {
    outline: none !important;
}

.notes textarea {
    position:absolute;
    top:0;
    right:0;
    left:0;
    bottom:0;
    padding: 20px;
    font-size: 16px;
    background: #333;
    resize: none;
    border: 1px solid #000;
    color: #CCC;
    box-sizing: border-box;
}

.ppt.controller iframe {
    pointer-events: none;
}
.ppt-controller { display: none; }
.ppt.controller .ppt-controller {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 40px;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.ppt.controller #ppt {
    height: calc(100% - 40px);
}
#ppt-left-button, #ppt-right-button, #ppt-refresh-button {
    height: 30px;
    width: 30px;
    border: 1px solid #AAA;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 140%;
}
#ppt-right-button {
    left: 95px;
}
#ppt-refresh-button {
    position: absolute;
    left: 5px;
    color: #CCC;
    padding-top: 2px;
}
#slide_number{
    padding: 8px;
    width: 30px;
    background: #AAA;
    color: #000;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    margin: 5px 10px;
}
#slide_number:focus {
    outline: none !important;
}

.arrow {
    border: solid #CCC;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.arrow-right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.arrow-left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

#file-holder {
    display: none;
    margin-top: 10px;
    background: #666;
    padding: 10px;
    max-height: 100px;
    overflow: auto;
}
#file-holder a {
    cursor: pointer;
}