html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #000000 url(./loading3.gif) center center no-repeat;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 13px;
    line-height: 20px;
    height: 100%;
}

#container {
    height: 100%;
    width: 100%;
}

#info {
    font-size: 11px;
    position: absolute;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    border-radius: 3px;
    right: 5px;
    padding: 10px;
    z-index: 2;
    user-select: none;
}

.info-selected {
    color: #aaa;
    text-decoration: none;
    display: inline-block;
}

a {
    color: #aaa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.bull {
    padding: 0 5px;
    color: #555;
}

.texture-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texture-container__items {
    text-align: center;
    width: 100%;
    height: 60%;
    z-index: 1;
    display: block;
}

.texture-container__items__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 12.5%;
    cursor: pointer;
    border-radius: 0 15px 15px 0;
    transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
}

.texture-container__items__item:hover {
    background-color: #0f70f073
}

.texture-container__items__item img {
    height: 70%;
    margin: auto 0;
    max-width: 100%;
}