@charset "utf-8";
/* CSS styles for index.php */

.page_section {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 100px;
}

.team_box {
    width: 250px;
    height: 388px;
    position: relative;
    float: left;
    margin: 0 30px 30px 30px;
}

.team_box_area {
    width: 1024px;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    margin: 0 auto;
}

.team_name {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    border-radius: 7px 7px 0 0;
    text-align: center;
    color: white;
    background-color: #DD372C;
    font-weight: bold;
}

.team_image {
    position: absolute;
    top: 33px;
    left: 0px;
    width: 250px;
    height: 312px;
    background-size: cover;
}

.team_title {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 30px;
    font-size: 12px;
    border-radius: 0 0 7px 7px;
    text-align: center;
    background-color: black;
    color: white;
    padding: 5px 0 5px 0;
}

.team_admin_buttons {
    width: 20px;
    height: 100px;
    position: absolute;
    left: -22px;
    top: 5px;
}

.team_admin_buttons img {
    margin-left: 2px;
    margin-right: 2px;
}

/*******************************************************************************
 * FORM STYLES
 ******************************************************************************/
#team_form_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    background-color: rgba(0,0,0,0.7);
}

#team_form {
    position: absolute;
    width: 1024px;
    min-height: 300px;
    background-color: #C1C1C1;
    top: -30px;
    left: calc(50% - 512px);
    border-radius: 5px;
    padding: 20px 10px 20px 20px;
    z-index: 9999;
}

#team_form_title {
    position: relative;
    float: left;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 40px;
    font-size: 30px;
    color: #DD372C;
    font-weight: bold;
}

.form_field {
    position: relative;
    float: left;
}

.form_field input {
    width: calc(100% - 30px);
}

.form_field select {
    width: calc(100% - 10px);
    height: 30px;
}

.form_field textarea {
    width: calc(100% - 20px);
    height: 200px;
}

.form_spacer {
    width: 100%;
    height: 20px;
    position: relative;
    float: left;
}

/*******************************************************************************
 * DELETE MESSAGE
 ******************************************************************************/
#team_delete_box {
    width: 1024px;
    position: relative;
    float: left;
    margin-left: calc(50% - 512px);
    border: 2px solid red;
    color: red;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    margin-bottom: 30px;
}