.splash {
    background-color: black;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.2s linear;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
}

.splash .window {
    overflow: hidden;
    border: 1px solid gray;
    width: 1cm;
    height: 1cm;
    background-color: white;
    border-radius: 1ex;
    box-shadow: 0 0 2ex black;
    font-family: sans-serif;
    padding: 1ex;
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(1.000, -0.530, 0.405, 1.425), width 0.2s cubic-bezier(1.000, -0.530, 0.405, 1.425), height 0.2s cubic-bezier(1.000, -0.530, 0.405, 1.425);
    display: flex;
    flex-direction: column;
}

.splash .header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 1cm;
}

.splash .header h1 {
    margin: 0;
    padding: 0;
    font-size: large;
    text-align: center;
    flex: 1;
}

.splash .header button {
    border: 0;
    width: 1cm;
    height: 1cm;
    background-color: transparent;
}

.splash .content {
    border: 0;
    opacity: 0;
    transition: opacity 0.2s linear;
    transition-delay: 0.0s;
    overflow-y: auto;
    flex: 1;
}

.splash .buttons {
    margin-top: 1ex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splash .buttons button {
    min-width: 1.3cm;
    min-height: 1cm;
    margin-left: 0.5ex;

    background-color: #3498DB;
    border: 0;
    border-bottom: 5px solid #2980B9;
    text-shadow: 0 -2px #2980B9;
    border-radius: 10px;
    color: #FFF;
    outline: none;
    padding-left: 1ex;
    padding-right: 1ex;
}
.splash .buttons button:before {
    content: " ";
}
.splash .buttons button:after {
    content: " ";
}
.splash .buttons button:first-child {
    margin-left: 0;
}
.splash .buttons button:disabled {
    color: #bfbfbf;
    background-color: #949494;
    border-bottom: 5px solid #797979;
    text-shadow: 0 -2px #797979;
    box-shadow: inset 1px 1px 0 0 #797979;
}
.splash .buttons button:active {
    border-bottom: 2px solid #2980B9;
    opacity: 0.7;
}
.splash .buttons {
    margin-bottom: 1ex;
}

.splash .item {
    border: 1px solid gray;
    box-shadow: rgba(0, 0, 0, 0.5) 0.2ex 0.2ex 0.5ex;
    margin: 1ex;
    padding: 1ex;
    display: flex;
    align-items: center;
    background-color: rgb(238, 238, 238);
    border-radius: 1ex;
}

.splash .buy {
    min-width: 2.1cm;
    min-height: 1cm;
    margin-left: 0.5ex;

    background-color: #3498DB;
    border: 0;
    border-bottom: 5px solid #2980B9;
    text-shadow: 0 -2px #2980B9;
    border-radius: 10px;
    color: #FFF;
    outline: none;
}
.splash .owned {
    background-color: #3c9;
    border-bottom-color: #3a8;
    text-shadow: 0 -2px #3a8;
}

.splash .buy:active {
    border-bottom: 2px solid #2980B9;
    opacity: 0.7;
}
