
body {
    font-family: "Shantell Sans", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "BNCE" 0,
        "INFM" 0,
        "SPAC" 0;
    color: blue;
    font-size: 3em;
    letter-spacing: -2px;
}

body.dark {
    background-color: #090529;
}

body.dark input {
    background-color: #090529 !important;
    border-color: blue !important;
}



h2 {
    font-size: 2rem;
}

hr {
    border-top: 4px solid blue;
    border-radius: 20%;
}

.btn.btn-outline-dark {
    border-color: #03bd46 !important;
    color: #03bd46;
    border-width: 5px;
    font-weight: 500;
}

.btn.btn-outline-dark:hover {
    background-color: #03bd46 !important;
    color: white;
}

#place-picker {
    display: block;
    max-width: 400px;
    text-transform: capitalize;
}


#done {
    font-size: 1.7rem;
    /* border-radius: 35px; */
    transition: all 1s;
    position: relative;
    top: 0.7em;
    left: -0.3em;
}

.btn-next {
    font-size: 2rem;
    /* border-radius: 35px; */
    padding: 0.1rem 1.4rem;
    border-width: 5px;
}

.btn-next i {
    position: relative;
    top: 3px;
}

.capitalize {
    text-transform: capitalize;
}

.place-picker-container {
    transition: all 2s ease-in-out;
    opacity: 1.0;
}

.disabled {
    opacity: 0 !important;
}

.shuffling {
    opacity: 0.2;
}

.option-container {
    transition: all 1s;
    padding-right: 2rem;
}

.option {
    color: blue;
    font-size: 3rem;
    transition: all 1sec;
    /* border: 4px solid blue; */
    /* border-radius: 25px; */
}

.option span {
    display: inline-block;
    /* text-decoration: underline;
    text-decoration-thickness: 4px; */
}

@keyframes type{ 
  from { width: 0; } 
} 

.pointer {
    cursor: not-allowed;
}

div.option {
    padding: 8px 24px;
}

input.option, input.option:active, input.option:focus {
    letter-spacing: -2px;
    color: blue;
}

div.option > * {
    transition: all 2s;
}

.strikethrough > span {
    text-decoration: line-through;
    opacity: 0.2;
}

#coin-holder {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-top: 150px;
    z-index: 999;
    transition: all 3s ease-in-out;
}

#coin-container {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    margin: auto;
    z-index: 1;
}
#coin {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 3.0s linear;
}

.title {
    display: inline-block;
}

.face {
    position: absolute;
    /* font-family: 'Staatliches', sans-serif; */
    color: blue;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 1em;
    justify-content: center;
    font-size: 6rem;
    border-radius: 50%;
    /* border: 10px double #222; */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    text-align: center;
    background: white;
    border: 10px solid blue;
    text-shadow: 0px -1px 0px rgba(255,255,255,.8);
    z-index: 999;
    /* text-transform: uppercase; */
}
.face.back {
    transform: rotateX(180deg);
    box-sizing: border-box;
    z-index:999;
}

.picker-key {
    border: 0;
    color: blue;
    font-size: 2rem;
    position: relative;
    text-align: right;
}
.picker-key:focus {
    color: blue !important;
}

.player {
    border: 3px solid blue;
    /* border-radius: 15px; */
    padding: 0.5rem 1rem;
    font-size: 2rem;
}

.player.turn {
    color: white;
    background-color: blue;
}

/* flyover */
#flyover  {
    position: fixed;
    bottom: -10%;
    left: -10%;
    transform: rotate(-45deg);
    transition: all 3s linear;
    font-size: 2em;
}

#flyover.fly {
    bottom: 500%;
    left: 500%;
}

#flyover i {
    position: absolute;
}

#flyover i::after {
    content: '';
    background-color: rgba(0,0,255,0.1);
    display: block;
    height: 0.5em;
    width: 3em;
    position: relative;
    left: -3em;
    top: -0.75em;
    box-shadow: 0 0 21px 16px rgba(0,0,255,0.1);
    border-radius: 100% 10px 10px 100%;
    transition: all 3s linear;
}

#flyover.fly i::after {
    width: 10em;
    left: -10em;

}

.wiggle {
    color: #03bd46;
    letter-spacing: 5px;
    animation: wiggle 1s;
    transition: all 0.5s ease-in-out;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
   80% { transform: rotate(0deg); }
   85% { transform: rotate(10deg); }
   95% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg);  }
}

/* placeholder stuff */
input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    blue;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    blue;
   opacity:  1;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    blue;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    blue;
}
input::-ms-input-placeholder { /* Microsoft Edge */
   color:    blue;
}

input::placeholder { /* Most modern browsers support this now. */
   color:    blue;
}

.controls, #increment-key {
    transition: all 0.5s;
    opacity: 0.1;
    cursor: pointer;
    position: relative;
    top: -4px;
}

.controls:hover, #increment-key:hover, #increment-key:active {
    opacity: 1;
}

.controls {
    font-size: 0.5em;
    position: relative;
    top: 2px;
}

/* christmas */
#santa-hat {
    width: 43px;
    z-index: 999;
    transform: rotate(-20deg);
    left: -9px;
    top: -15px;
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(150,0,0,0.9);
    
    font-size: 5rem;
    color: #fff;
    transition: 0.5s all ease-in-out;
    text-align: center;
    display: grid;
}

#overlay > p {
    margin: auto;
}

#overlay .no-no {
    font-family: 'Special Elite';
}

.player {
    color: blue;
    border-color: blue;
}

option.blue, .player.blue {
    color: blue;
}

option.red, .player.red {
    color :red;
}

option.green, .player.green {
    color: green;
}

option.magenta, .player.magenta {
    color: magenta;
}

option.orange, .player.orange {
    color: orangered;
}

option.slate, .player.slate {
    color: darkslategray;
}

option.black, .player.black {
    color: black;
}

.social-distance {
    display: inline-block;
    position: relative;
    top: 2px;
    font-size: 0.5em;
    margin-right: 10px;
    opacity: 0.5;
}

.social-distance:last-of-type {
    display: none;
}

.btn, .btn-lg {
    border-radius: 0;
}

/* .masked {
    position: relative;
    padding-bottom: 40px;
    display: inline-block;
    padding-bottom: 40px;
}

.masked .player {
    padding-bottom: 55px;
} */

/* .mask {
    position: absolute;
    width: 100%;
    height: 50%;
    display: inline-block;
    left: 0;
    top: 55%;
    background-color: #222;
    border: 5px solid #000;
    border-radius: 10px;
    background-image: url('/images/grit.png');
} */