/* Dork & Light Mode */
body {
    background-color: #171717;
    color: #d9d9d9;
  }
  div.comparisonBox {
    border: 2px solid #282828;
  }
  div.Othermatches{
    color: #c02f34;
}

  @media screen and (prefers-color-scheme: light) {
    body {
      background-color: white;
      color: black;
    }
    div.comparisonBox {
        border: 2px solid black;
    }
    div.Othermatches{
        color: #e50918;
    }
    
  }

/* Header and Sign In */

img.arbiterLogo {
    width: 200px;
    position: relative;
    bottom: 5px;
}
.nav {
    width: 100%;
}

.navbar-list {
    position: fixed; 
    width: 100%;
}

div.container-fluid,
div.collapse.navbar-collapse {
    display: inline-block;
    padding-right: 0px;
}

span.navbar-text.headerLabel {
    color: white;
    position: relative;
    top: 5px;
    font-size: 15px;
    cursor: pointer;
}

div.right-align {
    float: right;
}

span.navbar-text.signOut:hover {
    opacity: .8;
    cursor: pointer;
}

#signIn {
    width: 100%;
    text-align: center;
    margin-top: 300px;
}

span.errorMessage {
    right: 40px;
    position: relative;
    font-size: 20px;
    color: red;
    visibility: hidden;
}

span.textLabel {
    font-size: 25px;
    margin-right: 20px;
    position: relative;
    top: 2px;
}

span.label.signIn {
    display: inline-block;
    width: 200px;
    font-size: 22px;
    line-height: 27px;
    margin-left: 20px;
    margin-right: 20px;
}

input.signIn {
    line-height: 30px;
    font-size: 18px;
    width: 300px;
}


span.numberCircle {
    background: #5178D0;
    border-radius: 0.8em;
    -moz-border-radius: 0.8em;
    -webkit-border-radius: 0.8em;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    line-height: 1.6em;
    margin-right: 15px;
    text-align: center;
    width: 1.6em; 
  }

hr { 
    display: block; 
    overflow: hidden; 
    border-style: inset; 
    border-width: 1px;
}

div.statsBox {
    /* border: 2px solid black; */
    width: 75%;
    min-height: 250px;
    border-radius: 10px;
    padding: 30px;
    display: inline-block;
}

.statsTable{
    width: 99%;
    margin: 10px;
}
.statsTable th {
    background-color: #548cc8;
    color: white;
    text-transform: uppercase;
}

.help-sections {
    /* display: flex; */
    text-align: center;
}

.help-sections div {
    border: black;
    border-width: 2px;
    border-style: solid;
    width: 525px;
    /* min-height: 250px; */
    border-radius: 10px;
    padding: 30px;
    display: inline-block;
    margin: 30px;
    cursor: pointer;
}

/* Comparison Area */

#mainContent {
    padding-left: 75px;
    padding-right: 75px;
}

#mainMap {
    display: flex;
    justify-content: center; 
    padding-top: 75px;
}

div.row.mainContainer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

#alternateContent {
    display: none;
}

div.row.alternateContainer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

div.comparisonBox {
    /* border: 2px solid black; */
    width: 525px;
    min-height: 250px;
    border-radius: 10px;
    padding: 30px;
    display: inline-block;
}

div.comparisonBox.referenceData {
    margin-right: 50px;
}

div.itemName {
    font-size: 25px;
    font-weight: 450;
}

div.Othermatches{
    text-align: right;
    font-size: 15px;
    font-weight: 450;
}

div.Othermatches:hover{
    text-decoration: underline;
    opacity: 0.8;
    cursor: pointer;
}

div.GradeOffered{
    font-size: 15px;
    font-weight: 450;
}

div.address {
    font-size: 15px;
    font-weight: 450;
}

div.ExternalAccountTypeName {
    font-style: italic;
    font-size: 25px;
    font-weight: 550;

}

/* Button Row */

div.row.confirmMatch {
    text-align: center;
    margin-top: 50px;
}

div.row.confirmMatch>span.label:hover,
span.label.signIn:hover {
    cursor: pointer;
    opacity: .8;
}

span.label {
    display: inline-block;
    width: 200px;
    font-size: 25px;
    line-height: 35px;
    margin-left: 20px;
    margin-right: 20px;
}


/* Loader */

div.loader {
    display: none;
    position: relative;
    left: 50%;
    top: 100px;
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.spinner {
    /* margin: 100px auto 0; */
    width: 70px;
    text-align: center;
    display: none;
  }
  
  .spinner > span {
    width: 10px;
    height: 10px;
    background-color: white;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
  }
  
  .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }

  .spinner .activeusers {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }


.loader::before {
    animation: 2.5s linear infinite spinner;
    animation-play-state: inherit;
    border: solid 10px #cfd0d1;
    border-bottom-color: #e50918;
    border-radius: 50%;
    content: "";
    height: 150px;
    width: 150px;
    position: absolute;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}