/**
 * eleVR Web Player: A web player for 360 video on the Oculus
 * Copyright (C) 2014 Andrea Hawksley and Andrew Lutomirski
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

body {
  background-color: #000;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

select {
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
  padding: 2px;
  border-radius: 3px;
}

a {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
}

a:hover {
  color: rgba(255, 255, 255, 0.65);
}

a:active {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 2px 2px 3px rgba(200, 200, 200, 0.9);
}

#picture-container {
  background-color: #000;
}

.left {
  width: 50%;
  float: left;
  position: relative;
  top: 43%;
  left: 2%;
  z-index: 1;
}

.right {
  width: 50%;
  float: right;
  position: relative;
  top: 43%;
  right: 2%;
  z-index: 1;
}

#glcanvas {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

#picture-controls {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 10px;
  opacity: 0.9;
  height: 30px;
  background-color: rgb(0, 0, 0);
}

#projection-select {
  display: none;
}

#select-local-file {
  display: none;
}

select {
  width: 25%;
  max-width: 300px;
  margin-right: 5px;
}

.icon {
  margin: 7px 5px 0px 5px;
  width: 20px;
  float: left;
}

.rfloat {
  float: right;
  margin-top: 5px;
}

.title,
.message {
  text-align: center;
  margin: 0 auto;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

#pano-image {
  display: none;
}
