﻿body {
    padding-bottom: 20px;
}


/* Set 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 width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}


.navbar {
    height: 150px !important;
    background-color: #f05c54;
    opacity: 0.9;
}

.navbar-brand {
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

 .header-title{
    color:white;
    text-decoration:none;
}

.header-title:hover {
    color: white;
    text-decoration: none;
}

    .header-title:active {
        color: white;
        text-decoration: none;
    }


.login-form {
    width: 340px;
    margin: 50px auto;
    font-size: 15px;
   
}

    .login-form form {
        margin-bottom: 15px;
        background: #f7f7f7;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        padding: 30px;
        border: 1px solid #F04F55;
        border-radius: 5px
    }


.btn-primary {
    color: white;
    background-color: #F04F55;
    border-color: #F04F55;
}

    .btn-primary:hover {
        color: white;
        background-color: #f05c54;
        border-color: #f05c54;
    }


.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #F04F55 !important;
    color: white !important;
}



.modal {
    text-align: center;
}


.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}


.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}



.newfooter {
    clear: both;
    position: absolute;
    width: 100%;
    background-color: #f05c54;
    color: white;
    text-align: center;
}



.panel-default > .panel-heading {
    color: white;
    background-color: #f05c54 !important;
    border-color: #ddd !important;
}


@media (max-width: 768px) {


    

    


    .header-title {
        color: white;
        text-decoration: none;
        font-size: 13px;
    }


   
}





.register-form {
    width: 340px;
    margin: 50px auto;
    font-size: 15px;
}

    .register-form form {
        margin-bottom: 15px;
        background: #f7f7f7;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        padding: 30px;
        border: 1px solid #f05c54;
        border-radius: 5px
    }




.navbar-default .navbar-toggle {
    border-color: #fff !important;
}


    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff !important;
    }




.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
     background-color: white !important; 
    border-radius: 4px;
    text-transform:lowercase;
}



    .breadcrumb > li + li:before {
        padding: 0 5px;
        color: grey !important;
        content: "/\00a0";
    }


    .breadcrumb > .active {
        color: #F04F55 !important;
        text-transform: uppercase;
    
    }

    .breadcrumb a {
        color: #808080 !important;

    }









.newtable > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 8px;
    padding-left: 8px;

    line-height: 1.42857143;
    vertical-align: top;
    border-top: 0px solid #ddd !important;
}








.badge {
    padding: 1px 9px 2px;
    font-size: 12.025px;
    font-weight: bold;
    white-space: nowrap;
    color: #ffffff;
    background-color: #999999;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}

    .badge:hover {
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
    }

.badge-error {
    background-color: #b94a48;
}

    .badge-error:hover {
        background-color: #953b39;
    }

.badge-warning {
    background-color: #f89406;
}

    .badge-warning:hover {
        background-color: #c67605;
    }

.badge-success {
    background-color: #468847;
}

    .badge-success:hover {
        background-color: #356635;
    }

.badge-info {
    background-color: #3a87ad;
}

    .badge-info:hover {
        background-color: #2d6987;
    }

.badge-inverse {
    background-color: #333333;
}

    .badge-inverse:hover {
        background-color: #1a1a1a;
    }




.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }



.border-radius {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}