﻿.animation-element.fade-in-slow {
  opacity: 0;
  -webkit-transition: all 2.4s ease-out;
  -moz-transition: all 2.4s ease-out;
  -o-transition: all 2.4s ease-out;
  transition: all 2.4s ease-out;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.fade-in-medium {
  opacity: 0;
  -webkit-transition: all 2.1s ease-out;
  -moz-transition: all 2.1s ease-out;
  -o-transition: all 2.1s ease-out;
  transition: all 2.1s ease-out;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.fade-in-fast {
  opacity: 0;
  -webkit-transition: all 1.8s ease-out;
  -moz-transition: all 1.8s ease-out;
  -o-transition: all 1.8s ease-out;
  transition: all 1.8s ease-out;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-in-right-slow {
  opacity: 0;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
  transition: all 1.4s ease-out;
  -webkit-transform: translate3d(-750px, 0px, 0px);
  -moz-transform: translate3d(-750px, 0px, 0px);
  -o-transform: translate3d(-750px, 0px, 0px);
  transform: translate3d(-750px, 0px, 0px);
}

.animation-element.slide-in-right-medium {
  opacity: 0;
  -webkit-transition: all 1.1s ease-out;
  -moz-transition: all 1.1s ease-out;
  -o-transition: all 1.1s ease-out;
  transition: all 1.1s ease-out;
  -webkit-transform: translate3d(-150px, 0px, 0px);
  -moz-transform: translate3d(-150px, 0px, 0px);
  -o-transform: translate3d(-150px, 0px, 0px);
  transform: translate3d(-150px, 0px, 0px);
}

.animation-element.slide-in-left-medium {
  opacity: 0;
  -webkit-transition: all 1.1s ease-out;
  -moz-transition: all 1.1s ease-out;
  -o-transition: all 1.1s ease-out;
  transition: all 1.1s ease-out;
  -webkit-transform: translate3d(150px, 0px, 0px);
  -moz-transform: translate3d(150px, 0px, 0px);
  -o-transform: translate3d(150px, 0px, 0px);
  transform: translate3d(150px, 0px, 0px);
}

.animation-element.slide-in-right-fast {
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transform: translate3d(-750px, 0px, 0px);
  -moz-transform: translate3d(-750px, 0px, 0px);
  -o-transform: translate3d(-750px, 0px, 0px);
  transform: translate3d(-750px, 0px, 0px);
}

.animation-element.slide-up-slow {
  opacity: 0;
  -webkit-transition: all 1.4s ease-out;
  -moz-transition: all 1.4s ease-out;
  -o-transition: all 1.4s ease-out;
  transition: all 1.4s ease-out;
  -webkit-transform: translate3d(0px, 150px, 0px);
  -moz-transform: translate3d(0px, 150px, 0px);
  -o-transform: translate3d(0px, 150px, 0px);
  transform: translate3d(0px, 150px, 0px);
}

.animation-element.fade-in-slow.in-view,
.animation-element.fade-in-medium.in-view,
.animation-element.fade-in-fast.in-view,
.animation-element.slide-in-right-slow.in-view,
.animation-element.slide-in-right-medium.in-view,
.animation-element.slide-in-left-medium.in-view,
.animation-element.slide-in-right-fast.in-view,
.animation-element.slide-up-slow.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

/*.delayed-show.in-view {    
    @include animation('show-me-after-delay 1s 4s 1 forwards');
}*/
html {
  font-size: 20px;
}

input[type=password] {
  font-family: Lato !important;
}

.lato {
  font-family: Lato !important;
}

input[type=submit].button {
  font-weight: 100;
}

.red {
  background-color: red;
}

h2 {
  line-height: 1.1;
}

.body-content {
  padding-bottom: 20px;
  z-index: 1; /* behind fixed site title bar*/
  padding-top: 80px;
}
@media screen and (min-width: 40em) {
  .body-content {
    padding-top: 80px;
  }
}

/*.triangle.delayed-show {
    visibility:hidden;
}
.triangle.delayed-show.show {
    visibility: visible;
}*/
input[type=number].short {
  max-width: 90px;
}

.container-404 {
  margin: 30px;
  background-image: url(/Content/images/teal-gorilla-500.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #157d8f;
  position: relative;
  min-height: 600px;
}
.container-404 h2 {
  position: absolute;
  bottom: 30px;
  right: 40px;
}
@media screen and (max-width: 40em) {
  .container-404 h2 {
    top: -10px;
    left: -10px;
    font-size: 2rem;
  }
}

.background-color-green {
  background-color: #37c871;
  color: white;
}

.background-color-orange {
  background-color: #F1B53A;
  color: white;
}

.background-color-teal {
  background-color: #157d8f;
  color: white;
}

.background-color-blue {
  background-color: #304360;
  color: white;
}

body.full-height {
  height: 100vh;
}

.validation-summary-errors ul {
  list-style-type: none;
}

footer {
  background-color: #304360;
  color: white;
  padding: 10px;
  font-size: 13px;
  margin-top: 1rem;
}
footer p {
  margin-bottom: 0;
}

.nav-arrows {
  position: fixed;
  top: 50vh;
}
.nav-arrows .text-left {
  position: fixed;
  left: 0;
}
.nav-arrows .text-right {
  position: fixed;
  right: 0;
}

.view-terms .body-content {
  padding-top: 0;
  height: 66vh;
}
.view-terms iframe {
  height: 100%;
  margin: 1%;
  width: 98%;
}

.sq-button {
  background-color: #157d8f;
  color: white;
  font-family: "Bebas Neue";
  padding: 0 0px 0px 0px;
  padding-bottom: 2em !important;
}
.sq-button .caption-container {
  display: flex;
  display: -webkit-flex;
  height: 3em;
  line-height: 1;
}
.sq-button .caption-container .caption {
  margin: auto; /* Important */
  text-align: center;
  color: #F1B53A;
}
.admin-grid .sq-button {
  background-color: #F1B53A;
}
.admin-grid .sq-button a {
  color: white;
}
.admin-grid .sq-button:hover {
  background-color: #EB940D;
}

.account-header {
  margin-top: 0;
  margin-bottom: 0;
}
.account-header .account-sunny {
  width: 200px;
  max-width: 50%;
}
.account-header h2 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (min-width: 64em) {
  .account-header h2 {
    margin-top: 0;
  }
}

body.my-account img.circle-take-the-tour {
  position: absolute;
  top: 130px;
  right: 0;
}
@media screen and (min-width: 40em) {
  body.my-account img.circle-take-the-tour {
    top: 160px;
  }
}
@media screen and (min-width: 64em) {
  body.my-account img.circle-take-the-tour {
    top: 250px;
  }
}
body.my-account .account-section {
  color: white;
  background-color: #157d8f;
}
body.my-account #account-favourite-centre img.centre-logo {
  height: 90px;
}
body.my-account #account-favourite-centre h2.centre-title {
  display: inline;
  margin: 30px;
}
body.my-account .account-section {
  padding-left: 1rem;
  padding-right: 1rem;
}
body.my-account .account-section .pseudo-table {
  margin-bottom: 1rem;
}
body.my-account .account-section .pseudo-table .cell {
  font-size: 1rem;
}
@media screen and (min-width: 40em) {
  body.my-account .account-section .pseudo-table .cell {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 64em) {
  body.my-account .account-section .pseudo-table .cell {
    font-size: 1.6rem;
  }
}
body.my-account .account-section .pseudo-table .cell .button {
  margin-bottom: 0;
  max-width: 280px;
  font-size: 1.2rem;
}
body.my-account .account-section .pseudo-table .cell.button-container {
  font-size: 12px;
}
@media screen and (min-width: 40em) {
  body.my-account .account-section .pseudo-table .cell.button-container {
    font-size: 16px;
  }
}
body.my-account .account-section .pseudo-table .cell.button-container.yesno .button {
  width: 50%;
}
body.my-account .account-section .pseudo-table .cell.button-container.yes .button {
  float: left !important;
}
body.my-account .account-section .pseudo-table .cell.button-container.yesno {
  background-color: white;
}

.site-title-bar {
  position: fixed;
  top: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 99999997;
  max-height: 60px;
  min-height: 60px;
}

.route-menu-container {
  position: fixed;
  background-color: #F1B53A;
  width: 100%;
  top: 60px;
  min-height: 97px;
  max-height: 97px;
}
.route-menu-container.competition {
  background-color: #E41D7A;
}
.route-menu-container .route-menu {
  display: inline-block;
}
.route-menu-container h2 {
  color: #304360;
  padding: 2px 0 2px 0;
  margin-bottom: 0;
}
.route-menu-container #UpVoteCell {
  position: relative;
}
.route-menu-container #UpVoteCell #SlideCommunityUpVotes {
  position: absolute;
  top: 47px;
  left: 0px;
  font-size: 75%;
  color: white;
  width: 100%;
}

.route-menu > .grid-x > .cell.selected-cell {
  border-bottom: solid 2px white;
}

.route-menu > .grid-x > .cell {
  margin-bottom: 5px;
}
.site-mobile-title.title-bar-title {
  padding-top: 5px;
}
.site-mobile-title.title-bar-title a {
  color: #fff;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  font-weight: 400;
}

footer.sticky-footer {
  position: relative;
}

.nowrap-container {
  overflow: auto;
  white-space: nowrap;
}

.menu-icon {
  height: 22px;
}

.shared-landing {
  padding: 40px;
}
.shared-landing p {
  line-height: 1.2rem;
}

.big-simian {
  font-family: "Bebas Neue";
  margin-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center; /* Only if you want it vertically center-aligned as well */
}
.big-simian img {
  width: 75px;
  margin-top: -30px;
}
.big-simian h2 {
  font-size: 4rem;
  line-height: 2rem;
}
.big-simian h3 {
  font-size: 1.4rem;
}
@media screen and (min-width: 64em) {
  .big-simian {
    margin-top: 40px;
  }
  .big-simian img {
    width: 148px;
    margin-top: -65px;
  }
  .big-simian h2 {
    font-size: 8rem;
    line-height: 2.8rem;
  }
  .big-simian h3 {
    font-size: 2.9rem;
  }
}

.teal.button {
  background-color: #157d8f;
  color: white;
}
.teal.button:hover {
  background-color: rgb(14.4695121951, 86.1280487805, 98.5304878049);
}

.title-bar-title img {
  width: 40px;
  height: 40px;
}

.map {
  padding-left: 20px;
  padding-right: 20px;
}

.proto-stamp {
  position: fixed;
  width: 155px;
  transform: rotate(15deg);
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  margin-top: -10px;
  margin-left: 170px;
}

.is-staging {
  background-color: grey !important;
}

#iubenda-cs-banner {
  top: 60px !important;
}

.alert-box.warning {
  background-color: red;
  border-color: darkred;
  color: #FFFFFF;
}
.alert-box.warning a {
  color: white;
  text-decoration: underline;
}

.alert-box.warning.user {
  background-color: #F1B53A;
  border-color: rgb(231.5450236967, 161.0236966825, 16.4549763033);
  color: #FFFFFF;
  font-family: "Bebas Neue";
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.alert-box.radius {
  border-radius: 3px;
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-weight: normal;
  margin-bottom: 1.11111rem;
  padding: 0.77778rem 1.33333rem 0.77778rem 0.77778rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #008CBA;
  border-color: #0078a0;
  color: #FFFFFF;
}

td.inline {
  cursor: pointer;
}

#FriendsModalList {
  width: 200px;
  max-width: 200px;
}
#FriendsModalList a {
  color: #304360;
}

#SuccessModal h4 {
  /*margin-top: 1.5rem;
  margin-bottom: 1.5rem;*/
  margin: 1.5rem;
}

.hello-text .notification {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.5em;
}

.button.notification {
  position: absolute;
  top: -10px;
  right: -24px;
  font-size: 1em;
  padding: 10px;
}

.friend-request-item {
  justify-content: center;
}
.friend-request-item label {
  margin-right: 1rem;
}

table.my-account {
  margin: 0 auto;
  width: unset;
}
table.my-account thead, table.my-account tbody, table.my-account tfoot, table.my-account tbody tr {
  border: none;
  background-color: white;
}
table.my-account td {
  padding: 4px;
}
table.my-account .button {
  margin: 0;
}

.grade-blob {
  margin: 0 0 0 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}
.grade-blob.grade-blob-text {
  padding: 2px;
}

#GradeCell {
  padding-top: 10px;
}

.not-hero {
  background-color: #999 !important;
  color: #bbb !important;
}
.not-hero h5 {
  font-family: "Bebas Neue";
  color: #bbb !important;
}
.not-hero .dummy.button {
  background-color: #bbb !important;
  color: #ccc !important;
}
.not-hero .freeloader-overlay-container {
  position: relative;
  z-index: 10;
}
.not-hero .freeloader-overlay {
  width: 80%;
  position: absolute;
  top: 20%;
  left: 10%;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .not-hero .freeloader-overlay {
    font-size: 120%;
    width: 40%;
    top: 20%;
    left: 30%;
  }
}

table.financials {
  font-size: 85%;
}
table.financials tr.success {
  background-color: #8FBC8F;
}
table.financials tr.fail {
  background-color: white;
}

td .button.small {
  margin-top: 5px;
  margin-bottom: 0;
}

table input.check-box {
  margin-top: 8px;
  margin-bottom: 0px;
}

dl p.instruction {
  font-size: 90%;
  font-weight: 100;
}

.upgrade-block {
  margin-bottom: 1rem;
}
.upgrade-block h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.upgrade-block .plan-description {
  font-size: 2.2rem;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
.upgrade-block .plan-long-description {
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
}
.upgrade-block a.footer {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}

.tab-icon.simian-font {
  font-size: 2.2em;
  line-height: 59px;
}

.route-menu .tab-icon {
  padding-top: 15px;
  cursor: pointer;
}
.route-menu .tab-icon.disabled {
  color: rgb(65, 90.7291666667, 130) !important;
  cursor: default;
}

.route-menu .disabled .tab-icon {
  cursor: default;
}

input.form-control.date-field {
  text-align: center;
  width: 180px;
}

input.admin-list-checkbox {
  margin-bottom: 0 !important;
  width: 20px;
  height: 20px;
}

.hitlist-extra-options {
  position: relative;
}
.hitlist-extra-options .box {
  border: 3px solid #157d8f;
  padding: 0.5rem;
  color: #F1B53A;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.hitlist-extra-options .fas {
  padding-right: 0.5rem;
}
.hitlist-extra-options.not-hero {
  background-color: white !important;
}
.hitlist-extra-options.not-hero .box {
  border-color: #bbb;
}
.hitlist-extra-options.not-hero .box div.dummy-text {
  color: #bbb;
}
.hitlist-extra-options.not-hero .freeloader-overlay {
  font-size: 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /*move it halfway back(x,y)*/
}
.hitlist-extra-options.not-hero .freeloader-overlay a {
  font-size: 110%;
  margin-bottom: 2px;
  margin-top: 2px;
}

.is-filtered-odd {
  background-color: white !important;
}

.is-filtered-even {
  background-color: #f1f1f1 !important;
}

.stats h4 {
  margin: 1rem 0;
}
.stats table tr, .stats table tbody {
  border: none !important;
}
.stats table td {
  padding-left: 10px;
  padding-right: 10px;
}
.stats .flash-count-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats .flash-count-header .fa-2x {
  vertical-align: middle;
  margin-top: 20px;
}
.stats .flash-count-header .the-intro {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.stats .flash-count-header .the-stats {
  display: table-cell;
  vertical-align: middle;
  line-height: 120%;
  font-size: 90%;
  padding-left: 0.5rem;
}
.stats .stats-footer p {
  margin-bottom: 0;
  font-family: "Bebas Neue" !important;
}
.stats .stats-footer h3 {
  margin-top: 1rem;
}

.icon-flash {
  color: red;
}

#DroppedStatus4 .simian-font, #InactiveDroppedStatus4 .simian-font {
  line-height: 2em;
}

.field.status .no-hero:hover, .field.guerrilla .unavailable:hover {
  cursor: initial !important;
}
.field.status .no-hero .white.selected, .field.guerrilla .unavailable .white.selected {
  color: darkgray;
}
.field.status .no-hero p, .field.guerrilla .unavailable p {
  color: darkgray;
}

.no-hero .simian-font, .no-hero .fas, .no-hero .far, .unavailable .simian-font, .unavailable .fas, .unavailable .far {
  color: darkgrey !important;
}

.admin-menu-item {
  /*border-top: 1px solid $orange;*/
  background-color: gray;
}

label.triangle-type:not(:last-child), label.triangle-orientation:not(:last-child) {
  margin-right: 50px;
}

.legend .fas, .legend .simian-font {
  margin-right: 6px;
}
.legend .legend-item:not(:last-child) {
  margin-right: 10px;
}
.legend .legend-item {
  display: inline-block;
  white-space: no-wrap;
}

.cancel-reasons label {
  display: block;
  margin-left: 2rem;
}
.cancel-reasons input[type=radio] {
  float: left;
  margin-top: 0.75rem;
}
.cancel-reasons #otherText {
  margin-top: 0.5rem;
  margin-left: 1.3rem;
}

#HitListRoutes thead tr {
  background-color: white;
}
#HitListRoutes tbody tr {
  border-bottom: 1px solid white;
  background-color: #f1f1f1;
}

.no-hero .flash-count-header {
  background-color: gray;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #F1B53A;
  color: white;
}

#MarginForHeader {
  height: 70px;
}

p.did-you-have-friends {
  margin-top: 40px;
  color: white !important;
}

@media screen and (min-width: 64em) {
  .top-bar-right {
    padding: 1rem;
  }
}

.smaller.button {
  font-size: 18px;
}

/*.button {
    &:focus {
        background-color: $teal;
    }
}*/
.pseudo-anchor {
  cursor: pointer;
  color: #F1B53A;
}
.pseudo-anchor:hover {
  color: rgb(231.5450236967, 161.0236966825, 16.4549763033);
}

.reveal {
  top: 80px !important;
}
.reveal input, .reveal select {
  font-family: Lato;
  font-size: 16px;
  max-width: 100%;
}

.text-danger {
  color: red !important;
}

.grade-container img {
  width: 40px;
}

.pseudo-label {
  font-size: 20px;
}

.number-box {
  width: 40px;
  height: 40px;
  font-family: "Bebas Neue";
  padding: 1px;
}
.number-box span, .number-box a {
  display: flex;
  align-items: center;
  height: 38px;
  justify-content: center; /* optional */
  width: 38px;
}
.number-box span.pseudo-anchor, .number-box a.pseudo-anchor {
  color: white !important;
}
.number-box span.pseudo-anchor.background-color-green:hover, .number-box a.pseudo-anchor.background-color-green:hover {
  background-color: rgb(38.5, 140, 79.1);
}
.number-box span.pseudo-anchor.background-color-blue:hover, .number-box a.pseudo-anchor.background-color-blue:hover {
  background-color: rgb(22.5, 31.40625, 45);
}
.number-box span.pseudo-anchor.background-color-orange:hover, .number-box a.pseudo-anchor.background-color-orange:hover {
  background-color: rgb(207.7369668246, 144.4668246445, 14.7630331754);
}
.number-box.ghost-box a {
  border: 1px dotted #aaa;
  color: #ddd;
  cursor: default;
}

table .competition-hitlist input[type=checkbox] {
  width: 1.2em !important;
  height: 1.2em !important;
}

.attempts-box {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}
.attempts-box a.button {
  color: white;
  margin-bottom: 0;
  font-size: 2rem;
  padding: 3px 10px;
}
.attempts-box div.value {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.nav-arrows.competition .button {
  background-color: #E41D7A;
}
.nav-arrows.competition .button:hover {
  background-color: rgb(161.2371541502, 19.2628458498, 85.6126482213);
}

.competition .button {
  background-color: #E41D7A;
}
.competition .competition-save {
  position: absolute;
  top: 80px;
  left: 0;
  width: 380px;
}
.competition .competition-save .button {
  user-select: none;
  min-width: 380px;
}
.competition .competition-save .button:hover {
  background-color: rgb(161.2371541502, 19.2628458498, 85.6126482213);
}
.competition .competition-menu {
  user-select: none;
  display: inline-block;
  background-color: #314561;
  width: 380px !important;
  z-index: 999999999;
  position: relative;
  padding-top: 10px;
  padding-left: 5px;
  height: 100px;
}
.competition .competition-menu .value {
  user-select: none;
}
.competition .competition-menu .menu-label {
  color: white;
  font-family: "Bebas Neue";
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
}
.competition .competition-menu .cell {
  position: relative;
  height: 70px;
}
.competition .competition-menu .cell .button {
  padding: 5px;
  background-color: white;
  color: #F1B53A;
}
.competition .competition-menu .cell .button.plus {
  background-color: #F1B53A;
  color: white;
}
.competition .competition-menu .cell .button.completed {
  background-color: #37c871;
  color: white;
}
.competition .competition-menu .value {
  display: inline-block;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 26px;
  font-weight: bold !important;
  font-family: "Bebas Neue";
  color: #F1B53A;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: white;
  border-radius: 50px;
  position: relative;
  top: -3px;
  border: 3px solid #37c871;
}
.competition .competition-menu .value.is-completed {
  background-color: #37c871;
  color: white;
  border: 3px solid #F1B53A;
}

tbody.sortable td.data-value.sortorder:before {
  content: "\f0dc";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  padding-right: 5px;
}

.number-circle {
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 90%;
  line-height: 1;
  padding: 6px 3px;
  background: #F1B53A;
  color: white !important;
  text-align: center;
  float: right;
  font-weight: bold;
}
.number-circle:hover {
  background: rgb(231.5450236967, 161.0236966825, 16.4549763033);
  cursor: pointer;
}
.number-circle.text-center {
  float: none;
  margin: auto;
}

.competition-circle {
  display: block;
  font-family: "Bebas Neue";
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 90%;
  line-height: 1;
  padding: 6px 3px;
  background: white;
  color: #304360 !important;
  text-align: center;
  float: right;
  font-weight: bold;
  border: 1px solid #304360;
  position: relative;
}
.competition-circle:hover {
  cursor: pointer;
}
.competition-circle.text-center {
  float: none;
  margin: auto;
}
.competition-circle.selected::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #37c871;
  box-sizing: border-box;
}
.competition-circle.disabled {
  border: 1px solid #ccc;
  background-color: #efefef;
  color: #bbb !important;
}
.competition-circle.disabled:hover {
  cursor: default;
}

.disabled-number-circle {
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 90%;
  line-height: 1;
  padding: 6px 3px;
  background: #ccc;
  text-align: center;
  float: right;
  font-weight: bold;
}
.disabled-number-circle.text-center {
  float: none;
  margin: auto;
}

.dev-notice {
  float: right;
  font-size: 9px;
}

td.box-text span {
  text-transform: uppercase;
  color: white;
  background: red;
  display: block;
  margin: 3px;
  padding: 6px 2px;
  line-height: 1;
  font-size: 10px;
  font-weight: bold;
}

.flatpickr-day {
  font-family: "Bebas Neue";
}

/*#GuerrillaAddRouteButton {
    position: fixed;
    z-index: 2147483000;
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease-in-out,opacity 0.3s ease-out,box-shadow 0.3s ease-out;
    cursor: pointer;
    left: 20px;
    bottom: 20px;
    background-color: $orange;
    border-radius: 50%;
    line-height: 1;
    padding-top: 8px;

    .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #5A6171;
        color: #fff;
        text-align: center;
        border-radius: 4px;
        padding: 5px;
        position: absolute;
        z-index: 1;
        top: 25%;
        right: -250%;
        transform: translateX(5px);
        opacity: 0;
        transition: opacity 0.3s, right 0.3s;
        font-size: 75%;
    }

    &:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
        right: calc(-260%);
    }
}*/
#GuerrillaImage {
  height: initial;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 95%);
}

.field.guerrilla div:not(.no-hero) {
  color: white;
}
.field.guerrilla div:not(.no-hero):hover {
  color: #F1B53A !important;
  cursor: pointer;
}
.field.guerrilla div#RouteExpiryLabel {
  color: white;
}
.field.guerrilla div#RouteExpiryLabel:hover {
  color: white !important;
  cursor: default;
}

.field.status div:not(.no-hero) {
  color: white;
}

.jumbotron .centre-description {
  font-family: "Bebas Neue";
}
.jumbotron .centre-description .centre-name {
  line-height: 1;
  font-size: 2rem;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .jumbotron .centre-description .centre-name {
    font-size: 3.2rem;
  }
}
.jumbotron .centre-description h3 {
  margin-bottom: 0;
  margin-top: 1rem;
}
.jumbotron .my-routes {
  display: inline-block;
  margin-top: 1rem;
}

.cards {
  font-size: 1.3rem;
  border: 1px solid #aaa;
  margin-bottom: 0;
  margin-top: 6px;
  background-color: white;
}
.cards.card2 {
  background-color: red;
}
.cards.card1 {
  background-color: yellow;
}
.cards:hover {
  cursor: pointer;
}

table.notifications thead, table.notifications tr, table.notifications td, table.notifications tbody {
  font-size: 15px;
  font-weight: normal;
}
table.notifications td.datecol {
  white-space: nowrap;
}

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

#SpacerAddButton {
  margin-top: 10px;
  padding: 8px;
  color: #304360;
}

#StickerMenu, #CompetitionRouteStickerMenu {
  min-height: 50px;
  max-height: 50px;
  background-color: #304360;
  width: 100%;
  display: none;
  padding: 5px;
}
#StickerMenu img, #CompetitionRouteStickerMenu img {
  height: 40px;
  width: 40px;
  float: left;
  padding: 5px;
  border-bottom: 2px solid transparent;
}
#StickerMenu img.selected, #CompetitionRouteStickerMenu img.selected {
  border: 2px solid white;
}
#StickerMenu img.grayscale, #CompetitionRouteStickerMenu img.grayscale {
  filter: grayscale(100%);
}
#StickerMenu #TrashStickerButton, #StickerMenu #ResetStickersButton, #StickerMenu #CompetitionRouteTrashStickerButton, #StickerMenu #CompetitionRouteResetStickersButton, #CompetitionRouteStickerMenu #TrashStickerButton, #CompetitionRouteStickerMenu #ResetStickersButton, #CompetitionRouteStickerMenu #CompetitionRouteTrashStickerButton, #CompetitionRouteStickerMenu #CompetitionRouteResetStickersButton {
  float: right;
  color: orange;
  font-size: 20px;
  margin-top: 5px;
  margin-right: 10px;
}

#CanvasContainer {
  position: relative;
}
#CanvasContainer #CanvasTeaser {
  position: absolute;
  width: 80%;
  background-color: white;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Move back 50% of the width and height */
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #304360;
  border: 2px solid white;
  box-shadow: inset 0 0 0 4px #304360;
}
#CanvasContainer #CanvasTeaser p {
  color: #304360;
}
#CanvasContainer #CanvasTeaser a.button {
  color: white;
}

#MoveMenu {
  position: absolute;
  background-color: #304360;
  color: white;
  font-size: 180%;
  width: 190px;
  padding-left: 1rem;
  left: auto;
  margin-left: 100px;
  top: 200px;
  border: 1px solid white;
  display: none;
}
#MoveMenu i:hover {
  color: #F1B53A;
  cursor: pointer;
}

#spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #F1B53A;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
  display: inline-block;
  margin-left: 10px; /* Adjust as necessary to position the spinner properly */
  vertical-align: middle; /* Align vertically with the select box */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
table.sticky-thead thead {
  position: sticky;
  top: 60px;
  z-index: 1;
}

table th {
  font-weight: normal;
}

.button.alongside {
  margin-bottom: 0;
}

#ToggleHeaderContainer {
  background-color: #157d8f;
  text-transform: uppercase;
  position: absolute;
  top: 60px;
  right: 10px;
  border-radius: 0px 0px 8px 8px;
  font-size: 11px;
  color: #eee;
}
#ToggleHeaderContainer i {
  font-size: 120%;
}
#ToggleHeaderContainer #ToggleHeader {
  padding: 3px 8px;
}
#ToggleHeaderContainer:hover {
  cursor: pointer;
  background-color: rgb(27.5304878049, 163.8719512195, 187.4695121951);
}

.scrollmargintop60 {
  scroll-margin-top: 60px;
}

table.force-fit {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}
table.force-fit td {
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.toggle-moderationstatus .fa-check-circle {
  color: #37c871;
  font-size: 125%;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

#ModerationArea .fas {
  font-size: 85%;
}
#ModerationArea button {
  vertical-align: top;
  color: #304360;
  font-size: 80%;
  padding: 2px 8px 2px 5px;
  margin-top: 0px;
  cursor: pointer;
  margin-left: 5px;
}
#ModerationArea #ModerationApproveButton {
  background-color: #37c871;
}
#ModerationArea #ModerationApproveButton:hover {
  background-color: rgb(115, 216.5, 155.6);
}
#ModerationArea #ModerationRejectButton {
  background-color: salmon;
}
#ModerationArea #ModerationRejectButton:hover {
  background-color: rgb(251.7465753425, 172.3630136986, 163.2534246575);
}

.route-menu {
  background-color: #314561;
  width: 380px !important;
  z-index: 999999999;
}
.route-menu .fa-stack {
  font-size: 1.5em;
}

.route-menu > .grid-x > .cell {
  height: 60px;
  width: 75px;
}

.route-menu .triple-tab-icon-container {
  padding-left: 10px;
  padding-top: 23px;
  cursor: pointer;
  color: white;
}

.route-menu .triple-tab-icon-container span {
  margin-bottom: 20px;
}

.route-menu .dropdown {
  height: 0px;
  overflow: hidden;
  transition: all 0.25s ease-out;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.route-menu .dropdown.in-view {
  height: 150px;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.route-menu .dropdown.in-view:has(#SMTWScoringDropdownFlashmaster) {
  height: 220px;
}

.route-menu .dropdown .field {
  display: none;
}

.route-menu .dropdown .form-group {
  padding-left: 10px;
  padding-right: 10px;
}

.route-menu .dropdown {
  font-family: "Bebas Neue";
}

.route-menu .dropdown .field.active {
  display: initial;
}

.route-menu .dropdown .form-control,
.route-menu .dropdown textarea,
.route-menu .dropdown .button {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.route-menu .dropdown .button {
  position: absolute;
  bottom: -100px; /* prevents hidden button hijacking click event on icons in samsung/iphones */
  margin: 0px;
  height: 0px;
}

.route-menu .dropdown.in-view .button {
  bottom: 0px;
  height: 66px;
}

#SMTWScoringDropdownFlashmaster.field.status .dropdown-row-label {
  color: white;
  position: absolute;
  left: 10px;
  top: 50px;
  transform: rotate(-90deg);
}
#SMTWScoringDropdownFlashmaster.field.status .dropdown-row-label.zone-label {
  top: 110px;
  left: 5px;
  color: #304360;
}
#SMTWScoringDropdownFlashmaster.field.status .grid-x {
  padding-left: 30px;
}
#SMTWScoringDropdownFlashmaster.field.status p {
  margin-top: 1rem;
  margin-bottom: 0;
}
#SMTWScoringDropdownFlashmaster.field.status #Row2 {
  background-color: white;
}
#SMTWScoringDropdownFlashmaster.field.status #Row2 .score-value {
  color: gray;
  border: 1px solid gray;
}
#SMTWScoringDropdownFlashmaster.field.status #Row2 .fa-stack.selected .score-value {
  color: #304360;
  background-color: white;
  border: 3px solid #37c871;
}

body.logged-in-tour #tour-show-wall {
  margin-top: -80px !important;
}

#tour-show-wall {
  background-color: white;
  color: #304360;
}
#tour-show-wall .overlay {
  background-color: #F1B53A;
  color: #304360;
}

#tour-hitlist {
  background-color: #304360;
  color: white;
}
#tour-hitlist h3 {
  color: white;
}
#tour-hitlist .overlay {
  background-color: #157d8f;
  color: white;
}

#tour-be-hero {
  background-color: white;
  color: #304360;
}
#tour-be-hero h3 {
  color: #304360;
}
#tour-be-hero .overlay {
  background-color: #F1B53A;
  color: #304360;
}

#tour-where {
  padding-top: 60px;
  background-color: #304360;
  color: white;
}
#tour-where h3 {
  padding-top: 40px;
  font-size: 1.7rem;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  #tour-where h3 {
    font-size: 3rem;
  }
}
#tour-where .triangle {
  bottom: 40px;
  color: white;
}
#tour-where .centre-grid .cell {
  background-color: #157d8f;
  padding: 13px;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  #tour-where .centre-grid .cell {
    padding: 30px;
  }
}
#tour-where .button {
  width: 100%;
  font-size: 2rem;
}
#tour-where .title {
  margin: 0 0px 15px 0px;
  font-size: 1rem;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  #tour-where .title {
    font-size: 1.8rem;
  }
}
#tour-where .location {
  margin-top: 5px;
  font-size: 0.81rem;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  #tour-where .location {
    font-size: 1rem;
  }
}
#tour-where .slogan {
  font-size: 2rem;
}
@media screen and (min-width: 40em) {
  #tour-where .slogan {
    font-size: 4rem;
  }
}

#tour-final {
  padding-top: 210px;
  color: white;
  background-color: #157d8f;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}
#tour-final img.circle-gorilla {
  position: absolute;
  top: 65px;
  left: 5px;
  z-index: -9999;
  width: 55%;
}
@media screen and (min-width: 40em) {
  #tour-final img.circle-gorilla {
    width: 35%;
  }
}

#tour-backhome {
  padding-top: 210px;
  color: #304360;
  background-color: white;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 9;
}
#tour-backhome img.circle-gorilla {
  position: absolute;
  top: 65px;
  left: 5px;
  z-index: -9999;
  width: 55%;
}
@media screen and (min-width: 40em) {
  #tour-backhome img.circle-gorilla {
    width: 35%;
  }
}

.tour-progress {
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.tour-progress a.white {
  color: white;
}
.tour-progress a.blue {
  color: #304360;
}
.tour-progress a.teal {
  color: #157d8f;
}

.triangle {
  position: absolute;
  right: 20px;
  color: orange;
  background-image: url(images/tour-triangle.png);
  background-size: contain;
  width: 150px;
  height: 132px;
  padding: 20px;
  font-size: 1rem;
  bottom: 75px;
  z-index: 2147480002;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .triangle {
    width: 250px;
    height: 220px;
    padding: 44px;
    font-size: 1.6rem;
    bottom: 85px;
  }
}

.triangle.blue {
  background-image: url(images/tour-triangle-blue.png);
}

.triangle.teal {
  background-image: url(images/tour-triangle-teal.png);
}

.triangle.delayed {
  display: none;
}

#tour-login {
  margin-top: -20px;
  padding-top: 50px;
  color: white;
  background-color: #304360;
  background-image: url(images/bluegorilla_small.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 40em) {
  #tour-login {
    background-image: url(images/bluegorilla_medium.png);
    background-size: contain;
  }
}
@media screen and (min-width: 64em) {
  #tour-login {
    margin-top: -60px;
    background-image: url(images/bluegorilla_large.png);
    background-size: contain;
  }
}

.tour-page {
  padding-top: 60px;
  position: relative;
  min-height: 100vh;
}
.tour-page .slide-title-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-page h3 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .tour-page h3 {
    font-size: 3rem;
    margin: 30px 20px 0 20px;
  }
}
.tour-page .slide-icon {
  display: inline-block;
  padding: 20px;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .tour-page .slide-icon {
    padding: 40px;
  }
}
.tour-page img.main {
  padding: 20px 40px 40px 40px;
}
.tour-page .overlay {
  -moz-box-shadow: 6px 6px 5px 1px #444;
  -webkit-box-shadow: 6px 6px 5px 1px #444;
  box-shadow: 6px 6px 5px 1px #444;
  font-size: 1rem;
  padding: 14px;
  width: 75%;
  left: 50%; /* Position X halfway in */
  transform: translate(-50%, -50%); /* Move it halfway back(x,y) */
  position: absolute;
  bottom: 40px;
  font-size: 0.8rem;
  z-index: 2147480001;
  /* Medium and up 40em=640px*/
}
@media screen and (min-width: 40em) {
  .tour-page .overlay {
    font-size: 1.5rem;
  }
}
.tour-page .overlay.animation-element.slide-in-right-medium {
  opacity: 0;
  transform: translate(-100%, -50%); /* Move it halfway back(x,y) */
}
.tour-page .overlay.animation-element.slide-in-right-medium.in-view {
  opacity: 1;
  transform: translate(-50%, -50%); /* Move it halfway back(x,y) */
}
.tour-page p {
  font-family: "Bebas Neue";
}

@font-face {
  font-family: "simian200501";
  src: url("fonts/simian200501.eot?7czdx4");
  src: url("fonts/simian200501.eot?7czdx4#iefix") format("embedded-opentype"), url("fonts/simian200501.ttf?7czdx4") format("truetype"), url("fonts/simian200501.woff?7czdx4") format("woff"), url("fonts/simian200501.svg?7czdx4#simian200501") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "simian200501" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-skinny-banana:before {
  content: "\e901";
}

.icon-flash:before {
  content: "\e902";
}

.icon-fat-banana:before {
  content: "\e903";
}

.notification {
  display: inline-block;
  min-width: 2.1em;
  min-height: 2.1em;
  padding: 6px 0 0 0;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  background: red;
  color: #fefefe;
  margin-top: -10px;
  position: absolute;
}

.small.notification {
  margin-top: 0px;
  margin-left: -18px;
  font-size: 9px;
  padding: 4px 0 0 0;
}

.reveal {
  /*width:90% !important;
  top:140px !important;
  min-height:0 !important;
  height:auto;
  left: 5%;*/
}
.reveal table.unstriped {
  margin-top: 20px;
  margin-bottom: 0;
}
.reveal table.unstriped tbody, .reveal table.unstriped tr {
  border: none;
  border-bottom: none;
  color: #304360;
}

.reveal #FriendsList table.unstriped tbody:hover, .reveal #FriendsList table.unstriped tr:hover {
  background-color: #157d8f;
  color: white;
  cursor: pointer;
}

.reveal #FilterMenu table.unstriped tbody tr:hover {
  background-color: #F1B53A;
  color: white;
  cursor: pointer;
}
.reveal #FilterMenu table.unstriped tbody tr i.fa-check {
  visibility: hidden;
}
.reveal #FilterMenu table.unstriped tbody tr.check-status-on i.fa-check {
  visibility: visible;
}
.reveal #FilterMenu table.unstriped thead {
  background: white;
}
.reveal #FilterMenu table.unstriped thead, .reveal #FilterMenu table.unstriped tbody, .reveal #FilterMenu table.unstriped tfoot {
  border: none;
  background-color: white;
}
.reveal #FilterMenu table.unstriped tbody th, .reveal #FilterMenu table.unstriped tbody td {
  padding: 0.2rem 0.6rem 0.2rem 0.6rem;
}

.reveal a.popup h4 {
  line-height: 1.2;
}

@media screen and (max-width: 39.99875em) {
  .reveal {
    top: 10% !important;
    right: 0;
    bottom: 0;
    left: 5%;
    width: 90%;
    max-width: none;
    height: initial;
    min-height: initial;
    margin-left: 0;
  }
}
.reveal ul li label {
  vertical-align: top;
  white-space: nowrap;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reveal ul .grade-blob {
  display: inline;
}
.reveal ul .grade-blob img {
  max-width: 30px;
}
.reveal p {
  font-size: 16px;
  line-height: 1;
}

.percentage {
  content: "";
  display: block;
  /*background-color: $green;*/
  float: left;
  color: white;
  font-family: "Bebas Neue";
  padding: 5px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%); /*move it halfway back(x,y)*/
}
.percentage a {
  color: white;
}

.percentage-right {
  background-color: #F1B53A;
  float: right;
  width: 100%;
}

.not-hero .percentage-right {
  background-color: #444;
}

.not-hero .percentage-left {
  background-color: #aaa;
}

.not-hero .percentage-missed {
  background-color: #aaa;
}

.percentage-left {
  background-color: #37c871;
  float: left;
}

.percentage-missed {
  background-color: #304360;
  width: 50%;
  float: right;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /*move it halfway back(x,y)*/
}
.percentage-missed.not-live {
  background-color: darkgray !important;
}

td.bar-chart-container {
  position: relative;
  padding: 0;
}

.percentage-1 {
  width: 1%;
}

.percentage-2 {
  width: 2%;
}

.percentage-3 {
  width: 3%;
}

.percentage-4 {
  width: 4%;
}

.percentage-5 {
  width: 5%;
}

.percentage-6 {
  width: 6%;
}

.percentage-7 {
  width: 7%;
}

.percentage-8 {
  width: 8%;
}

.percentage-9 {
  width: 9%;
}

.percentage-10 {
  width: 10%;
}

.percentage-11 {
  width: 11%;
}

.percentage-12 {
  width: 12%;
}

.percentage-13 {
  width: 13%;
}

.percentage-14 {
  width: 14%;
}

.percentage-15 {
  width: 15%;
}

.percentage-16 {
  width: 16%;
}

.percentage-17 {
  width: 17%;
}

.percentage-18 {
  width: 18%;
}

.percentage-19 {
  width: 19%;
}

.percentage-20 {
  width: 20%;
}

.percentage-21 {
  width: 21%;
}

.percentage-22 {
  width: 22%;
}

.percentage-23 {
  width: 23%;
}

.percentage-24 {
  width: 24%;
}

.percentage-25 {
  width: 25%;
}

.percentage-26 {
  width: 26%;
}

.percentage-27 {
  width: 27%;
}

.percentage-28 {
  width: 28%;
}

.percentage-29 {
  width: 29%;
}

.percentage-30 {
  width: 30%;
}

.percentage-31 {
  width: 31%;
}

.percentage-32 {
  width: 32%;
}

.percentage-33 {
  width: 33%;
}

.percentage-34 {
  width: 34%;
}

.percentage-35 {
  width: 35%;
}

.percentage-36 {
  width: 36%;
}

.percentage-37 {
  width: 37%;
}

.percentage-38 {
  width: 38%;
}

.percentage-39 {
  width: 39%;
}

.percentage-40 {
  width: 40%;
}

.percentage-41 {
  width: 41%;
}

.percentage-42 {
  width: 42%;
}

.percentage-43 {
  width: 43%;
}

.percentage-44 {
  width: 44%;
}

.percentage-45 {
  width: 45%;
}

.percentage-46 {
  width: 46%;
}

.percentage-47 {
  width: 47%;
}

.percentage-48 {
  width: 48%;
}

.percentage-49 {
  width: 49%;
}

.percentage-50 {
  width: 50%;
}

.percentage-51 {
  width: 51%;
}

.percentage-52 {
  width: 52%;
}

.percentage-53 {
  width: 53%;
}

.percentage-54 {
  width: 54%;
}

.percentage-55 {
  width: 55%;
}

.percentage-56 {
  width: 56%;
}

.percentage-57 {
  width: 57%;
}

.percentage-58 {
  width: 58%;
}

.percentage-59 {
  width: 59%;
}

.percentage-60 {
  width: 60%;
}

.percentage-61 {
  width: 61%;
}

.percentage-62 {
  width: 62%;
}

.percentage-63 {
  width: 63%;
}

.percentage-64 {
  width: 64%;
}

.percentage-65 {
  width: 65%;
}

.percentage-66 {
  width: 66%;
}

.percentage-67 {
  width: 67%;
}

.percentage-68 {
  width: 68%;
}

.percentage-69 {
  width: 69%;
}

.percentage-70 {
  width: 70%;
}

.percentage-71 {
  width: 71%;
}

.percentage-72 {
  width: 72%;
}

.percentage-73 {
  width: 73%;
}

.percentage-74 {
  width: 74%;
}

.percentage-75 {
  width: 75%;
}

.percentage-76 {
  width: 76%;
}

.percentage-77 {
  width: 77%;
}

.percentage-78 {
  width: 78%;
}

.percentage-79 {
  width: 79%;
}

.percentage-80 {
  width: 80%;
}

.percentage-81 {
  width: 81%;
}

.percentage-82 {
  width: 82%;
}

.percentage-83 {
  width: 83%;
}

.percentage-84 {
  width: 84%;
}

.percentage-85 {
  width: 85%;
}

.percentage-86 {
  width: 86%;
}

.percentage-87 {
  width: 87%;
}

.percentage-88 {
  width: 88%;
}

.percentage-89 {
  width: 89%;
}

.percentage-90 {
  width: 90%;
}

.percentage-91 {
  width: 91%;
}

.percentage-92 {
  width: 92%;
}

.percentage-93 {
  width: 93%;
}

.percentage-94 {
  width: 94%;
}

.percentage-95 {
  width: 95%;
}

.percentage-96 {
  width: 96%;
}

.percentage-97 {
  width: 97%;
}

.percentage-98 {
  width: 98%;
}

.percentage-99 {
  width: 99%;
}

.percentage-100 {
  width: 100%;
}

.not-live.background-color-orange .percentage {
  background-color: darkgray !important;
}

.not-live.background-color-green .percentage {
  background-color: dimgray !important;
}

/* Small only */
/* Medium and up */
/* Large and up */
/* Medium only */
/* Large only */
.square-container {
  display: flex;
  flex-wrap: wrap;
}

.square {
  position: relative;
  flex-basis: calc(50% - 10px);
  margin: 5px;
  background-color: #F1B53A;
  box-sizing: border-box;
}
.square i.x-icon {
  font-size: 2.5rem;
  line-height: 4rem;
}
.square:hover {
  background-color: #EB940D;
}
.square a {
  color: white;
}
.square h4 {
  padding: 10px;
  font-weight: normal;
  /*letter-spacing:3px;*/
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;*/
}

@media screen and (min-width: 40em) {
  .align-center .square {
    flex-basis: calc(50% - 10px);
  }
}
@media screen and (min-width: 64em) {
  .align-center .square {
    flex-basis: calc(33.3333333333% - 10px);
  }
}

@media screen and (min-width: 40em) {
  .align-left .square {
    flex-basis: calc(33.3333333333% - 10px);
  }
}
@media screen and (min-width: 64em) {
  .align-left .square {
    flex-basis: calc(20% - 10px);
  }
}

.square.black {
  background-color: #111;
}
.square.black:hover {
  background-color: rgb(42.5, 42.5, 42.5);
}

.square::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.square .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex; /* added for cente$orange text */
  justify-content: center; /* added for cente$orange text */
  align-items: center; /* added for cente$orange text */
}

.square.disabled {
  background-color: #bbb;
}

h4 {
  line-height: 1;
}

.admin-grid .cell {
  min-height: 184px;
}
.admin-grid .sq-button {
  position: relative;
}
.admin-grid .sq-button h4 {
  font-size: 1.2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 40em) {
  .admin-grid .sq-button h4 {
    font-size: 2rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
.admin-grid .sq-button.disabled {
  background-color: #bbb;
}
.admin-grid .content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex; /* added for cente$orange text */
  justify-content: center; /* added for cente$orange text */
  align-items: center; /* added for cente$orange text */
}

.table input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  margin-top: 8px;
}

p.back-to {
  margin-top: 0;
  margin-bottom: 10px;
}
p.back-to a {
  font-size: 16px;
}

.horizontal-radio-buttons label {
  font-size: 14px;
}

.reveal #RouteSetterID option {
  font-size: 1.2em;
  font-size-adjust: 0.3;
}

.reveal .admin-checkbox-left {
  width: 30px;
}
.reveal span.text-danger {
  display: block;
  margin-top: -15px;
  margin-bottom: 15px;
}
.reveal span.field-validation-error {
  margin-top: -30px;
}

.xarrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid blue;
}

.skinned-file-chooser [type=file] {
  height: 0;
  overflow: hidden;
  width: 0;
}
.skinned-file-chooser [type=file] + label {
  background: #F1B53A;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  transition: all 0.3s;
  vertical-align: middle;
}
.skinned-file-chooser [type=file] + label:hover {
  background-color: #EB940D;
}

.mapping-menu-container {
  position: relative;
}

.mapping-menu {
  position: sticky;
  top: 60px;
  width: 100vw;
  max-width: 100vw;
  z-index: 12;
  max-height: 65px;
  min-height: 65px;
  background-color: #314561;
}
.mapping-menu .pseudo-anchor {
  padding-bottom: 5px;
  font-size: 40px;
}
.mapping-menu .pseudo-anchor img {
  padding-bottom: 10px;
}
.mapping-menu .pseudo-anchor.current img {
  border-bottom: 4px solid white;
}

#MappingStickersPanel {
  padding-top: 1rem;
}
#MappingStickersPanel img {
  border: 3px solid #eee;
  padding: 10px;
}
#MappingStickersPanel img.current {
  border: 3px solid #F1B53A;
}
#MappingStickersPanel img:hover {
  background-color: #F1B53A;
  border: 3px solid #F1B53A;
  cursor: pointer;
}

.input-group {
  margin-bottom: 2rem;
}

.switch {
  /*height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;

  color: #fefefe;*/
  /*-webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
  font-weight: normal;
}

.switch-inactive {
  right: 10%;
}

.switch-paddle {
  background: #F1B53A;
}

input:checked ~ .switch-paddle {
  background: #304360;
}

.leaflet-container .leaflet-popup-content a {
  color: white;
}
.leaflet-container .leaflet-popup-content .button {
  margin-top: 10px;
  margin-bottom: 0px;
}
.leaflet-container .leaflet-popup-content h5 {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

a.leaflet-control-zoom-in:hover,
a.leaflet-control-zoom-out:hover,
a.leaflet-popup-close-button:hover {
  text-decoration: none;
}

#mapid {
  height: 580px;
  margin: 1rem;
  border: 1px solid #304360;
}

.simianMapIcon .icon-container {
  width: 44px;
  height: 44px;
  padding: 1px 6px 6px 1px;
  font-size: 11px;
  border-width: 0px;
  border-style: solid;
  border-radius: 28px;
  color: white;
  position: relative;
  display: inline-block;
  background-color: #08c;
  padding: 5px 4px;
  border-radius: 50%;
  color: #FFF;
}
.simianMapIcon .icon-container.burgundy {
  color: red;
  border: 5px solid red;
  background-color: white;
}
.simianMapIcon .icon-container.burgundy:before {
  border-color: red transparent;
}
.simianMapIcon .icon-container.navy {
  background-color: white;
  color: #F9B233;
  border: 5px solid #F9B233;
}
.simianMapIcon .icon-container.navy:before {
  border-color: #F9B233 transparent;
}

h6.map-route-count {
  margin-top: 0.5rem;
}

#LandingPageContainer {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100dvh;
  position: relative;
}
#LandingPageContainer .landing-page {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
#LandingPageContainer .landing-panel {
  width: 350px;
  position: absolute;
  bottom: 20%;
  left: 0px;
  font-family: "Bebas Neue";
  font-size: 2rem;
  padding-left: 1rem;
  color: #304360;
  background-color: #F1B53A;
  padding-bottom: 5px;
}
#LandingPageContainer .landing-panel a {
  color: white;
}
#LandingPageContainer ul.landing-progress {
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  right: 1rem;
  font-size: 1rem;
  list-style: none;
}
#LandingPageContainer ul.landing-progress li {
  color: white;
}

.landing-page-footer.sticky-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
}

br.pre-footer {
  display: none;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  font-size: 12px;
}

.route-menu-container.competition .grade-blob-image {
  color: white;
  font-family: "Bebas Neue";
  font-size: 1.3rem;
  background-color: #F1B53A; /* This will show through the transparent part of the image */
  background-image: url("/Content/images/category-circle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Ensure the image covers the element correctly */
  text-align: center; /* Center the text horizontally */
  line-height: 40px; /* Center the text vertically */
  width: 40px; /* Set the width to 40px */
  height: 40px; /* Set the height to 40px */
  align-items: center;
  justify-content: center;
}
.route-menu-container.competition .grade-blob-image.op {
  background-color: red;
}
.route-menu-container.competition .grade-blob-image.jn {
  background-color: #37c871;
}
.route-menu-container.competition .grade-blob-image.wm {
  background-color: mediumpurple;
}
.route-menu-container.competition .score-value {
  font-weight: normal;
  border: 1px solid white;
  display: block;
  width: 50px;
  height: 50px;
  margin: 5px 10px 10px 15px;
  border-radius: 50%;
  padding-bottom: 15px;
  padding-top: 1px;
  font-size: 24px;
  line-height: 2;
  cursor: pointer;
}
.route-menu-container.competition .status .fa-stack.selected .score-value {
  color: #304360;
  background-color: white;
  border: 3px solid #37c871;
}
.route-menu-container.competition .tab-icon.current-score {
  color: #304360;
  background-color: white;
  font-family: "Bebas Neue";
  font-size: 18px;
  line-height: 2;
  border: 3px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: 15px;
  padding-top: 0;
  margin-left: 15px;
  padding-left: 0;
}
.route-menu-container.competition .tab-icon.current-score.above-zero {
  border: 3px solid #37c871;
}
.route-menu-container.competition .tab-icon.current-score.disabled {
  background-color: #efefef;
  color: #bbb !important;
  border-color: #efefef;
}

.not-live .background-color-blue {
  background-color: darkgray;
}

tr.reduced-table-padding td {
  padding: 6px;
}

.route-menu-container {
  z-index: 999;
}
