canvas{
	display: none;
}

body.hangar{
    transition: 1s;
    text-align: center;
}

#content{
    display: inline-block;
    width: 100%;
    /* max-width: 800px; */
/*     border: 1px solid; */
}

#content input{
    width: 100%;
    margin: 20px 0;
}


#choice{
/*     border: 2px solid */
    /* border: 2px solid; */
    display: inline-block;
}

#license{
    margin-top: 50px;
    display: inline-block;
    padding-bottom: 50px;
}

#hangar{
    position: fixed;
    z-index: 99;
    right: 20px;
    bottom: 40px;
}

.pilot{
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    cursor: pointer;
    margin: 20px;
    margin-bottom: 170px;
}

.pilot-meta{
    position: absolute;
    border: 1px solid grey;
    background: rgba(10, 5, 0, .9);
    font-size: .9rem;
    top: 80%;
    width: 110%;
    padding: 7px;
    text-align: left;
    z-index: 9;
}
.pilot-meta .key{
    color: white;
    text-shadow: 0px 0px 5px orange;
}
.pilot-meta .pilot-coin{
    /* position: absolute; */
    right: 5px;
    top: 3px;
    color: var(--coin);
    float: right;
}

.pilot .frame{
    width: 100%;
    height: 100%;
    border-radius: 200px;
    border: 1px solid grey;
    overflow: hidden;
    transition: .3s;
}

.pilot img{
    width: 200px;
    height: auto;
}

.pilot:hover .frame{
    box-shadow: 0px 0px 5px white;
}


.pilot.selected .frame{
    border: 1px solid wheat;
    box-shadow: 
    0px 0px 20px orange, 
    0px 0px 60px blue, 
    0px 0px 120px violet
/*     0px 0px 120px violet; */
}

.license{
    display: inline-block;
    border: 1px solid grey;
    margin: 10px;
    padding: 20px;
    max-width: 250px;
    background:rgba(25, 10, 0, .7);
    cursor: pointer;
}

.pilot .button{
    position: absolute;
    z-index: 99;
    right: -20px;
    top: 20px;
}

.pilot-row{
    /* margin: 4px 0; */
    display: inline-block;
    line-height: 1.5rem;
}

.pilot-row .key{
    margin-right: 5px;
}