/* css for dom */
body {
    background-color: #090e0f;
}

* { box-sizing: border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; }

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* cursors */
.drag {
    cursor: move; /* whatever it is doesn't even support URL cursors */
    cursor: -webkit-grab; /* Chrome 1-21, Safari 4+ */
    cursor:    -moz-grab; /* Firefox 1.5-26 */
    cursor:         grab; /* W3C standards syntax, should come least */
}

.dragging {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor:    -moz-grabbing;
    cursor:         grabbing;
}

.chatTitle {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(../../../images/Loader/chatTitle.png);
    padding-top: 1px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    color: white;
    text-shadow: 1px 1px 1px rgba(2, 2, 2, 0.75);
    text-align: center;
}

.chatTitleHover {
    width: 100%;
    height: 100%;
    background-image: url(../../../images/Loader/chatTitleHover.png);
}

.chatWindow {
    overflow: hidden;
    background-color: rgba(15,15,15,0.8);;
}

.chatContainer {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 30px;
    box-sizing: content-box;
}

.chatMessage {
    font-family: Arial, sans-serif;
}

.locationFallback {
}

.locationBG {
}

.bottomUp {
    min-width: 100%;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bottomUp img {
    position: absolute;
    min-width: 100%;
    min-height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-width: 120px;
    border-image: url(../../../images/Loader/Vignette.png) 120 120 120 120 repeat;
}

/* outdated */
.itemName {
    color: green;
   	font-weight: bold;
}

.description {
    font-family: garamond, serif;
    color: white;
    font-weight: normal;
}