﻿/*!
 * account-creation.css
 */

/* type */
h1 {
    margin-bottom: 1.5em;
    line-height: 1.5;
}
    h1 span.success {
        color: #208D90;
    }
    h1 span.error {
        color: #EB4747;
    }

/* portal header */
#portal-header {}
#portal-header .container-fluid {
    min-width: 900px;
    max-width: 900px;
    background: none;
    /*text-align: center;*/
}
#portal-header h1 {
    margin-bottom: 0.75em;
    line-height: 1.5;
}


/* content and forms */
#content form {
    padding: 0;
}
#content fieldset .panel-content {
    padding: 30px;
}

.security-box {
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: #D6D5D3;
    width: 300px;
    height: 40px;
}

/* content block */
.account-block {
    margin: 0 0 30px 0;
    padding: 20px 30px;
    border: 1px solid #CCCCCC;
    position: relative;
    background-color: #F7F6F4;
    font-size: 14px;
    line-height: 20px;
    /* Border radius */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /* Box shadow */
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
    .account-block p {
        margin: 1em 0;
    }

.account-block-centered {
    padding: 20px 150px;
    text-align: center;
}
    .account-block-centered a {
        font-size: 12px;
    }

.account-block-white {
    background-color: #ffffff;
    /* Box shadow */
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
}

/* table wrapper */
.table-wrapper {
    position: relative;
    margin: 0 0 1em 0;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    width: 80%;
    /* Border radius */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    /* Box shadow */
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.table-wrapper-option {
    position: absolute;
    top: 18px;
    right: -18%;
    width: 100px;
    font-size: 12px;
    line-height: 1.2;
}

/* tables */
.table-ac {}
.table-ac thead > tr > th,
.table-ac thead > tr > th:first-child,
.table-ac tbody > tr > td,
.table-ac tbody > tr > td:first-child {
    padding: 2px;
    border: 0;
    background-color: transparent;
    color: #5E5F5F;
    font-size: 12px;
}

.table-ac tbody > tr:hover > td {
    background-color: transparent;
}

.table-ac .active {}
.table-ac .active:before {
    color: #008E90;
    content: "• "
}




