#board-figure {
  position: relative;
  cursor: pointer;
}

.frame {
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn
}


@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}



#instructions-image {
  opacity: .8;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url('https://www.dartscore.uk/app/media/images/image.gif');
  background-size: cover;
}

#instructions {
  z-index: 1;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
}

#instructions p {
  color: white;
  font-size: 2em;
  position: absolute;
  z-index: 1;
  padding: 0.7em;
  text-align: center;
  top: 0;
  text-transform: uppercase;
  text-shadow: 2px 3px 6px black;
  line-height: 1.1;
}

#confirm {
  position: absolute;
  position: fixed;
  z-index: 111;
  background: #000000a1;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
}

#confirm_body {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #000;
  border-radius: 2px;
  max-width: 300px;
  top: 30%;
  position: relative;
}

.btn.dart {
  position: relative;
}

.btn.dart>span {
  position: absolute;
  left: 4px;
  font-weight: bold;
}

.avatar {
  background: none;
}

#calculator {
  position: relative;
}

#calculator figure {
  max-width: 100vmin;
  margin: 0 auto;
}

@media (orientation: landscape) {
  #calculator figure {
    max-width: 69.3vmin;
    margin: 0 auto;
  }
}


.form-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b9b9b9;
}

.form-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #b9b9b9;
}

.form-input:-ms-input-placeholder {
  /* IE 10+ */
  color: #b9b9b9;
}

.form-input:-moz-placeholder {
  /* Firefox 18- */
  color: #b9b9b9;
}

.navbar-section a,
#menuToggle a {
  text-transform: capitalize;
}

body {
  padding-top: 1rem;

}

#menuToggle {
  display: block;
  position: absolute;
  top: 0.4rem;
  margin-left: .4rem;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 25px;
  height: 4px;
  margin-bottom: 2px;
  position: relative;
  background: #4d4d4d;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 95px;
  background: #eee;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
  padding: 10px 0;
  font-size: 1.2em;
}

#menuToggle input:checked~ul {
  transform: none;
}