/* GLOBAL STUFF */

.theme{
    user-select: none;
}
.view{
    display: inline-block;
    border: 1px solid rgb(50,50,50);
    margin: 0 4px;
    border-radius: 5px;
    vertical-align: top;
    padding: 10px;
}
.panel{
    background: rgb(15, 15, 15);
    box-shadow: inset 0px 0px 10px black;
    border: 1px solid rgb(50,50,50);
    border-radius: 5px;
    margin: 10px 0;
    display: inline-block;
    width: 100%;
    padding: 10px;
}

.model-summary{
    margin: 2px;
    vertical-align: top;
}
.pop-item .model-summary{
    display: inline-block;
    width: auto;
    margin: 5px;
    max-width: 250px;
}
.pop-item .expl{
    text-align: center;
    margin-top:20px;
}
.model-summary .button.claim,
.model-summary .button.rm{
    font-size: .9rem;
}
.model-summary .button.claim{
    pointer-events: none;
    opacity: 0;
}
.model-summary:hover .button.claim{
    pointer-events: initial;
    opacity: 1;
}





/* MODEL SPECIFIC */
.summary-name{
    font-weight: bold;
    color: lightgrey;
}

.summary-desc{
    font-size: .9rem;;
}

.summary-created{
    font-size: .8rem;;
    text-align: right;
    margin-bottom: 5px;
}
.model-summary .button.rm{
    margin-top: 10px;
    background: linear-gradient( maroon, #100606 )
}
.model-summary .button.set{
    font-size: .9rem;
    margin: 0 2px;
}
.item-expl{
    color: lightblue;
}



#find-place input{
    width: 100%;
}
#my-places,
#find-place{
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
}
#my-places{
    width: 300px;
}
#my-places h3{
    margin-top: 0;
   	margin-bottom: 90px;
}
#find-place{
    margin-top: 20px;
    width: calc( 100% - 310px );
}
#find-place input{
    /* background: rgba(0,0,0,.7) */
}
.is-mobile #my-places,
.is-mobile #find-place{
    width: 100%;
}

#splash-logo{
    opacity: .2
}



@media screen and (max-width: 800px){
    #view-main,
    #view-p1{
        max-width: 100%;
        width: 100%;
    }
    #view-p1{
        position: relative;
        top: auto;
        margin-bottom: 10px;
    }
    #my-places h3{
   		margin-bottom: 20px;
	}	
}



/* ANIMS & MEDIA */
@keyframes selectedSummary {
  0% {
    box-shadow: 0px 0px 5px orange inset;
  }
  50% {
    box-shadow: 0px 0px 10px orange inset;
  }
  100% {
    box-shadow: 0px 0px 5px orange inset;
  }
}