/* -----------------------------------------
   Custom.css - put your own changes here 
----------------------------------------- */
.loagingGif {
    margin: 10px auto;
    display: block;
    width: 80px;
}

.cw-game-box.added-to-nw-true {
    opacity: 0.3;
}

.add-tag, .remove-tag{
    cursor: pointer;
}

#game-drop-area {
    border: 4px dashed black;
    text-align: center;
    padding: 40px;
    margin: 40px;
}


.nw-game-box {
    border: 1px solid #ccc;
    padding: 3px;
    cursor: move;
    height: 80px;
    width: 130px;
    margin: 3px;
    position: relative;
}

    .nw-game-box:before {
        font-family: 'fontAwesome';
        content: "\f0c9";
        float: left;
        margin-right: 7px;
        color: #555;
    }

    .nw-game-box span {
        float: left;
        text-align: center;
        width: 100%;
    }

    .nw-game-box a {
        bottom: 0;
        position: absolute;
        width: 100%;
        left: 0;
    }
    
.checkbox-list-item .checkbox-custom {
    display: inline-block;
}

#images-holder ul {
    text-align: left;
    padding: 0;
}
#images-holder ul li {
    list-style: none;
    display: inline-block;
    padding: 5px;
}
#images-holder ul li img {
    width: 50px;
}
#images-holder ul li span {
    display: block;
    color: red;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    margin-top: 5px;
    cursor: pointer;
}

.copyTextBtn {
    font-size: small;
    cursor: pointer;
}

.copiedTextTooltip {
    color: darkgreen;
    display: none;
    font-weight: bold;
}

.parsableUa {
    cursor: help;
}

.memberWarningBar {
    display: none;
    color: white;
    background: #d53342;
    text-align: left;
    line-height: 2.5;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
}

#warningBarMsg {
    display: inline-block;
}

#warningBarMsg span {
    margin-right: 5px;
}

.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0deg);
    }

    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}