﻿body {
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    min-height: 100vh;
    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 width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 100%;
}

a:hover {
    text-decoration: none;
}


.nav-top {
    margin-top: 0;
    background-color: #6091ba;
    height: 50px;
}

.navbar-nav a {
    color: white;
}

.navbar-default .navbar-nav li > a,
.navbar-default .navbar-nav li > a:hover,
.navbar-default .navbar-nav li > a:focus {
    color: white;
}

.top-icon {
    font-size: 1.5em;
    margin-top: 15px;
    color: white;
    margin-right: 10px;
}

.logo-div {
    margin-top: 20px;
    padding-bottom: 20px;
}

#loginLink, #registerLink {
    color: aliceblue;
}

.login-div {
    border: 1px solid #6091ba;
    padding: 0;
    margin-top: 50px;
}

.login-header {
    background-color: #6091ba;
    color: white;
    padding: 10px 30px;
}

.login-footer {
    background-color: aliceblue;
    padding: 10px 30px;
    margin-bottom: 0;
    border-top: 1px solid gray;
}

.main-content {
    background: url(images/Group.png) no-repeat center;
}

.input {
    padding-left: 30px;
}

.login-input {
    width: 95%;
}

@media only screen and (min-width: 768px) {
    /* For desktop  */
    .short-input {
        width: 120%;
    }
}

.signin {
    margin: 5px 5% 3% 5%;
    width: 90%;
}


signin-label {
    margin-left: 100px;
    margin-bottom: 20px;
}

.side-nav {
    margin-bottom: 1px;
    padding: 10px;
}

.icn {
    color: grey;
    margin-right: 15px;
}

.feed-type {
    padding: 30px;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

div.feed-type a {
    color: white;
}

table.dataTable tbody tr {
    background-color: transparent !important;
}


fieldset {
    border: 1px solid #ddd !important;
    margin: 0;
    min-width: 0;
    padding: 10px;
    position: relative;
    border-radius: 4px;
    background-color: #f5f5f5;
    padding-left: 10px !important;
}

legend {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
    width: 35%;
    border: 1px solid white;
    border-radius: 4px;
    padding: 5px 5px 5px 10px;
    background-color: lightgreen;
}

div.comment {
    border-radius: 15px;
    color: #6091ba !important;
    padding: 13px 20px;
    margin-bottom: 20px;
    background-color: antiquewhite;
}

div.admin {
    margin-left: 50px;
    background-color: azure;
}

.redirect-message {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    /*opacity:0;*/
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

    .redirect-message div {
        width: 600px;
        position: relative;
        margin: 20% auto;
        padding: 20px;
        border-radius: 10px;
        background: #fff;
        text-align: center;
    }









* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Droid Sans', sans-serif;
    outline: none;
}

::-webkit-scrollbar {
    background: transparent;
    width: 5px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #03b2ac;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

body {
    background-color: white;
}

#loading {
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: black;
    opacity: 0.8;
    position: absolute;
    z-index: 99999999;
    display: none;
}

#contents {
    position: relative;
    transition: .3s;
    margin-left: 290px;
    background-color: white;
    /*background: #03b2ac; 
    background: -moz-radial-gradient(center, ellipse cover, #03b2ac 0%, #065eab 100%); 
    background: -webkit-radial-gradient(center, ellipse cover, #03b2ac 0%,#065eab 100%); 
    background: radial-gradient(ellipse at center, #03b2ac 0%,#065eab 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03b2ac', endColorstr='#065eab',GradientType=1 );*/
    min-height: 100vh;
}

.margin {
    margin-left: 0 !important;
}
/* Start side navigation bar  */

.side-nav {
    float: left;
    height: 100%;
    width: 290px;
    color: #CCC;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: .3s;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 9999999;
    background: #03b2ac; /* Old browsers */
    background: -moz-linear-gradient(top, #03b2ac 0%, #065eab 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #03b2ac 0%,#065eab 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #03b2ac 0%,#065eab 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03b2ac', endColorstr='#065eab',GradientType=0 ); /* IE6-9 */
}

    .side-nav .close-aside {
        position: absolute;
        top: 7px;
        right: 7px;
        cursor: pointer;
        color: #EEE;
    }

    .side-nav .heading {
        background-color: transparent;
        padding: 15px;
        overflow: hidden;
        border-bottom: 1px solid white;
    }

        .side-nav .heading > img {
            border-radius: 50%;
            width: 50px;
            height: 50px;
            float: left;
            width: 28%;
        }

    .side-nav .info {
        float: left;
        width: 69%;
        margin-left: 3%;
    }

    .side-nav .heading .info > h3 {
        margin: 0 0 5px;
    }

        .side-nav .heading .info > h3 > a {
            color: white;
            font-weight: 100;
            margin-top: 4px;
            display: block;
            text-decoration: none;
            font-size: 18px;
        }

            .side-nav .heading .info > h3 > a:hover {
                color: red;
            }

    .side-nav .heading .info > p {
        color: white;
        font-size: 13px;
    }
    /* End heading */

    .side-nav .categories > li {
        padding: 17px 40px 17px 30px;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        cursor: pointer;
    }

        .side-nav .categories > li > a {
            color: white;
            text-decoration: none;
        }
            /* Start num: there are three options primary, danger and success like Bootstrap */
            .side-nav .categories > li > a > .num {
                line-height: 0;
                border-radius: 3px;
                font-size: 14px;
                color: #FFF;
                padding: 0px 5px;
            }

.dang {
    background-color: #f35959;
}

.prim {
    background-color: #0275d8;
}

.succ {
    background-color: #5cb85c;
}
/* End num */
.side-nav .categories > li > a:hover {
    color: gray;
}

.side-nav .categories > li > i {
    font-size: 18px;
    margin-right: 5px;
    color: white;
}

.side-nav .categories > li > a:after {
    content: "\f053";
    font-family: fontAwesome;
    font-size: 11px;
    line-height: 1.8;
    float: right;
    color: #AAA;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.side-nav .categories .opend > a:after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
/* End categories */
/* Start dropdown menu */
.side-nav .categories .side-nav-dropdown {
    padding-top: 10px;
    padding-left: 30px;
    list-style: none;
    display: none;
}

    .side-nav .categories .side-nav-dropdown > li > a {
        color: #AAA;
        text-decoration: none;
        padding: 7px 0;
        display: block;
    }

.side-nav .categories p {
    margin-left: 30px;
    color: #535465;
    margin-top: 10px;
}

/* End dropdown menu */

.show-side-nav {
    -webkit-transform: translateX(-290px);
    -moz-transform: translateX(-290px);
    transform: translateX(-290px);
}


.welcome {
    color: white;
}

    .welcome .content {
        /*background-color:  white;*/
        padding: 15px;
        margin-bottom: 25px;
        background: #03b2ac; /* Old browsers */
    }

    .welcome h2 {
        font-family: Calibri;
        font-weight: 100;
        margin-top: 0;
    }

/* Start statistics */
.statistics {
    color: #CCC;
}

    .statistics .box {
        background-color: #313348;
        padding: 15px;
        overflow: hidden;
    }

        .statistics .box > i {
            float: left;
            color: #FFF;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            line-height: 60px;
            font-size: 22px;
        }

        .statistics .box .info {
            width: auto;
        }

            .statistics .box .info h3 {
                margin: 5px 0 5px;
                display: inline-block;
            }

            .statistics .box .info p {
                color: #BBB;
            }

/* End statistics */




/* Start media query */
@media (max-width: 767px) {
    .side-nav .categories > li {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .side-nav .search {
        padding: 10px 0 10px 30px;
    }
}











.main-color {
    color: #ffc107;
}

.warning {
    background-color: #f0ad4e;
}

.danger {
    background-color: #d9534f;
}

.success {
    background-color: #5cb85c;
}

.inf {
    background-color: #5bc0de;
}


/* Start bootstrap */
.navbar-right .dropdown-menu {
    right: auto !important;
    left: 0 !important;
}

.navbar-default {
    border: none !important;
    border-radius: 0 !important;
    background: #03b2ac; /* Old browsers */
    background: -moz-linear-gradient(left, #03b2ac 0%, #065eab 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #03b2ac 0%,#065eab 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #03b2ac 0%,#065eab 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03b2ac', endColorstr='#065eab',GradientType=1 ); /* IE6-9 */
}

    .navbar-default .navbar-nav > li > a {
        color: #EEE !important;
        line-height: 55px !important;
        padding: 0 10px !important;
    }

    .navbar-default .navbar-brand {
        color: #FFF !important;
    }

    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > li > a:hover {
        color: #EEE !important;
    }

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav > .open > a:hover {
        background-color: transparent !important;
        color: #FFF !important;
    }

    .navbar-default .navbar-brand {
        line-height: 55px !important;
        padding: 0 !important;
    }

        .navbar-default .navbar-brand:focus,
        .navbar-default .navbar-brand:hover {
            color: #FFF !important;
        }

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin: 0 !important;
}

@media (max-width: 767px) {
    .navbar > .container-fluid .navbar-brand {
        margin-left: 15px !important;
    }

    .navbar-default .navbar-nav > li > a {
        padding-left: 0 !important;
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border: none !important;
    }
}

.navbar-default .navbar-nav > li > a {
    float: left !important;
}

    .navbar-default .navbar-nav > li > a > span:not(.caret) {
        background-color: #e74c3c !important;
        border-radius: 50% !important;
        height: 25px !important;
        width: 25px !important;
        padding: 2px !important;
        font-size: 11px !important;
        position: relative !important;
        top: -10px !important;
        right: 5px !important;
    }

.dropdown-menu > li > a {
    padding-top: 5px !important;
    padding-right: 5px !important;
}

.navbar-default .navbar-nav > li > a > i {
    font-size: 18px !important;
}




/* Start media query */

@media (max-width: 767px) {
    #contents {
        margin: 0 !important;
    }

    .statistics .box {
        margin-bottom: 25px !important;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #CCC !important;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
            color: #FFF !important;
        }

    .navbar-default .navbar-toggle {
        border: none !important;
        color: #EEE !important;
        font-size: 18px !important;
    }

        .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
            background-color: transparent !important;
        }
}


tr:hover, td:hover, tr td a:hover {
    color: #03b2ac;
}


.payment {
    width: 250px;
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 25px;
}




/*beginning login css*/
div.loginImage {
    /*background: #e7fdfc;*/
    /*background: -moz-linear-gradient(top, #03b2ac 0%, #065eab 100%); 
    background: -webkit-linear-gradient(top, #03b2ac 0%,#065eab 100%); 
    background: linear-gradient(to bottom, #03b2ac 0%,#065eab 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03b2ac', endColorstr='#065eab',GradientType=0 );*/
    height: 100vh;
}

.login {
    height: 100vh;
    padding: 30px;
    background: #f2f2f2; /* Old browsers */
}

.logo {
    width: 200px;
    margin: 32px auto;
}

.remember-forgot-password {
    text-align: center;
    font-size: 13px;
    margin-top: 8px;
}

.remember-me {
    margin-bottom: 16px;
}

.forgot-password {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.register {
    text-align: center;
    margin: 32px auto 24px auto;
    width: 250px;
    font-weight: 500;
}

.text {
    margin-right: 8px;
}

.title {
    text-align: center;
    margin-bottom: 50px;
}

.submit-button {
    width: 100%;
    margin: 16px auto;
    display: block;
}


@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .login {
        padding: 20px auto;
    }
}

.circle {
    position: absolute;
    bottom: -17em;
    left: -8em;
    width: 80%;
    height: 110%;
    background-color: #e7fdfc;
    border-radius: 50%;
}

.circle2 {
    position: absolute;
    top: -9em;
    right: -10em;
    width: 40%;
    height: 50%;
    background-color: lightblue;
    border-radius: 50%;
}

.img-div1 {
    position: absolute;
    top: 6%;
    left: 33%;
    width: 40%;
    text-align: center;
    color: #03b2ac;
}

.img-div2 {
    position: absolute;
    bottom: 2%;
    left: 40%;
    width: 20%;
    text-align: center;
    color: #03b2ac;
}

.img-div3 {
    position: absolute;
    top: 32%;
    left: 20%;
    text-align: center;
    width: 20%;
    text-align: center;
    color: #03b2ac;
}

.img-div4 {
    position: absolute;
    bottom: 2%;
    left: 4%;
    width: 20%;
    text-align: center;
    color: #03b2ac;
}

/*end login css*/

.dataTables_filter label, .dataTables_length label, #table_id_info {
    color: #6091ba !important;
}

div.table-div {
    background-color: #f2f2f2 !important;
    color: #6091ba !important;
}


.validation-summary-errors li {
    background-color: #f2dede;
    border-color: #eed3d7;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    list-style-type: none;
}

.footer-div {
    position: fixed;
    padding: 7px;
    width: 120%;
    bottom: 0;
    display: block;
    background-color: #065eab;
    color: white;
}

.increase-width {
    width: 120% !important;
}

#SearchString {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-group.required .control-label:after, .form-group.required label:after {
    content: "*";
    color: red;
}

.form-group.doubleRequired .control-label:after {
    content: "**";
    color: red;
}

@media (min-width: 767px) {
    .footer-div {
        margin-left: -290px;
    }
}








