@charset "UTF-8";

#area-picker li {
    list-style-type: none;
}
#area-picker {
    z-index:1000;
    background-color:white;
    border-style:solid;
    border-width:1px;
    border-color:gray;
    padding: 15px 30px 15px 30px;
    text-align:left;
    width:250px;
}

body {
    padding-top:0px;
    overflow:hidden;
}

button {
    border-radius: 12px;
    margin:8px;
}

button:focus {
    outline: none;
}

#results {
    float: right;
    font-size:24px;
    margin-right:40px;
    margin-top:10px;
}

#results .result-box-correct {
    background-color:green;
    padding:5px;
    border-radius:8px;
    color:white;
}

#results .result-box-incorrect {
    background-color:red;
    padding:5px;
    border-radius:5px;
    color:white;
}

text {
    font-size:5px;
}


input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 4px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
  }
  input:hover {
    background: #9faab7;
  }
  input:checked {
    background: #40e0d0;
  }
  input:checked::before {
    height: 20px;
    width: 20px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 26.66667px;
    text-align: center;
    line-height: 20px;
  }
  input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #40e0d0;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
  }
  input.radio {
    border-radius: 50%;
  }
  input.radio::after {
    border-radius: 50%;
  }
  
  #result-box button {
      width:100px;
  }

  .tip-box {
    border-style: solid;
    border-width: 1px;
    border-color: #1abc9c;
    border-top-width: 15px;
    padding: 8px;
    max-width:400px;
    border-radius: 10px;
    border-width:  15px 5px 5px 5px;
    z-index: 5;
    background-color: white;
    padding-top: 15px;
    margin: auto;
  }

  .tip-box .ok-button-container {
      text-align:right;
  }

  .tip-box-dlg {
      margin-top:200px;
  }

  .tip-box-dlg h4 {
      margin-bottom:20px;
  }

  #next-flag {
      width:100px;
      border-style:ridge;
      max-height:63px;
      z-index:1001;
  }

  #show-labels-container {
      float:right;
      margin-top:12px;
      display:none;
  }

  .flags #show-labels-container {
      display:inline-block;
  }

  .svg-left-menu {
    position:fixed;
    background-color:lightgray;
    max-width:70px;
    text-align:center;
    border-style:solid;
    border-width:1px;

}

.svg-left-menu a, .svg-left-menu a:visited {
    color:white;
    text-decoration:none;
}

#results-so-far table {
    font-size:1.25rem;
    font-weight:500;
    margin:auto;
}

#results-so-far .ncol {
    text-align:right;
    padding-left:20px;
}

.presidents {
    padding-left:80px;
    padding-top:40px;
}

.president-box {
    text-align:center;
    display:inline-block;
    min-width:170px;
}

.president-box img {
    width:100px;
    height:100px;
}

.president-prompt {
    position:fixed;
    text-align:center;
    background-color:white;
    padding:5px;
    border-style:ridge;
    border-width:3px;
    z-index:100;

}
.finished .president-prompt {
    display:none;
}
.president-prompt img {
    width:70px;
}

.president-box img:hover {
    background-color:#81a1c1!important;
}

.president-box img {
    opacity:1;
}

.pres-missed {
    position:absolute;
    font-size:40px;
    color:red;
    left:20px;
    display:none;
}

.pres-hit {
    position:absolute;
    display:none;
    color:green;
    background-color:white;
    margin-left:2px;
    margin-top:2px;
    padding-right:2px;
}

.pres-hit .fa {
    font-size:20px;
}

.president-box .president-name {
    display:none;
}

.president-box {
    min-height:215px;
}

.president-name {
    max-width:100px;
}

.pres-progress-bar {
    height: 15px;
    border-style: solid;
    width: 70px;
    display: inline-block;
    border-width: 1px;
    border-color: gray;
}

.pres-progress {
    width:100%;
    height:100%;
}

body {
    overflow:scroll;
}

.president-names-template {
    width:200px;
    height:200px;
    border-radius:50%;
    display:inline-block;
    vertical-align:top;
}
.president-names-template .the-letter {
    position:absolute;
    width:200px;
    height:200px;
    border-radius:50%;
    text-align:center;
    line-height:200px;
    border-style:solid;
    background-color:gray;
    color:white;
    font-size:50px;
}
.president-names-template:hover .the-letter {
    display:none;
}

.president-names-template li:hover {
    background-color:black;
    color:white;
    border-radius:5px;
    cursor:pointer;
}
.president-numbers .president-image-prompt {
    display:none;
}
.presidents .president-number-prompt {
    display:none;
}

.president-numbers .presidents .president-number-prompt {
    display:block;
}

.president-names-template.reveal-names .the-letter {
    display:none;
}
.president-names-template.reveal-names .reveal-name {
    color:white;
    background-color:green;
}