/*
 *  Provides an easy interface to import all modules into every scss file.
 *
 *  MAKE SURE ALL CURRENT MODULES ARE IMPORTED BELOW!
 */
@import url(https://fonts.googleapis.com/css?family=Raleway|Abel|Open+Sans);
/*****  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: #222;
}

a:hover, a:active {
  text-decoration: underline;
  color: #00A6D3;
}

.padding {
  padding: 8px;
}

#listTabs {
  width: 100%;
  padding-left: 20px;
  /*background-color: $section-bg-color;*/
  border-bottom: 1px solid #999;
  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: #111;
  border: none;
  border-bottom: 1px solid #999;
  border-radius: 5px 5px 0px 0px;
}

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

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

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

.modal, .forcedModal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
}

.forcedModal {
  display: block;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 30px;
  padding-top: 50px;
  border-radius: 4px;
  max-width: 700px;
  height: 450px;
}

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

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

table.list tr:hover {
  background-color: #EEE;
}

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

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

table.list tr.headerRow:hover {
  background: none;
}

table.list td {
  color: #000;
  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.status {
  text-align: center;
}

table.list td.delete a, table.list td.actions a {
  margin: 5px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
}

table.list td.delete a:hover, table.list td.actions a:hover {
  border: 1px solid #aaa;
  background-color: #ccc;
  text-decoration: none;
  color: #222;
}

table.list td.delete button, table.list td.actions 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.edit, table.list td.actions button.edit {
  color: #ffc107;
}

table.list td.delete button.edit:hover, table.list td.actions button.edit:hover {
  color: #ffab07;
}

table.list td.delete button.delete, table.list td.actions button.delete {
  color: #F77;
}

table.list td.delete button.delete:hover, table.list td.actions button.delete: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;
}

.italic {
  font-style: italic;
}

.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;
}

.centerText {
  text-align: center;
}

.centerText a.action {
  margin: 5px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
}

.centerText a.action:hover {
  border: 1px solid #aaa;
  background-color: #ccc;
  text-decoration: none;
  color: #222;
}

.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 #D8D8D8;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  color: #000;
}

.errorMessage {
  background-color: #e27c79;
}

.successMessage {
  background-color: #80c780;
}

.infoMessage {
  background-color: #85d0e7;
}

.close, button.close {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 30px;
  line-height: 16px;
  padding: 5px;
}

.close:hover, button.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 #AAA;
  background: #F2F2F2;
}

button.issueRetake, button.unprocessResults {
  background-color: #FFF;
  border: 1px solid #AAA;
}

button.issueRetake:hover, button.unprocessResults:hover {
  cursor: pointer;
  background-color: #CCC;
}

.options {
  position: relative;
  height: 40px;
}

.options button.left {
  position: absolute;
  left: 0px;
}

.options button.right {
  position: absolute;
  right: 0px;
}

/*
 *     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;
}

formgroup input[type="button"], formgroup select[type="button"] {
  width: auto;
  padding: 10px 8px;
}

/*#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: #777;
  text-align: center;
  border: 1px solid #999;
  font-weight: normal;
  -webkit-user-select: none;
  user-select: none;
}

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

.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 #333;
  background-color: #e27c79;
  color: #000;
}

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

.switch .yes:checked + label,
#operationalSwitch #isOperationalYes:checked + label {
  border: 1px solid #333;
  background-color: #80c780;
  color: #000;
}

.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: #EEE;
  border: 1px solid #AAA;
  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: #CCC;
  border: 1px solid #888;
  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;
}

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: #FFF;
  border-radius: 3px;
}

textarea {
  max-width: none;
  margin: auto;
}

select.placeholder {
  color: #999;
}

select.placeholder option {
  color: #000;
}

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

.filterSelect {
  width: auto;
  float: right;
}

.filterSelect div {
  display: inline-block;
  padding: 0 5px;
}

.filterSelect label {
  display: block;
  font-size: 16px;
}

.filterSelect select {
  display: inline-block;
  width: 100%;
  margin: auto;
  font-size: 16px;
}

fieldset {
  border: 1px solid #c0c0c0;
  padding: 10px;
}

fieldset legend {
  padding: 10px;
  margin-left: 15px;
  width: auto;
}

fieldset .overlay {
  background-color: #EEE;
  opacity: 0.8;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 105%;
  text-align: center;
  font-weight: bold;
  margin: -15px 0px;
  padding: 40px;
  box-shadow: 0px 0px 5px #BBB;
  width: 100%;
}

fieldset.collapsed {
  border: none;
}

fieldset.collapsed legend {
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  padding: 10px;
  margin: auto;
  border: 1px solid #AAA;
}

fieldset.collapsed legend:hover {
  background: #F2F2F2;
  cursor: pointer;
}

fieldset.expanded legend {
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
  padding: 10px;
  border: 1px solid #AAA;
  margin: auto;
}

fieldset.expanded legend:hover {
  background: #F2F2F2;
  cursor: pointer;
}

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

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

input[type=submit]:disabled {
  background-color: #F2F2F2;
  border: 1px solid #CCC;
  color: #AAA;
}

#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;
}

.assignmentUserGroup {
  postion: relative;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  padding-top: 40px;
}

.assignmentUserGroup label {
  position: absolute;
  top: -25px;
  left: 15px;
  padding: 10px;
  background-color: #fff;
  font-size: 1.1em;
}

.assignmentUserGroup .addUser:hover, .assignmentUserGroup .assignAll:hover {
  background-color: #eee;
}

.assignmentUserGroup input[type="button"].assignAll {
  font-size: 0.7em;
  padding: 5px 15px;
  position: absolute;
  top: -25px;
  right: 15px;
}

.assignmentUserGroup input[type="button"].addUser {
  width: 200px;
  font-size: 0.7em;
  padding: 5px 15px;
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -100px;
  border-color: #ccc;
}

.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  user-select: none;
}

div[id^=assessmentProperties] {
  position: absolute;
  top: 0px;
  right: 0px;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkbox {
  background-color: #ccc;
}

/* When the checkbox is checked, add a background */
.checkboxContainer input:checked ~ .checkbox {
  background-color: #00A6D3;
}

/* Create the checkbox/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkbox when checked */
.checkboxContainer input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkbox/indicator */
.checkboxContainer .checkbox:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/*# sourceMappingURL=general.css.map */
