.wtar-table {
    width: 600px;
    border-spacing: 10px;
    border-collapse: separate;
}

.wtar-card {
    width: 100px;
    min-height: 150px;
    height: fit-content;
    background-size: cover;
    cursor: pointer;
    position: relative;
    perspective: 1000px;
    transition: transform 0.25s;
    transform-style: preserve-3d;
    cursor: pointer;
    backface-visibility: hidden;
}
            
.flipped {
    transform: rotateY(360deg);
}

.wtar-card-back {
    background-image: url('../images/back.gif');
}

#wtar-layer1 {
    position: absolute;
    width: 100px;
    height: 60px;
    z-index: 1;
    left: 185px;
    top: 318px;
    visibility: hidden;
}

.card-show {
    position: fixed;
    width: 33%;
    right: 5%;
    top: 10%;
    border: 1px solid currentColor;
    padding: 1%;
    background-color: rgb(240, 240, 240);
}

.title-show {
    border: 2px solid currentColor;
    padding: 4px 6px 4px 6px;
    clear: both;
    position: absolute;
    top: 154px;
}

.title-show h5 {
    font-size: 0.8rem !important;
    margin: 0;
    padding: 8px 8px 2px 2px;
}

.title-show div span {
    color: gray;
    content: "+";
    transition: 0.2s ease;
    position: absolute;
    top: 4px;
    right: 4px;
    height: 0.5rem;
    width: 0.5rem;
    z-index: 999;
    display: inline-block;
    border: 1px solid currentColor;
    border-radius: 1rem;
    padding: 2px;
    background: currentColor;
    transition: 0.2s all;
}

.title-show div span.shown {
    content: "-";
    color: #44AA44;
}


