@import url(https://fonts.googleapis.com/css?family=Black+Ops+One|Abel|Open+Sans);/*
 *  Provides an easy interface to import all modules into every scss file.
 *
 *  MAKE SURE ALL CURRENT MODULES ARE IMPORTED BELOW!
 */

/*****  ALL-PURPOSE COLORS  *****/

/*****  TABLE COLORS  *****/

/*****  SECTION COLORS  *****/

/*****  NAVIGATION COLORS  *****/

/*****  FOOTER COLORS  *****/

/*****  SCROLLBAR COLORS  *****/

/*
 *     CSS Document  - General
 *
 * Styling for general elements that may appear on most pages.
 * Does not style for structural layout or specific pages.
 *
 */

a:link,
a:visited {
  text-decoration: none;
  color: #DDD;
}

a:hover,
a:active {
  text-decoration: underline;
}

#listTabs {
  width: 100%;
  padding-left: 20px;
  /*background-color: $section-bg-color;*/
  border-bottom: 1px solid #666;
  position: relative;
  box-sizing: border-box;
}

#listTabs li {
  display: inline-block;
  margin: 0px;
  position: relative;
  bottom: -1px;
  font-size: 1em;
}

#listTabs li button {
  padding: 7px 10px;
  background-color: transparent;
  color: #EEE;
  border: none;
  border-bottom: 1px solid #666;
  border-radius: 5px 5px 0px 0px;
}

#listTabs li button:hover {
  background-color: #444;
}

#listTabs li button.active {
  color: #FFF;
  font-weight: bold;
  /*background-color: $table-tab-active-bg-color;*/
  border: 1px solid #666;
  border-bottom: 1px solid #333;
}

#listTabs li button.active:hover {
  cursor: initial;
  background-color: #333;
}

table.list {
  table-layout: fixed;
  width: 100%;
  font-size: 1em;
}

table.list tr {
  height: 50px;
  border-bottom: 1px solid #484848;
}

table.list tr:hover {
  background-color: #555;
  cursor: pointer;
}

table.list tr:hover td.delete button {
  display: inline-block;
}

table.list tr:last-child {
  border-bottom: none;
}

table.list td {
  color: #FFF;
  padding: 0 15px;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

table.list td.image {
  text-align: center;
  height: 50px;
  width: 50px;
}

table.list td.image img {
  display: inline-block;
  margin: 5px auto;
  max-height: 100%;
  max-width: 50px;
}

table.list td.delete {
  text-align: center;
  width: 30px;
}

table.list td.delete button {
  display: none;
  color: #F77;
  margin: 5px auto;
  max-height: 100%;
  max-width: 50px;
  font-weight: bold;
  font-size: 1.2em;
  background-color: transparent;
  border: none;
}

table.list td.delete button:hover {
  color: #F00;
}

table.list.condensed tr {
  height: auto;
}

table.list.condensed td {
  padding: 10px;
}

table.list.no-link tr:hover {
  cursor: default;
}

td.permission,
td.parent,
td.quantity {
  text-align: center;
}

.itemImage {
  float: left;
  max-height: 200px;
  max-width: 200px;
  margin: 25px 50px 50px 30px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#user {
  text-align: right;
  font-size: 0.9em;
  min-width: 200px;
  position: absolute;
  right: 25px;
  top: 20px;
}

.clear {
  clear: both;
}

img {
  margin: 5px;
}

.bold {
  font-weight: bold;
}

.centerText {
  text-align: center;
}

.xlargeText {
  font-size: 3rem;
}

.largeText {
  font-size: 2rem;
}

.mediumText {
  font-size: 1.5rem;
}

.smallText {
  font-size: 0.9rem;
}

.xsmallText {
  font-size: 0.75rem;
}

.buttonLink {
  border: none;
  background: none;
  text-decoration: none;
}

.buttonLink:hover {
  text-decoration: underline;
}

.centerBlock {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#notice {
  padding: 5px;
  margin-bottom: 15px;
  text-align: center;
  display: block;
  font-size: 16px;
  background-color: #F00;
  color: #FFF;
}

.errorMessage,
.successMessage,
.infoMessage {
  position: relative;
  display: block;
  width: 100%;
  margin: 0px auto;
  margin-bottom: 15px;
  padding: 10px;
  padding-right: 20px;
  border-radius: 4px;
  border: 1px solid #484848;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  color: #FFF;
}

.errorMessage {
  background-color: #d9534f;
}

.successMessage {
  background-color: #5cb85c;
}

.infoMessage {
  background-color: #5bc0de;
}

.close {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0px;
  background: transparent;
  font-size: 18px;
  line-height: 16px;
}

.close:hover {
  color: #000;
}

.icon-left {
  margin: 10px;
  margin-right: 20px;
}

input:focus,
select:focus {
  box-shadow: 0 0 2px #333;
}

button {
  border: 1px solid transparent;
  background: none;
  border-radius: 3px;
  padding: 5px 12px;
}

button:hover {
  border: 1px solid #666;
  background: #555;
}

/*
 *     CSS Document  - Forms
 *
 * Styling for all form elements.
 *
 */

form {
  display: block;
  min-width: 510px;
}

formgroup {
  display: block;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
  margin-bottom: 50px;
}

formgroup label {
  font-weight: bold;
  margin-bottom: 0px;
}

formgroup input,
formgroup select {
  margin: 8px auto;
  width: 100%;
  border: 1px solid #000;
}

/*#autoInputFields, #manualInputFields {
	margin-bottom: 50px;
}*/

formgroup.edit input,
formgroup.edit select {
  /*border-color: transparent;*/
}

formgroup.edit input:hover,
formgroup.edit input:focus,
formgroup.edit select:hover,
formgroup.edit select:focus {
  border: 1px solid #000;
}

.switchLabel {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 30px;
}

.switch,
#operationalSwitch,
#multiCheckoutSwitch,
#imagesSwitch {
  display: block;
  width: 13em;
  height: 40px;
  margin: auto;
  margin-top: 30px;
  font-size: 0.9em;
}

.switch,
#multiCheckoutSwitch,
#imagesSwitch {
  margin-top: 10px;
  /*margin-bottom: 30px;*/
}

.switch input[type=radio],
#operationalSwitch input[type=radio] {
  display: none;
}

.switch label,
#operationalSwitch label {
  display: inline-block;
  height: 25px;
  line-height: 25px;
  width: 5em;
  padding: 5px 8px;
  float: left;
  cursor: pointer;
  color: #999;
  text-align: center;
  border: 1px solid #777;
  font-weight: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.switch label:hover,
#operationalSwitch label:hover {
  color: #FFF;
}

.switch label.no,
#operationalSwitch label[for=isOperationalNo] {
  border-right: 0px;
  border-radius: 5px 0px 0px 5px;
}

.switch label.yes,
#operationalSwitch label[for=isOperationalYes] {
  border-left: 0px;
  border-radius: 0px 5px 5px 0px;
}

.switch .no:checked + label,
#operationalSwitch #isOperationalNo:checked + label {
  border: 1px solid #999;
  background-color: #d9534f;
  color: #FFF;
}

.switch .no:checked + label:hover,
#operationalSwitch #isOperationalNo:checked + label:hover {
  cursor: default;
}

.switch .yes:checked + label,
#operationalSwitch #isOperationalYes:checked + label {
  border: 1px solid #999;
  background-color: #5cb85c;
  color: #FFF;
}

.switch .yes:checked + label:hover,
#operationalSwitch #isOperationalYes:checked + label:hover {
  cursor: default;
}

#leftColumn {
  position: relative;
  margin-top: 25px;
  float: left;
  width: 15%;
  min-width: 170px;
  max-width: 250px;
  padding: 0.5%;
  padding-top: 0px;
  margin-right: 5%;
}

#leftColumn img {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

#rightColumn {
  position: relative;
  margin-top: 25px;
  float: left;
  width: 60%;
}

formgroup.topRight {
  position: relative;
  top: 20px;
  margin: 0px;
  width: auto;
  font-size: 0.8em;
  line-height: 1.2em;
  text-align: left;
}

formgroup.topRight div {
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
  margin-bottom: 15px;
}

#actionSwitch {
  position: relative;
  margin-top: 200px;
  display: block;
  margin: 0 auto;
  width: 309px;
  height: 75px;
  text-align: center;
}

input[type=radio].actionSwitch {
  display: none;
}

input[type=radio].actionSwitch + label {
  width: 150px;
  height: 50px;
  background-color: #666;
  border: 1px solid #888;
  float: left;
  line-height: 50px;
}

input[type=radio].actionSwitch + label.leftSwitch {
  border-radius: 5px 0px 0px 5px;
  border-right: 0px;
}

input[type=radio].actionSwitch + label.rightSwitch {
  border-radius: 0px 5px 5px 0px;
}

input[type=radio].actionSwitch + label:hover {
  background-color: #555;
  border: 1px solid #777;
  cursor: pointer;
}

input[type=radio].actionSwitch + label.leftSwitch:hover {
  border-right: 0px;
}

input[type=radio].actionSwitch:checked + label {
  background-color: #444;
  border: 1px inset #666;
  border-right: 0px;
  color: #FFF;
  cursor: default;
}

#checkout,
#checkin {
  display: none;
}

input[type=radio].systemID {
  display: none;
}

input[type=radio].systemID:hover + label {
  border: 2px solid #888;
  background-color: #555;
  cursor: pointer;
}

input[type=radio].systemID:checked + label {
  border: 2px solid #555;
  background-color: #777;
  cursor: default;
}

#systemContainer {
  display: none;
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

.systemLabel {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  width: 150px;
  height: 150px;
  border: 2px solid transparent;
}

.systemLabel div {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.systemLabel img {
  display: inline-block;
  vertical-align: middle;
  width: 140px;
}

select,
input,
textarea {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 25px auto;
  padding: 5px 10px;
  font-size: 20px;
  border: 1px solid #000;
  background-color: #666;
  border-radius: 3px;
}

select.placeholder {
  color: #999;
}

select.placeholder option {
  color: #FFF;
}

input[type=file] {
  border: none;
  background-color: transparent;
}

.playerContainer {
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

fieldset.players {
  display: inline-block;
  max-width: 90%;
}

.playerContainer input[type=checkbox] {
  display: none;
}

fieldset legend {
  padding: 10px;
}

fieldset.playerInfo {
  display: none;
  padding: 15px;
  width: 90%;
  max-width: 250px;
}

fieldset.playerInfo#player1 {
  display: inline-block;
  margin: auto;
}

fieldset.playerInfo input {
  width: 100%;
  border: 1px solid;
}

label.playerInfo {
  display: inline-block;
  padding: 15px;
  width: 90%;
  max-width: 200px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #777;
  background-color: #BBB;
}

input[type=checkbox].playerInfo:hover + label {
  background-color: #999;
  cursor: pointer;
}

input[type=checkbox].playerInfo:checked + label {
  background-color: #555;
  color: #FFF;
}

input[type=checkbox].permissions {
  display: none;
}

input[type=checkbox].permissions:hover + label {
  border: 2px solid #888;
  background-color: #555;
  cursor: pointer;
}

input[type=checkbox].permissions:checked + label {
  border: 2px solid #555;
  background-color: #777;
}

input[type=checkbox].permissions:checked + label div {
  visibility: visible;
}

#permissionsContainer {
  display: block;
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

.permissionsLabel {
  display: inline-block;
  text-align: center;
  font-weight: normal;
  margin: 0 10px;
  width: 100px;
  height: 100px;
  border: 2px solid #777;
}

.permissionsLabel div {
  visibility: hidden;
  vertical-align: middle;
  height: 100%;
  font-size: 3em;
  margin-top: 20px;
}

input[type=submit] {
  display: block;
  margin: 40px auto;
  height: 50px;
  width: 200px;
  background-color: #444;
  border: 1px solid #999;
  border-radius: 5px;
}

input[type=submit]:hover {
  background-color: #222;
  border: 1px solid #777;
  color: #FFF;
}

input[type=submit]:disabled {
  background-color: #222;
  border: 1px solid #111;
  color: #555;
}

#posterImagesContainer {
  display: inline-block;
  width: 100%;
  margin: 10px auto;
  text-align: center;
}

.posterImage,
.posterImage img {
  display: inline-block;
  width: 150px;
  height: 150px;
  margin: 10px;
  position: relative;
}

.posterImage img {
  margin: 0px;
}

.posterImageOption {
  display: none;
  width: 150px;
  height: 150px;
  margin: 0px;
  background-color: #FFF;
  opacity: 0.85;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 150px;
}

.posterImage:hover .posterImageOption {
  display: block;
  cursor: pointer;
}

.imageUpload {
  display: block;
  margin: 0 auto;
  position: relative;
}

.imageUpload:hover {
  cursor: pointer;
}

.imageUpload:hover img {
  opacity: 0.5;
}

.imageUpload .overlay {
  display: none;
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  top: 45%;
  left: 0;
  text-align: center;
  color: #000000;
  font-weight: bold;
  font-size: 2em;
}

.imageUpload:hover .overlay {
  display: block;
  opacity: 1;
}

#success-status {
  display: none;
  position: absolute;
  right: 0px;
  font-size: 1em;
  color: #3c763d;
}

#error-status {
  display: none;
  position: absolute;
  right: 0px;
  font-size: 1em;
  color: #a94442;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 100;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: none;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.7);
  /* Black w/ opacity */
}

.modal .modal-content {
  position: relative;
  background-color: #111;
  margin: 10% auto;
  /* 10% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  border-radius: 5px;
  width: 50%;
  /* Could be more or less, depending on screen size */
  max-height: 60%;
  overflow: auto;
}

.modal .modal-content img {
  display: inline-block;
  max-width: 250px;
  max-height: 250px;
}

.modal .modal-content .closeModal {
  color: #EEE;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
}

.modal .modal-content .closeModal:hover,
.modal .modal-content .closeModal:focus {
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
}

.propertiesGroup {
  min-width: 250px;
  background-color: #111;
  border: 1px solid #484848;
}

.propertiesGroup .propertiesTitle {
  font-size: 1em;
  padding: 5px 10px;
}

.propertiesGroup .propertiesTitle:hover {
  cursor: pointer;
}

.propertiesGroup .propertiesDropdown {
  display: none;
  font-size: 0.9em;
  padding: 5px 10px;
  line-height: 3;
  border-top: 1px solid #484848;
}

.propertiesGroup .propertiesDropdown input[type=number] {
  display: inline-block;
  font-size: 0.9em;
  width: 50px;
  margin: 0;
}

.propertiesGroup .propertiesDropdown input[type=color] {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 30px;
  margin: 0;
  padding: 0px;
}

.propertiesGroup .propertiesDropdown button[type=button] {
  font-weight: bold;
  background-color: #EEE;
  border: 1px solid #777;
  border-radius: 5px;
}

.propertiesGroup .propertiesDropdown button[type=button]:hover {
  background-color: #999;
  border: 1px solid #555;
  color: #FFF;
}

