@charset "UTF-8";
@import 'bootstrap/bootstrap.css';
@import url("https://fonts.googleapis.com/css?family=Roboto");
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

#wrapper {
  margin-top: 20px;
  flex: 1 0 auto;
}

.footer {
  height: 30px;
  background-color: #f5f5f5;
  flex-shrink: 0;
  text-align: right;
  padding-right: 10px;
}

.input-validation-error {
  border-color: red;
  color: red;
}

.br-narrow {
  max-width: 100px;
}

#welcome_text {
  max-width: 992px;
  margin: auto;
}

#brackets {
  margin-left: 30px;
  height: 600px;
}

.bracket {
  position: absolute;
  border: 1px solid black;
  font-size: 12px;
  width: 300px;
}

.bracket .bracket_member {
  height: 25px;
  padding: 0px 5px;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px dotted gray;
  line-height: 25px;
}

.connector1 {
  position: absolute;
  height: 100px;
  width: 50px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.connector2 {
  position: absolute;
  border-bottom: 1px solid black;
  width: 50px;
}

.br-reg-registered {
  border-left: 3px solid olive;
}

.br-reg-arrived {
  border-left: 3px solid yellow;
}

.br-reg-complete {
  border-left: 3px solid lawngreen;
}

.br-reg-unknown {
  border-left: 3px solid red;
}

div.br-roster-info {
  text-transform: uppercase;
  font-size: 11px;
  color: grey;
}

.br-toolbar {
  padding: 10px 0;
  background-color: white;
  z-index: 800 !important;
}
.br-toolbar .br-toolbar-tips {
  padding: 5px 0;
  color: grey;
}
.br-toolbar .br-toolbar-tips .icon {
  width: 12px;
  height: 12px;
  vertical-align: baseline;
}

.rotate-270 {
  transform: rotateZ(270deg);
}

.br-breadcrumbs {
  font-size: 12px;
  padding: 0;
  background-color: white;
  margin-bottom: 0.3rem;
}

.br-empty-roster {
  display: none;
}

.br-finished {
  border-left: 3px solid lawngreen;
}

.br-checkbox-column {
  padding: 0 !important;
  width: 4em;
}
.br-checkbox-column :hover {
  background-color: aliceblue;
}
.br-checkbox-column .br-checkbox-label {
  display: inline-block;
  padding: 0.75em 1.5em 0.75em 1.5em;
  margin-bottom: 0;
}

#team_members th {
  position: sticky;
  top: 125px;
  background: white;
}

#team_members td {
  padding: 1px;
  vertical-align: middle;
}

#team_members td label {
  display: block;
  padding: 4px 20px;
  margin-bottom: 0;
}

.br-team-registration-showed-up {
  width: 50px;
}

.br-text-small {
  font-size: 80%;
}

#delete-wrapper, #edit-wrapper {
  color: grey;
  margin-bottom: 15px;
}

#br-search-form {
  margin: 1em 0;
}

.br-search-result-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  text-indent: -9999px;
  background-position: center;
}

.br-icon-team {
  background-image: url("/icons/si-glyph-person-public.svg");
}

.br-icon-person {
  background-image: url("/icons/si-glyph-person-2.svg");
}

.nearby-rosters-roster-name {
  background-color: white;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}

#nearby-rosters-table {
  border-collapse: separate;
  border-spacing: 0;
}

.roster {
  border: 1px solid grey;
  padding-top: 15px;
  padding-bottom: 15px;
}
.roster.dragover {
  border-color: black;
}

.nearby-roster-details {
  border: 1px solid lightgrey;
}

.current-roster {
  border-color: black;
}
.current-roster .roster-title a {
  color: crimson;
}

.roster-placeholder.placeholder-hidden {
  display: none;
}

.roster-placeholder.placeholder-visible {
  display: table-row;
}

.roster-member:hover {
  background-color: #f0f0f0;
}

.roster-member-details {
  font-size: 12px;
}

.roster-member-age {
  padding-left: 0px;
}

.roster-member-weight {
  padding-right: 0px;
  text-align: right;
}

.saved-icon {
  width: 17px;
  height: 16px;
  background-image: url("/icons/si-glyph-checked.svg");
}

.saving-icon {
  width: 17px;
  height: 16px;
  background-image: url("/icons/si-glyph-arrow-circle-rycycle.svg");
}

.save-failed-icon {
  width: 16px;
  height: 16px;
  background-image: url("/icons/si-glyph-delete.svg");
}

/* Roster Brackets */
.rounds {
  display: flex;
  flex-direction: row;
}

.match-round {
  display: block;
  flex: 1;
}

.match-round-list {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
  justify-content: center;
  height: 100%;
}

.match {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100%;
}

.match-body {
  width: 100%;
}

.match-person[draggable=true] .drag-indicator {
  visibility: visible;
}

.match-person:not([draggable]) .drag-indicator, .match-person[draggable=false] .drag-indicator {
  visibility: hidden;
}

.match-person-a:empty::before, .match-person-b:empty::before {
  content: " ";
}

.saving-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 9, 0.7);
  z-index: 3;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

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