:root
{
    background-color: black;
}

body
{
    background-color: black;
}

.description
{
    background-color: black;
    padding-bottom: 10px;
}

h3
{
    font-family: serif;
    color: var(--title-color);
    font-size: 1em;
    width: 100%;
    text-align: center;
    line-height: 70px;    
    text-transform: uppercase;
}

.description .content
{
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
}

.description .content > *
{
    margin-right: 10px;
}

.description .content > *:last-child
{
    margin-right: 0;    
}

.description .content .left
{
    width: 23%;    
}

.description .content li.merged
{
    border-bottom: 0;
    margin-bottom: 0;
}

.description .content .center
{
    width: 54%;
}

.description .content .center ul li:first-child p
{
    font-size: 1.5rem;
    font-weight: bold;
}

.description .content .center li:last-child
{
    height: 100%;
}

.description .content ul
{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    padding-inline-start: 0;   
    height: 100%; 
}

.description .content ul li
{
    background-color: var(--background-color);
    margin-bottom: 10px;
    border: 1px solid rgb(48, 48, 48);
}

.description .content ul li:last-child
{
    margin-bottom: 0;    
}

.description .content .right
{
    width: 23%;
    margin-right: 0;
}

.statbox
{
    height: 100%;
    flex: 1 0 auto;
}

.statbox li.merged
{
    flex: 1 0 auto;
    position: relative;
}

li.bg-wrapper
{
    position: relative;
}

li.bg-wrapper *
{
    position: relative;
    z-index: 1;
}

li.bg-wrapper .bg
{
    background-image: var(--sdata-url);
    background-color: inherit;
    background-size: cover;    
    background-blend-mode: color-dodge;
    opacity: 0.07;
    z-index: 0;

    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}

ul p
{
    color: var(--font-color);
    text-align: center;
    text-align-last: center;
    margin: 10%;
}

.refbox
{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.refbox a
{
    width: 50%;
    margin: 10%;
    transition: all 300ms;
}

.refbox a:hover
{
    transform: scale(1.1);
}


.refbox-mobile
{
    display: none !important;
    margin-top: 10px;
    margin-right: 0;
    margin-block-start: 10px !important;
}

.refbox-mobile div:first-child
{
    border-bottom: 1px solid rgb(48, 48, 48);
}

.refbox-mobile .refbar
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.refbox-mobile a
{
    width: 15vh;
    min-width: 70px;
    margin: 30px;
}

.highlightitem
{
    background-color: rgb(37, 33, 51);
    border: 1px solid var(--title-color);
    max-width: 1280px;
    margin: 0 auto;
}

.fullitem
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullitem > *
{
    margin: 10px;
    width: 40%;
}

.ug-gallery-wrapper
{
    margin: 0 auto 0 auto;
}

.text
{
    line-height: 1.25rem;
    text-align: justify;
    text-align-last: center;
}

@media only screen and (max-width: 1024px)
{
    .description .content
    {
        flex-direction: column;
    }

    .description .content .left
    {
        display: none;
    }

    .description .content .center
    {
        width: 100%;
    }

    .description .content .right
    {
        margin-top: 10px;
        width: 100%;
    }

    .refbox-mobile
    {
        display: flex !important;
    }

    .fullitem
    {
        display: block;
    }

    .fullitem > *
    {
        margin: 10px auto 10px auto;
        width: inherit;
    }

}

