﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element 
 Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column */

.dl-horizontal dt {
    white-space: normal;
}

 /*Set widths on the form inputs since otherwise they're 100% wide*/ 
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="select"] {
    max-width: 100%;
}

 /*Responsive: Portrait tablets and up*/ 
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }
    .body-content {
        padding: 0;
    }
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #66cfe1;
    border-color: #dee1e6
}


.login-card {
    padding: 40px;
    width: 100%;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

    .login-card h1 {
        font-weight: 100;
        text-align: center;
        font-size: 2.3em;
    }

    .login-card input[type=submit] {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        position: relative;
        top: 12px;
        left: 0px;
        height: 50px;
    }

    .login-card input[type=text], input[type=password] {
        height: 44px;
        font-size: 16px;
        width: 100%;
        margin-bottom: 10px;
        -webkit-appearance: none;
        background: #fff;
        border: 1px solid #d9d9d9;
        border-top: 1px solid #c0c0c0;
        /* border-radius: 2px; */
        padding: 0 8px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

        .login-card input[type=text]:hover, input[type=password]:hover {
            border: 1px solid #b9b9b9;
            border-top: 1px solid #a0a0a0;
            -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
            -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
        }

.login {
    text-align: center;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    padding: 0 8px;
    /* border-radius: 3px; */
    /* -webkit-user-select: none;
  user-select: none; */
}

.login-submit {
    /* border: 1px solid #3079ed; */
    border: 0px;
    color: #fff;
    text-shadow: 0 1px rgba(0,0,0,0.1);
    background-color: #9d9d9d;
    /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#4787ed)); */
}

    .login-submit:hover {
        /* border: 1px solid #2f5bb7; */
        border: 0px;
        text-shadow: 0 1px rgba(0,0,0,0.3);
        background-color: #60c2db;
        /* background-image: -webkit-gradient(linear, 0 0, 0 100%,   from(#4d90fe), to(#357ae8)); */
    }

.login-card a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    opacity: 0.6;
    transition: opacity ease 0.5s;
}

    .login-card a:hover {
        opacity: 1;
    }

.login-help {
    width: 100%;
    text-align: center;
    font-size: 12px;
}



.cardform {
    padding: 40px;
    width: 100%;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

    .cardform input[type=text], .cardform input[type=password], .cardform input[type=date], .cardform input[type=DateTime], .cardform input[type=Number], .cardform input[type=Email] {
        padding: 15px 20px;
        border-radius: 1px;
        margin: 5px auto;
        background-color: #f7f7f7;
        border: 1px solid silver;
        font-size: 15px;
        -webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
        box-shadow: inset 0 1px 5px rgba(0,0,0,0.2), 0 1px rgba(255,255,255,.8);
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: background-color .5s ease;
        -moz-transition: background-color .5s ease;
        -o-transition: background-color .5s ease;
        -ms-transition: background-color .5s ease;
        transition: background-color .5s ease;
    }

    .cardform input[type=submit] {
        font-family: 'Open Sans Condensed', sans-serif;
        text-transform: uppercase;
        outline: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        background-color: #5C8CA7;
        padding: 10px;
        color: white;
        border: 1px solid #3498db;
        border-radius: 3px;
        font-size: 1.5em;
        font-weight: bold;
        margin-top: 5px;
        cursor: pointer;
        position: relative;
        top: 0;
        left: 0px;
    }

/**/ /**/ /**/ /**/ /**/ /**/

.registration-form {
    font-family: 'Open Sans Condensed', sans-serif;
    width: 98%;
    min-width: 98%;
    position: relative;
    padding: 40px;
    background-color: #F7F7F7;
    margin: 0 auto 10px;
    border-radius: 2px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

    .registration-form .fieldset {
        background-color: #d5d5d5;
        border-radius: 3px;
    }

    .registration-form legend {
        text-align: center;
        background: #364351;
        width: 100%;
        padding: 30px 0;
        border-radius: 3px 3px 0 0;
        color: white;
        font-size: 2em;
    }

.fieldset form {
    border: 1px solid #2f2f2f;
    margin: 0 auto;
    display: block;
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 0 0 3px 3px;
}

.placeholder #registration-form label {
    display: none;
}

.no-placeholder #registration-form label {
    margin-left: 5px;
    position: fixed;
    display: block;
    color: grey;
    text-shadow: 0 1px white;
    font-weight: bold;
}

.registration-form label {
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}


/* all */
::-webkit-input-placeholder {
    text-shadow: 1px 1px 1px white;
    font-weight: bold;
}

::-moz-placeholder {
    text-shadow: 0 1px 1px white;
    font-weight: bold;
}
/* firefox 19+ */
:-ms-input-placeholder {
    text-shadow: 0 1px 1px white;
    font-weight: bold;
}
/* ie */

.registration-form input[type=text], .registration-form input[type=password], .registration-form input[type=date], .registration-form input[type=DateTime], .registration-form input[type=Number], .registration-form input[type=Email] {
    padding: 15px 20px;
    border-radius: 1px;
    margin: 5px auto;
    background-color: #f7f7f7;
    border: 1px solid silver;
    font-size: 15px;
    -webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.2), 0 1px rgba(255,255,255,.8);
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    -ms-transition: background-color .5s ease;
    transition: background-color .5s ease;
}

.registration-form styled-select {
    padding: 15px 20px;
    border-radius: 1px;
    margin: 5px auto;
    background-color: #f7f7f7;
    border: 1px solid silver;
    font-size: 15px;
    outline: none;
    border-color: silver;
    background-color: white;
}

.registration-form select {
    padding: 15px 20px;
    border-radius: 1px;
    margin: 5px auto;
    background-color: #f7f7f7;
    border: 1px solid silver;
    font-size: 15px;
    outline: none;
    border-color: silver;
    background-color: white;
}

.no-placeholder #registration-form input[type=text] {
    padding: 10px 20px;
}

.registration-form input[type=text]:active, .placeholder #registration-form input[type=text]:focus {
    outline: none;
    border-color: silver;
    background-color: white;
}

.registration-form input[type=submit] {
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    background-color: #91cedf;
    padding: 6px;
    color: white;
    border: 1px solid #fff;
    border-radius: 3px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 5px;
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0px;
}

    .registration-form input[type=submit]:hover {
        background-color: #2980b9;
    }

    .registration-form input[type=submit]:active {
        background: #5C8CA7;
    }

.parsley-error-list {
    background-color: #C34343;
    padding: 5px 11px;
    margin: 0;
    list-style: none;
    border-radius: 0 0 3px 3px;
    margin-top: -5px;
    margin-bottom: 5px;
    color: white;
    border: 1px solid #870d0d;
    border-top: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    top: -1px;
    text-shadow: 0px 1px 1px #460909;
    font-weight: 700;
    font-size: 12px;
}

.parsley-error {
    border-color: #870d0d !important;
    border-bottom: none;
}

.registration-form select {
    width: 100%;
    padding: 5px;
}

::-moz-focus-inner {
    border: 0;
}


.mGrid {
    width: 100%;
    background-color: #fff;
    margin: 5px 0 10px 0;
    border: solid 1px #525252;
    border-collapse: collapse;
}

    .mGrid td {
        padding: 2px;
        border: solid 1px #c1c1c1;
        color: #717171;
        height: 20px;
    }

    .mGrid th {
        padding: 4px 2px;
        color: #fff;
        background: #424242 url(grd_head.png) repeat-x top;
        border-left: solid 1px #525252;
        font-size: 0.9em;
    }

    .mGrid .alt {
        background: #fcfcfc url(grd_alt.png) repeat-x top;
    }

    .mGrid .pgr {
        background: #424242 url(grd_pgr.png) repeat-x top;
    }

        .mGrid .pgr table {
            margin: 5px 0;
        }

        .mGrid .pgr td {
            border-width: 0;
            padding: 0 6px;
            border-left: solid 1px #666;
            font-weight: bold;
            color: #fff;
            line-height: 15px;
        }

        .mGrid .pgr a {
            color: #666;
            text-decoration: none;
        }

            .mGrid .pgr a:hover {
                color: #000;
                text-decoration: none;
            }

#forma > div > div.row > table th {
    background-color: #F7F7F7;
    color: #333;
    font-weight: bold;
}

#forma > div > div.row > table th, table td {
    padding: 5px;
    border-color: #ccc;
}

padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}

#forma > div > div.row > table > tbody > tr > td {
    display: inline;
}

    #forma > div > div.row > table > tbody > tr > td > a, #adminedit > div > div.row > table > tbody > tr > td > span {
        position: relative;
        float: left;
        padding: 8px 12px;
        line-height: 1.42857143;
        text-decoration: none;
        color: #009BEE;
        background-color: #ffffff;
        border: 1px solid #dddddd;
        margin-left: -1px;
    }

    #forma > div > div.row > table > tbody > tr > td > span {
        position: relative;
        float: left;
        padding: 8px 12px;
        line-height: 1.42857143;
        text-decoration: none;
        margin-left: -1px;
        z-index: 2;
        color: #fff;
        background-color: #5bc0de;
        border-color: #dddddd;
        cursor: default;
    }

    #forma > div > div.row > table > tbody > tr > td:first-child > a, #adminedit > div > div.row > table > tbody > tr > td:first-child > span {
        margin-left: 0;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
    }

    #forma > div > div.row > table > tbody > tr > td:last-child > a, #adminedit > div > div.row > table > tbody > tr > td:last-child > span {
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px;
    }

    #forma > div > div.row > table > tbody > tr > td > a:hover, #adminedit > div > div.row > table > tbody > tr > td > span:hover, #adminedit > div > div.row > table > tbody > tr > td > a:focus, #adminedit > div > div.row > table > tbody > tr > td > span:focus {
        color: #d58512;
        background-color: #eeeeee;
        border-color: #dddddd;
    }
