@charset "utf-8";

body {
    margin: 0%;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    background-image: url('background_texture.webp');
    background-attachment: fixed;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


/* cookies */

div#cookies {
    position: fixed;
    bottom: 0%;
    background-color: rgba(0, 0, 0, 0.76);
    width: 100%;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 1s;
}

#cookiesSpacer {
    max-width: 1080px;
    margin: 32px auto;
    display: flex;
    justify-content: space-around;

}


div#cookieButtons {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    flex: 1 0 auto;
    margin-left: 10px;
}

.AlphaButton {
    margin-left: 2em;
    border-radius: 5px;
    border: 0px;
    padding: 1em 1.5em;
    color: white;
    font-size: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


#Accept {
    background-color: rgb(0, 102, 255);
}

#Deny {
    background-color: rgb(128, 128, 128);
}

#Accept:hover {
    background-color: rgb(0, 69, 173);
}

#Deny:hover {
    background-color: rgb(78, 78, 78);
}

@media (max-width: 1023px) {
    #cookiesSpacer {
        flex-direction: column;
    }

}


/* characterInfo */

div#Beginning {
    display: flex;
    flex-flow: row wrap;
    max-width: 1080px;
    margin: auto;
    justify-content: space-around;
    transition: opacity 0.5s;
}

.characterInfo {
    background-position: center;
    background-size: cover;

}

.characterBox {

    display: flex;
    flex-flow: column wrap;
    border: 1px solid rgb(136, 136, 136);
    width: 300px;
    margin: 2% 0%;
    background-color: white;
    opacity: 0;
}

.characterNameImage {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-basis: auto;
}

.characterNameImage img {
    width: 20%;
    display: block;
    margin: 5%;
}

.characterNameImage div {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0%;
}

.characterNameImage div h2 {
    margin: 0%;
}

.characterNameImage div h6 {
    margin: 0%;
}


.characterNameImage div .Info {
    color: rgb(202, 202, 202);
}




.characterControls {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0px;
}

.characterControls button {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    font-size: 1.25em;
}


.characterControls button:hover {
    color: rgb(97, 97, 97);
}


#createCharacter {
    text-align: center;
    border: 0px;
    width: 100%;
    padding: 0% 370px;
    background: none;
}

#createCharacter button {
    background-color: rgb(0, 102, 255);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    font-size: 1.25em;
    height: 50px;
    margin: 5%;
}

#createCharacter button:hover {
    background-color: rgb(0, 69, 173);
    transition: background-color 0.2s;
}

/* character Creator */

#racePicker {
    opacity: 0;
    display: none;
    flex-flow: column wrap;
    max-width: 1080px;
    margin: auto;
    transition: opacity 0.5s;
}

#racePicker #Container div {
    flex: 1;
}

#RaceButtonContainer {
    width: 50%;
    margin: 0%;
    float: left;
}

button.sub {
    display: none;
    margin-left: 20px;
    width: calc(100% - 20px);
}

.BetaButton {
    width: 100%;
    margin-top: 20px;
    font-size: 2em;
    background-color: rgb(255, 255, 255);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: 2px solid rgb(172, 172, 172);
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1% 5%;
    height: 50px;
    box-sizing: border-box;
}

.BetaButton:hover {
    background-color: rgba(0, 0, 0, 0.096);
    transition: background-color 0.2s;
}


.BetaButton svg {
    width: 1em;
}

#RaceDisplay {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    width: 48%;
    margin: auto;
    float: right;
    top: 5%;
    height: 90vh;
    font-size: 1.25em;
    overflow-y: scroll;
}

#RaceDisplay p {
    font-size: 0.75em;
    text-indent: 50px;
}

#RaceDisplay::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#RaceDisplay {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#Container img {
    width: 50px;
}

b {
    font-size: 1.25em;
}

#classPicker {
    opacity: 0;
    display: none;
    flex-flow: column wrap;
    max-width: 1080px;
    margin: auto;
}