[v-cloak] {
  display: none;
}

.itemname{
    color: #ff8000;
}

body{
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;

    cursor: default;

    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
    font-family: Verdana,"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;
    font-size: 13px;

    background-color: black;
    background-image: url("darkfantasy.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 0px 0px 0px 0px;

}

#app{
    margin: 16px 16px 16px 16px;
    padding: 16px 16px 16px 16px;
    background-image: url("bg.png");
    background-repeat: repeat;
    color: #ccc;
    border-style: solid;
    border-width: 1px;
    border-color: #333333;
    border-radius: 1px;
}

.btn {
    /*background: ;*/
    background: linear-gradient(-180deg, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.3)), url("buttonbg.png") no-repeat;
    /*box-shadow: 2px 2px 2px 1px #000 ;*/
    box-shadow: 0px 0px 32px 0px #222200 inset, 0px 0px 32px 0px #222200;

    border-width: 1px;
    border-style: groove;
    border-color: #330000;
    border-radius: 3px;
    border-top: 2px;

    width: 100%;
    color: #ccc;
}

.btn:hover{
    background: linear-gradient(-180deg, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.0)), url("buttonbg.png") no-repeat;
    box-shadow: 0px 0px 32px 0px #333300 inset, 0px 0px 32px 0px #222200;

    background-color: black;
    color: #ccc;
    border-color: #222200;
}

.btn:focus{
    color: #ccc;
    border-color: #330000;
}

.btn-default:active{
    box-shadow: 0px 0px 32px 0px #000000 inset, 0px 0px 32px 2px #222200;
    background: linear-gradient(-180deg, rgba(0,0,0,0.8) 90%, rgba(0,0,0,0.3)), url("buttonbg.png") no-repeat;

    /*box-shadow: 0px 0px 32px 0px #222200 inset, 0px 0px 32px 0px #222200;*/
    color: #ccc !important;
    border-color: #333300 !important;
}

.btn-default:disabled{
    box-shadow: 0px 0px 32px 0px #000000 inset, 0px 0px 32px 2px #222200;
    background: linear-gradient(-180deg, rgba(0,0,0,0.8) 90%, rgba(0,0,0,0.3)), url("buttonbg.png") no-repeat;

    /*box-shadow: 0px 0px 32px 0px #222200 inset, 0px 0px 32px 0px #222200;*/
    color: #ccc !important;
    border-color: #333300 !important;
}

/*remove all focus shit*/
textarea:hover, 
input:hover, 
textarea:active, 
input:active, 
textarea:focus, 
input:focus,
button:focus,
button:active,
button:hover
{
    outline:0px !important;
    -webkit-appearance:none;
}

/* style our hp bars */

progress {
    background-color: #f3f3f3;
}

progress::-webkit-progress-value {
    /*transition : width 0.05s ease;*/
}
progress::-moz-progress-value {
    /*transition : width 0.05s ease;*/
}

progress::-webkit-progress-bar {
    background-color: #222222;
    border: 1px;
    border-color: #FFFFFF;
}
progress::-webkit-progress-value {
    background-color: #FF0000;
}

progress::-moz-progress-bar {
    background-color: #FF0000;
}
.progresslabel {
    /*position: relative;*/
    /*top: -1.5em;*/
    margin-left: 0%;
}

/* Tooltip container */
.ttip {
    position: relative;
    display: inline-block;
}

.left {
    width: 120px;
    top: 100%;
    left: -300%; 
    margin-left: -80px;
}

.right {
    top: -5px;
    left: 105%;
}

.top {
    width: 120px;
    bottom: 100%;
    left: 50%; 
    margin-left: -80px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.bottom {
    width: 120px;
    top: 100%;
    left: 50%; 
    margin-left: -80px; 
}

/* Tooltip text */
.ttip .ttiptext {
    visibility: hidden;
    width: 160px;
    /*bottom: 100%;*/
    
    /*margin-left: -80px;*/
    background-color: black;
    color: #fff;
    text-align: left;
    padding: 5px 0;
    padding-left: 16px;
    padding-right: 16px;

    border-radius: 1px;
    border-style: solid;
    border-width: 1px;
    border-color: #555;
    z-index: 10;
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
}

/* Show the tooltip text when you mouse over the tooltip container */
.ttip:hover .ttiptext {
    visibility: visible;
    pointer-events: none;
}

.table-responsive, table {
    background-image: url("bluebg.png");
    background-repeat: repeat;
    width: 100%;
    color: #ccc;

    border-collapse: collapse;
    border: 1px solid #333;
    box-shadow: 2px 2px 4px 4px black, 0px 0px 32px 4px #000033 inset;
}

th, td {
    padding: 8px;
    text-align: left;
    /*border-bottom: 1px solid #333;*/
    border-bottom: 1px solid #222;
}
tr:hover{
    background-color:#110000;
    /*cursor: pointer;*/
}


.modal-mask {
    text-shadow: none;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: table;
    transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
    width: 300px;
    margin: 0px auto;
    padding: 20px 30px;
    background-image: url("bluebg.png");
    background-repeat: repeat;
    border-radius: 2px;
    border-collapse: collapse;
    border: 1px solid #333;
    box-shadow: 2px 2px 4px 4px black, 0px 0px 32px 4px #000033 inset;
    transition: all .3s ease;
}

.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

/*
 * the following styles are auto-applied to elements with
 * v-transition="modal" when their visiblity is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter, .modal-leave {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.bubble {
    text-shadow: none;
    font-size: 1.5em;
    color: #ccc;
    position: absolute;
    width: 250px;
    height: 150px;
    padding: 5px;
    margin-left: 16px;
    margin-top: 0px;
    background: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 10px 0px #8F8F8F;
    -moz-box-shadow: 2px 2px 10px 0px #8F8F8F;
    box-shadow: 2px 2px 10px 0px #8F8F8F;
    -webkit-transition: all 2s;
    transition: all 2s;
}



