﻿#board {
    display: flex;    
    width: 1200px;
    height: 740px;
    padding-top: 160px;
    background-size:cover;    
    background-repeat: no-repeat;
    padding-left: 60px;
    position:relative;
}

#className {
    position: absolute;
    top: 30px;
    font-size: 140%;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

#classImage {
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    transform: translateZ(0); /* Have to add this as a way to make the drop shadow work on iOS. This forces hardware acceleration. */
    position: absolute;
    top: 70px;
}

#classImageBox {
    background-image: url('/images/profile/profilecharbox.png');
    background-size: cover;
    width: 300px;
    height: 400px;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
}

.form-guild-label {
    color: #F1C835;
    padding-top: 24px;
    padding-left: 12px;
    text-shadow: 2px 2px 2px black;
    font-size: 14px;
}

.form-guild-box {
    background-image: url('/images/profile/formbox.png');
    background-repeat: no-repeat;
    height: 175px;
    width: 375px;    
}

.form-guild-notes-back {
    background-image: url('/images/profile/formnotes.png');
    background-repeat: no-repeat;
    height: 190px;
    width: 350px;   
}

.form-guild-notes {
    border: 0px;
    color: #F1C835;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin-top: 35px;
    margin-left: 35px;
    width: 275px;
    height: 125px;
    resize: none;
}

.form-guild-notes:focus {
    outline: none;
}

.form-guild-select {
    border: 0px;
    width: 275px;
    height:30px;
    color: white;
    margin-left: 40px;
    margin-top: 36px;
    background-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-guild-select option {
    background-color: #333333;
}

.form-guild-select:focus {
    outline: none;
}

@media (max-width: 600px) 
{
    #left {
        margin: auto;
    }

    #middle {  
        margin: auto;   
    }

    #right {
        margin: auto;
    }

    #board {
        flex-direction: column;
        padding-top: 0px;
        padding-left: 0px;
        width: auto;
        height: auto;
        background-color: #9D8969;
        background-image: none !important;
        padding-bottom:8px;
    }
}