body {
    user-select: none;
    background-color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
}

.hide {
    display: none !important;
}

.spacebar {
    display: inline !important;
    background: rgb(239,242,221);
    background: linear-gradient(180deg, #00afe6 0%, #0080ff 100%);
    border: 2px solid #000;
    border-bottom-width: 5px;
    color: #fff;
    border-radius: 4px;
    padding: 0px;
    padding-right: 30px;
    margin-right: 5px;
}

#game {
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

#counter {
    text-align: center;
    font-size: 8rem;
    color: #d7261c;
    height: 8rem;
    font-weight: bold;
}

#counter span {
    display: block;
    text-align: center;
}

#per_second {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #000;
}

.sbs {
    display: block;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 15px;
    padding-top: 40px;
    padding-bottom: 10px;
}

.sb1 {
    cursor: pointer;
    border: 5px solid #000401;
    border-bottom-width: 25px;
    color: #fff;
    border-radius: 15px;
    transition: transform 80ms ease-in;
    background: linear-gradient(180deg, #4E545C 0%, #8D9797 100%);

}

.sb1:hover {
    transition: transform 80ms ease-in;
    color: #E5E8E8;
}

.sb1:active, .sb_active {
    border-color: #E5E8E8;
    border-bottom-width: 15px;
    padding-top: 50px;
    transform: scaleX(90%) scaleY(90%);
    transition: transform 10ms ease-in;
}

/* Items */

#items {
    margin-bottom: 0;
    list-style: none;
    margin-bottom: 0;
    margin-top: 1rem;
    padding: 10px;
    overflow-y: auto;
}

.item {
    display: block;
    border: 1px solid #483D21;
    border-radius: 5px;
    margin: 0;
    margin-bottom: 15px;
    padding: 15px;
    opacity: .5;
    background-color: #e9e9e1;
}

.item_last_child {
    margin-bottom: 80px;
}

.item span {
    display: block;
}

.item_buyable {
    cursor: pointer;
    opacity: 1.0;
    background: #a9def9;
    background: linear-gradient(180deg, #87d7f4 0%, #f0f8ff 100%);
}

.item_buyable:hover {
    background: #a2d2ff;
    background: linear-gradient(180deg, #00a2e9 0%, #a0d9f6 100%);
}

.item_buyable:active {
    background: #a9def9;
    background: linear-gradient(180deg, #87d7f4 0%, #f0f8ff 100%);
}

.ititle {
    font-size: 1.5rem;
    margin-top: 0;
}

.idesc {
    font-size: 1rem;
}

.cost {
    margin-top: 15px;
}

.icost {
    display: inline !important;
}

.ilvl {
    margin-top: 0;
    font-size: 3rem;
    float: right;
    margin-top: auto;
    margin-bottom: auto;
}

._ilvl {
    display: inline !important;
    font-size: 1rem;
}

/* Particles */
.particle {
    width: auto;
    position: absolute;
    pointer-events: none;
    left: 0;
    right: 0;
}

.score {
    font-weight: bold;
    font-size: 1.3rem;
    color: #483D21;
    z-index: 100;
}

.spacebar_particle {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -100;

    width: 5px;
    height: 15px;
}