


.character {
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #ffffff40;
}

.character-header {
    margin-bottom: 1rem;
    border-bottom: 2px solid white;
    padding-bottom: 0.25rem;
}

.add-gap {
    margin-top: 1rem;
}

.refresh {
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ff0000a1;
    background: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.refresh[disabled] {
    color: #ffffff73;
}

.ilvl-past {
    color: #ffffff2f;
}












.guild-roster-list {
    /* display: flex;
    flex-flow: column; */
}


.guild-roster-list > a {
    color: #ffffff;
}

.guild-header {
    max-width: 800px;
    min-width: 300px;
    display: flex;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
}

.guild-header > div {
    width: 25%;
    text-align: center;
    cursor: pointer;
}

.guild-item {
    display: flex;
    flex-flow: row;
    margin-bottom: 1rem;
}

.guild-item > a {
    width: 100%;
    max-width: 800px;
    min-width: 300px;
}

.guild-item > a > div {
    display: flex;
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
}

.guild-item > a > div > * {
    width: 25%;
    text-shadow: 1px 1px 2px #000000;
    font-size: 20px;
}

.g-refresh, .g-delete {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
}

.g-name {
    text-align: left;
}

.g-realm {

}

.g-ilvl {

}

.g-score {

}

.g-demon-hunter { background-image: url(/res/images/class-banners/demon-hunter.png); }
.g-monk { background-image: url(/res/images/class-banners/monk.png); }
.g-warrior { background-image: url(/res/images/class-banners/warrior.png); }
.g-paladin { background-image: url(/res/images/class-banners/paladin.png); }
.g-hunter { background-image: url(/res/images/class-banners/hunter.png); }
.g-rogue { background-image: url(/res/images/class-banners/rogue.png); }
.g-priest { background-image: url(/res/images/class-banners/priest.png); }
.g-death-knight { background-image: url(/res/images/class-banners/death-knight.png); }
.g-shaman { background-image: url(/res/images/class-banners/shaman.png); }
.g-mage { background-image: url(/res/images/class-banners/mage.png); }
.g-warlock { background-image: url(/res/images/class-banners/warlock.png); }

/* check for screens with width < 600px */
@media screen and (max-width: 600px) {
    .guild-item > * {
        width: 33.3%;
    }

    .g-realm {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .guild-item > * {
        font-size: 16px;
    }
}