.container
{
    min-height: 100vh;
}

*
{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.clickable
{
    cursor: pointer;
}

.hidden-kh, .hidden-kh *
{
    opacity: 0 !important;
    cursor: default !important;
}

.view-box
{
    display: flex;
    min-height: 200px;

    padding-top: 5px;
}

.view-box .rotation-view
{
    display: inline-flex;
    width: fit-content;
    height: fit-content;

    padding: 15px;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    align-content: flex-start;
}

.view-box .sets-view
{
    display: inline-flex;
    width: fit-content;
    height: fit-content;

    padding: 15px;

    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
}
.view-box .sets-view .set-view
{
    display: flex;
    width: fit-content;

    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    align-content: flex-start;
}

.rotation-view .badge {
    margin: 0 1px;
}

.skill-button
{
    height: 50px;
    width: 50px;

    margin: 10px;

    box-shadow: 0 0 5px 2px dodgerblue;
    background-color: dodgerblue;
    cursor: pointer;

    transition: height 150ms, width 150ms, margin 150ms;
}
.skill-button:hover
{
    height: 44px;
    width: 44px;

    margin: 13px;
}
.skill-button.ogcd
{
    box-shadow: 0 0 5px 2px green;;
    background-color: green;
}

.skill
{
    height: 50px;
    width: 50px;

    margin: 5px;

    cursor: pointer;
}
.skill.ogcd
{
    height: 35px;
    width: 35px;

    margin: 3px;
}