#emptyProfile {
    width: 60px;
    height: 60px;
    margin: 4px;
    border-radius: 8px;
    border: 2px dotted #777777;
    float: left;
}

#addplayer {
    text-align: center;
}

#addplayer input {
    background: rgb(22, 32, 44);
    border: 1px solid #6495ED;
    border-radius: 5px;
    color: #999999;
    height: 22px;
    width: 210px;
    margin: 10px;
}

.playerboxaddloading {
    opacity: 0.4;
}

.playerboxempty {
    display: none;
}

.playerbox {
    width: 237px;
    height: 74px;
    border: 2px solid #777777;
    border-radius: 10px;
    display: inline-block;
    margin: 0 2px;
    background: radial-gradient(ellipse farthest-corner at 0px 0px, rgba(47, 137, 188, 0.6) 0%, rgba(47, 137, 188, 0.1) 50%);
}

.playerbox img {
    width: 60px;
    height: 60px;
    margin: 4px;
    border-radius: 8px;
    /*border: 3px solid #777777;*/
    float: left;
}

.playerboxinfo {
    width: 160px;
    float: right;
}

.deleteX {
    height: 17px;
    width: 17px;
    float: right;
    margin: 5px;
    border: 2px solid #777777;
    border-radius: 4px;
}

.playerbox h4 {
    margin-bottom: 0;
    max-height: 36px;
    max-width: 160px;
}

.playerbox p {
    margin-top: 0;
}

/* entire container, keeps perspective */
.flip-container {
    perspective: 1000px;
}

.flip-container, .front, .back {
    width: 237px;
    height: 74px;
}

/* flip speed goes here */
.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */
.front, .back {
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

}

/* front pane, placed above back */
.front {
    z-index: 1;
}

/* back, initially hidden pane */
.back {
    transform: rotateX(-180deg);
    animation: toFront 0.3s linear normal forwards;
}

.vertical.flip-container {
    position: relative;
}

.vertical.flip-container.turned .back {
    animation-delay: 0.3s;
    animation: toBack 0.3s linear normal forwards;
}

@keyframes toBack {
    0% {
        z-index: 0;
    }
    100% {
        z-index: 1;
    }
}

@keyframes toFront {
    0% {
        z-index: 1;
    }
    100% {
        z-index: 0;
    }
}

.vertical.flip-container .flipper {
    transform-origin: 100% 37px; /* half of height */
}

.vertical.flip-container.turned .flipper {
    transform: rotateX(-180deg);
}

.borderonline {
    border: 3px solid #6495ED;
}

.borderplaying {
    border: 3px solid #90ba3c;
}

.borderoffline {
    border: 3px solid #777777;
}

#users {
    display: inline;
}

#datadisplay {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    border: 6px solid #161C28;
    border-radius: 15px;
    padding: 20px;
    min-height: 300px;
}

#datadisplay button {
    background: linear-gradient(to bottom, rgba(47, 137, 188, 1) 5%, rgba(23, 67, 92, 1) 95%);
    padding: 11px;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    color: #A4D7F5;
    border-radius: 3px;
    width: 100px;
    margin: 20px;
}

#stuff {
    min-height: 164px;
}

#rolled a img {
    background: gold;
    height: 140px;
    border: 8px solid gold;
    border-radius: 20px;
    margin: 10px;
    box-shadow: 0 0 11px yellow;
}

#rolled img {
    height: 140px;
}

#rolled h1 {
    margin: 0;
}

#rolled h5 {
    margin-bottom: 20px !important;
    cursor: pointer !important;
    text-decoration: underline !important;
}

#rolled p {
    width: 700px;
    text-align: center;
    margin: 10px auto 20px;
    line-height: 22px;
}

.nulldisplay {
    display: none !important;
}

#gamedisplay a img {
    width: 200px; /* 150px; */
    height: 93px; /*70px; */
    background: rgb(36, 104, 142);
    border: 4px solid rgb(35, 104, 142);
    border-radius: 20px;
    margin: 12px;
    box-shadow: 0 0 8px cornflowerblue;

}

#addbutton {
    background: rgb(22, 32, 44);
    border: 1px solid #375283;
    border-radius: 5px;
    color: #999999;
    height: 22px;
    width: 184px;
}

#infobutton {
    background: rgb(22, 32, 44);
    border: 1px solid #375283;
    border-radius: 5px;
    color: #999999;
    height: 22px;
    width: 22px;
}

#newPlayerIdField {
    margin-bottom: 5px;
}

#pw_adbox_77390_5_0 {
    margin: 0 auto;
    display: table;
}

@media only screen and (min-device-width: 651px) {
    .gamebanner {
        width: 245px;
    }

    #freshPage p {
        width: 700px;
        text-align: center;
        margin: 0 auto 110px;
        line-height: 22px;
    }

    #playerboxadd {
        width: 236px;
        height: 74px;
        display: inline-block;
        border: 2px dotted #777777;
        border-radius: 10px;
    }
}

@media only screen and (max-device-width: 650px) {
    .gamebanner {
        width: 100%;
    }

    #freshPage p {
        text-align: center;
        margin: 0 auto 110px;
        line-height: 22px;
    }

    #content {
        width: auto !important;
    }

    #playerboxadd {
        width: 236px;
        height: 74px;
        border: 2px dotted #777777;
        border-radius: 10px;
        margin: 0 auto;
    }

    #footer {
        background-color: #000000;
        min-height: 100px;
    }

    #footer_content {
        display: block;
        text-align: center;
        margin: 0 auto;
        text-transform: uppercase;
        width: auto;
    }

    #footer_content a {
        text-transform: uppercase;
        color: #777777;
        text-decoration: none;
        margin: 11px;
        font-size: 12px;
    }

    #footer_content a:hover {
        text-transform: uppercase;
        color: #ffffff;
        font-size: 12px;
    }

    #footer_content p {
        text-transform: none;
        color: #777777;
        text-decoration: none;
        font-size: 10px;
    }

    #pw_adbox_77390_5_0 {
        transform: scale(0.5, 0.5);
        display: block;
    / / margin : 0 auto;
        width: 100%;
        margin: 0 0 0 -35%;
    }
}