/*	
*	############################################################################################
*	
*	Bootstrap Dashboard Template
*	---------------------------------------------------------------------
*
*	Version: 	2.5
*	Author: 	Dinesh Munasinghe
*	Copyright: 	Copyright 2025 Dinesh Munasinghe
*	Last Updated: 27/9/2025
*
*   Changes: added "dm-card", enhance the card type 1 without button , button gradient, nav gradient
*   Profile stat, logo at nav bottom, component cards added, Table design,   FORM CONTROLS (Unified Modern Style)
*   DM Table Sub, more status choices
*	############################################################################################
*/



@import "components/_formcontrol.css";
@import "components/_mainpanel.css";
@import "components/_dmtable.css";
@import "components/_dmtablesub.css";
@import "components/_dmcard.css";
@import "components/_dmbuttons.css";
@import "components/_componentcard.css";
@import "components/_admindashboardcard.css";
@import "components/_gradientbuttons.css";
@import "components/_profile.css";
@import "components/_authforms.css";
@import "components/_chart.css"; /*to embe enhanced*/
/*@import "components/_headers.css";*/
@import "components/_fileupload.css";
@import "components/_activitylist.css";
@import "components/_popupwindow.css";
@import "components/_ColorfulIcons.css";
@import "components/_progresscycle.css";
@import "components/_filterpanel.css";
@import "components/_performanceview.css";
@import "components/_tabs.css";
@import "components/_gridviewtable.css";
@import "components/_modelpopup.css";
@import "components/_newGridStyle.css";
@import "components/_qtrackerIcons.css";
@import "components/_certificate.css";
@import "components/_homepage.css";
@import "components/_loader.css";

/********************
 * GENERAL STYLES
 ********************/
html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #f7f7fa;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 12px;
    color: #676a6d;
}

a {
    color: #3287B2;
}

    a:hover, a:focus {
        color: #3b98c8;
        text-decoration: none;
    }

th {
    font-weight: 600;
}

.page-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
}

footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-top: 15px;
    padding-bottom: 10px;
}

.copyright {
    margin-bottom: 0;
    text-align: right;
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .copyright {
        text-align: center;
        position: relative !important;
    }
}

/********************
* LAYOUT (NavBar background color)
********************/
#wrapper .sidebar {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 260px;
    height: 100%;
    float: left;
    /* Gradient background */
    background: linear-gradient(135deg, #002442 80%, #0064b5);
    position: fixed;
    left: 0;
}


#wrapper .main {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: calc(100% - 260px);
    left: 0;
    position: relative;
    float: right;
    background-color: #F8F8FB;
}

#wrapper #sidebar-nav,
#wrapper .main {
    padding-top: 80px;
}

@media screen and (max-width: 767px) {
    #wrapper #sidebar-nav,
    #wrapper .main {
        padding-top: 130px;
    }
}

.layout-fullwidth #wrapper .sidebar {
    left: -260px;
}

.layout-fullwidth #wrapper .main {
    width: 100%;
}

.layout-fullwidth #wrapper .navbar {
    left: 0 !important;
}

.layout-fullwidth #wrapper .btn-toggle-fullwidth {
    color: #495f79;
}

.offcanvas-active #wrapper .sidebar {
    left: 0;
}

.offcanvas-active #wrapper .main {
    width: 100%;
    position: relative;
    left: 260px;
}

@media screen and (max-width: 1024px) {
    #wrapper .sidebar {
        left: -260px;
    }

    #wrapper .main {
        width: 100%;
    }

    #wrapper .navbar {
        left: 0 !important;
    }

    #wrapper .btn-toggle-fullwidth {
        color: #00AAFF;
    }

    .btn-toggle-minified {
        display: none;
    }
}

.main-content {
    padding: 28px 10px;
}

.navbar + .main-content {
    padding: 105px 0 28px 5px;
}

@media screen and (max-width: 767px) {
    .navbar + .main-content {
        padding-top: 155px;
    }
}

html.fullscreen-bg,
html.fullscreen-bg body,
html.fullscreen-bg #wrapper {
    height: 100%;
}

.vertical-align-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
}

.vertical-align-middle {
    display: table-cell;
    vertical-align: middle;
}

/********************
* TOP NAVIGATION
********************/
.navbar-default {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: none;
    background-color: #fff;
}

    .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
        background-color: #fafafa;
    }

    .navbar-default .navbar-toggle, .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: #f8f8f8;
    }

    .navbar-default .brand {
        float: left;
        padding: 30px 39px;
        background-color: #fff;
    }

@media screen and (max-width: 1024px) {
    .navbar-default .brand {
        padding-left: 30px;
        padding-right: 15px;
    }
}

@media screen and (max-width: 992px) {
    .navbar-default .brand {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .navbar-default #navbar-menu {
        float: right;
    }
}

.navbar-btn {
    float: left;
    padding: 16px 0;
}

    .navbar-btn button {
        font-size: 24px;
        padding: 4px 8px;
        line-height: .7;
        border: none;
        background: none;
        outline: none;
    }

@media screen and (max-width: 640px) {
    .navbar-btn {
        padding-left: 0;
    }
}

.navbar-btn-right {
    float: right;
}

.navbar-form {
    padding: 15px;
    border: 0;
}

    .navbar-form input[type="text"] {
        min-width: 200px;
    }

@media screen and (max-width: 767px) {
    .navbar-form {
        float: left;
        width: 70%;
        margin-left: 5px;
        margin-right: 5px;
        padding-left: 0;
        padding-right: 0;
    }

        .navbar-form .input-group {
            width: 70%;
        }

        .navbar-form input[type="text"] {
            min-width: 150px;
        }
}

@media screen and (max-width: 640px) {
    .navbar-form {
        display: none;
    }
}

.navbar-nav .icon-menu {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    padding-top: 28px;
    padding-bottom: 28px;
    position: relative;
    color: #676a6d;
}

    .navbar-nav .icon-menu .badge {
        position: absolute;
        top: 22px;
        right: 16px;
    }

.navbar-nav > li > a {
    padding: 28px 20px;
}

    .navbar-nav > li > a > i {
        font-size: 22px;
        margin-right: 2px;
        vertical-align: middle;
    }

        .navbar-nav > li > a > i.icon-submenu {
            margin-left: 2px;
            margin-right: 0;
            font-size: 12px;
            position: relative;
            top: 2px;
        }

    .navbar-nav > li > a > span {
        position: relative;
        top: 2px;
    }

    .navbar-nav > li > a img {
        width: 22px;
        margin-right: 2px;
    }

.navbar-nav > li > .dropdown-menu {
    padding: 0;
    min-width: 200px;
    color: #676a6d;
}

.navbar-nav .dropdown-menu {
    border-top: 2px solid #676a6d;
}

    .navbar-nav .dropdown-menu > li > a {
        padding: 10px 20px;
    }

        .navbar-nav .dropdown-menu > li > a:hover, .navbar-nav .dropdown-menu > li > a:focus {
            background-color: #fafafa;
            color: #676a6d;
        }

        .navbar-nav .dropdown-menu > li > a span,
        .navbar-nav .dropdown-menu > li > a i {
            vertical-align: middle;
        }

@media screen and (min-width: 768px) {
    .navbar-nav.navbar-right {
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .navbar-nav {
        width: 100%;
        margin: 0;
    }

        .navbar-nav > li {
            display: table-cell;
            width: 1%;
            position: inherit;
            text-align: center;
        }

            .navbar-nav > li > a {
                padding: 15px 20px;
            }

                .navbar-nav > li > a span:not(.badge),
                .navbar-nav > li > a .icon-submenu {
                    display: none;
                }

        .navbar-nav .open .dropdown-menu {
            -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            position: absolute;
            width: 100%;
            margin-top: 3px;
            background-color: #fff;
        }

            .navbar-nav .open .dropdown-menu > li > a {
                padding: 10px 15px;
            }

        .navbar-nav .icon-menu {
            padding-top: 15px;
            padding-bottom: 15px;
        }

            .navbar-nav .icon-menu .badge {
                top: 10px;
                right: 15px;
            }
}

.navbar-toggle {
    padding: 5px 8px;
    margin: 20px 15px 20px 0;
}

    .navbar-toggle .icon-nav {
        font-size: 24px;
        color: #676a6d;
    }

.notification-item .dot {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    width: 10px;
    height: 10px;
    content: '';
    margin-right: 8px;
}

ul.notifications > li {
    border-bottom: 1px solid #F0F0F0;
}

    ul.notifications > li:last-child {
        border-bottom: none;
    }

    ul.notifications > li > .more {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        text-decoration: underline;
        font-weight: 600;
    }

        ul.notifications > li > .more:hover, ul.notifications > li > .more:focus {
            text-decoration: none;
        }

.dropdown-menu {
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: #eaeaea;
}

    .dropdown-menu > li > a {
        color: #676a6d;
    }

    .dropdown-menu > li i {
        margin-right: 6px;
    }

    .dropdown-menu .active > a, .dropdown-menu .active > a:focus, .dropdown-menu .active > a:hover {
        background-color: #676a6d;
    }

    .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
        color: #676a6d;
    }
/* Media query for mobile devices : Added 13072023*/

@media screen and (max-width: 767px) {
    /* Adjust the padding of the navbar form */
    .navbar-form {
        padding: 8px 15px; /* Adjust the padding as needed */
    }

        /* Decrease the min-width of the text input in the navbar form */
        .navbar-form input[type="text"] {
            min-width: 120px; /* Adjust the min-width as needed */
        }

    /* Make the icons display in one line */
    .navbar-nav {
        display: flex;
        flex-wrap: nowrap;
    }

        /* Adjust the padding of the navbar-nav items */
        .navbar-nav > li {
            padding: 20px 20px; /* Adjust the padding as needed */
        }

            /* Decrease the font size of the navbar-nav icons */
            .navbar-nav > li > a > i {
                font-size: 18px; /* Adjust the font size as needed */
            }
}



/********************
* SIDEBAR NAVIGATION
********************/
.sidebar {
    z-index: 9;
    position: relative; /* Added to enable absolute positioning of logo */
}

    .sidebar .nav > li > a {
        padding: 18px 30px;
        color: #7DA1BD;
        border-left: 5px solid transparent;
        font-size: 16px;
    }

        .sidebar .nav > li > a:hover, .sidebar .nav > li > a:focus, .sidebar .nav > li > a.active {
            color: #fff;
            background-color: transparent;
        }

            .sidebar .nav > li > a:hover i, .sidebar .nav > li > a:focus i, .sidebar .nav > li > a.active i {
                color: #ffffff;
            }

        .sidebar .nav > li > a:focus, .sidebar .nav > li > a.active {
            background-color: #002442;
            border-left-color: #fafafa;
        }

        .sidebar .nav > li > a[data-toggle="collapse"] .icon-submenu {
            display: inline-block;
            vertical-align: middle;
            *vertical-align: auto;
            *zoom: 1;
            *display: inline;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            -o-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
            float: right;
            position: relative;
            top: 5px;
            font-size: 12px;
            line-height: 1.1;
            -moz-transform: rotate(-90deg);
            -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
        }

        .sidebar .nav > li > a[data-toggle="collapse"].collapsed .icon-submenu {
            -moz-transform: rotate(0deg);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        .sidebar .nav > li > a .badge {
            font-weight: 400;
            background-color: #34c38f;
        }

    .sidebar .nav {
        /* submenu */
    }

        .sidebar .nav i {
            margin-right: 10px;
            font-size: 18px;
        }

        .sidebar .nav span {
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            position: relative;
            top: -2px;
        }

        .sidebar .nav .nav {
            background-color: #002442;
        }

            .sidebar .nav .nav > li > a {
                padding-left: 60px;
                padding-top: 10px;
                padding-bottom: 10px;
            }

                .sidebar .nav .nav > li > a:focus, .sidebar .nav .nav > li > a.active {
                    background-color: transparent;
                    border-left-color: transparent;
                }

                    .sidebar .nav .nav > li > a.active a {
                        color: #fff;
                    }

/* LOGO STYLING - Bottom Center */
.sidebar-logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 40px); /* Account for padding */
    padding: 0 20px;
}

    .sidebar-logo img {
        max-width: 100%;
        height: auto;
        max-height: 60px; /* Adjust as needed */
        display: block;
        margin: 0 auto;
    }

    .sidebar-logo .logo-text {
        color: #7DA1BD;
        font-size: 14px;
        margin-top: 8px;
        font-weight: 400;
    }

/********************
* Checkbox
********************/
.chkListData {
    list-style-type: none;
    padding: 10px;
    margin: 20px;
    text-align: left !important;
    font-weight: normal;
}

    .chkListData li {
        display: inline-block;
        margin-right: 30px !important;
        margin-bottom: 15px;
    }

    .chkListData input[type="checkbox"] {
        margin-right: 5px;
        margin-left: 25px;
    }

.chkListContainer {
    text-align: justify;
}

    .chkListContainer label {
        display: inline-block;
    }

.chkStatusList-box {
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
    background-color: #fff;
}

/********************
* END Checkbox
********************/
/********************
* TYPOGRAPHY
********************/
.text-success {
    color: #2CA67A;
}

.text-warning {
    color: #CD9941;
}

.text-danger {
    color: #CF5A5A;
}

ul.list-justify > li {
    margin-bottom: 5px;
}

    ul.list-justify > li span {
        float: right;
    }



/********************
* SELECT (Dropdown)
********************/
select.form-control {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 36px; /* space for arrow */
}

/********************
* INPUT GROUP
********************/
.input-group {
    display: flex;
    align-items: center;
    border-radius: 12px; /* match DMTable */
    overflow: hidden;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

    .input-group .form-control {
        border: none;
        box-shadow: none;
    }

.input-group-addon {
    padding: 10px 14px;
    background-color: #f9f9f9;
    border-right: 1px solid #e0e0e0;
    color: #555;
    font-size: 14px;
}

/********************
* FANCY CHECKBOX
********************/
.fancy-checkbox {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 8px;
}

    .fancy-checkbox input[type="checkbox"] {
        display: none;
    }

        .fancy-checkbox input[type="checkbox"] + span {
            position: relative;
            padding-left: 28px;
            font-size: 14px;
            color: #333;
        }

            .fancy-checkbox input[type="checkbox"] + span:before {
                content: "";
                position: absolute;
                left: 0;
                top: 1px;
                width: 20px;
                height: 20px;
                border: 2px solid #bbb;
                border-radius: 6px;
                background: #fff;
                transition: all 0.25s ease;
            }

        .fancy-checkbox input[type="checkbox"]:checked + span:before {
            background: #1976d2;
            border-color: #1976d2;
        }

        .fancy-checkbox input[type="checkbox"]:checked + span:after {
            content: "\f00c"; /* FontAwesome check */
            font-family: FontAwesome;
            position: absolute;
            left: 3px;
            top: 0px;
            font-size: 14px;
            color: #fff;
        }

/********************
* FANCY RADIO
********************/
.fancy-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 8px;
}

    .fancy-radio input[type="radio"] {
        display: none;
    }

        .fancy-radio input[type="radio"] + span {
            position: relative;
            padding-left: 28px;
            font-size: 14px;
            color: #333;
        }

            .fancy-radio input[type="radio"] + span i {
                position: absolute;
                left: 0;
                top: 1px;
                width: 20px;
                height: 20px;
                border: 2px solid #bbb;
                border-radius: 50%;
                background: #fff;
                transition: all 0.25s ease;
            }

        .fancy-radio input[type="radio"]:checked + span i {
            border-color: #1976d2;
            background: #1976d2;
        }

            .fancy-radio input[type="radio"]:checked + span i:after {
                content: "";
                position: absolute;
                top: 4px;
                left: 4px;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: #fff;
            }








/********************
* New Page Header
********************/
.pageV2-header {
    /*background-color: #5e88ab;
    background-image: linear-gradient(225deg, #5e88ab 0%, #f7f7fa 25%);*/
    background-color: #f7f7fa;
    /*background-image: linear-gradient(180deg, #f7f7fa 62%, #6b91a9 100%);*/
    color: #677584;
    padding: 10px;
    border-radius: 5px 5px 5px 5px;
    margin-left: 5px;
    text-align: Left;
    font-size: 2em;
    font-weight: normal;
}

/********************
* End Section Header
********************/



/********************
* ELEMENTS
********************/
.collapsing {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.label {
    font-weight: normal;
}

.metric {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid #DCE6EB;
}

    .metric .icon {
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        float: left;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background-color: #0e3e57;
        text-align: center;
    }

        .metric .icon i {
            font-size: 18px;
            color: #fff;
        }

    .metric p {
        margin-bottom: 0;
        line-height: 1.2;
        text-align: right;
    }

    .metric .number {
        display: block;
        font-size: 28px;
        font-weight: 300;
    }

    .metric .title {
        font-size: 16px;
    }

ul.activity-list > li {
    padding: 25px 0;
}

    ul.activity-list > li:not(:last-child) {
        border-bottom: 1px solid #F0F0F0;
    }

    ul.activity-list > li .avatar {
        width: 40px;
    }

    ul.activity-list > li > p {
        margin-bottom: 0;
        padding-left: 3.5em;
    }

    ul.activity-list > li .timestamp {
        display: block;
        font-size: 13px;
        color: #676a6d;
    }

/* task list */
.task-list > li {
    margin-bottom: 32px;
}

.task-list p {
    position: relative;
}

    .task-list p .label-percent {
        position: absolute;
        right: 0;
    }

/* bootstrap progress bar */
.progress {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f1f1f1;
}

    .progress.wide {
        width: 60px;
    }

    .progress .progress-bar {
        -webkit-transition: width 3s ease;
        -moz-transition: width 3s ease;
        -o-transition: width 3s ease;
        transition: width 3s ease;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .progress.progress-sm {
        height: 12px;
    }

    .progress.progress-xs {
        height: 5px;
    }

        .progress.progress-sm .progress-bar, .progress.progress-xs .progress-bar {
            text-indent: -9999px;
        }

.progress-bar-success {
    background-color: #41B314;
}

.progress-bar-warning {
    background-color: #e4cb10;
}

.progress-bar-danger {
    background-color: #F9354C;
}

.weekly-summary {
    margin-bottom: 30px;
    font-weight: 300;
}

    .weekly-summary .number {
        font-size: 36px;
    }

    .weekly-summary i {
        font-size: 16px;
        margin-left: 10px;
    }

    .weekly-summary .percentage {
        position: relative;
        top: -7px;
    }

    .weekly-summary .info-label {
        display: block;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .weekly-summary .trend {
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .weekly-summary .trend i {
            margin-right: 5px;
        }

.todo-list > li {
    border-top: 1px solid #F0F0F0;
    position: relative;
}

    .todo-list > li:first-child {
        border-top: none;
    }

    .todo-list > li .fancy-checkbox {
        position: absolute;
        top: 50%;
        margin-top: -11px;
    }

        .todo-list > li .fancy-checkbox input[type="checkbox"] + span {
            margin-right: 0;
        }

    .todo-list > li p {
        display: inline-block;
        vertical-align: middle;
        *vertical-align: auto;
        *zoom: 1;
        *display: inline;
        width: 90%;
        margin: 0;
        padding: 20px 0 20px 35px;
    }

    .todo-list > li.completed p,
    .todo-list > li.completed .date {
        text-decoration: line-through;
        color: #676a6d;
    }

.todo-list .title {
    font-size: 16px;
    font-weight: 600;
}

.todo-list .short-description {
    display: block;
    margin-top: 5px;
}

.todo-list .date {
    font-size: 13px;
    color: #676a6d;
}

.todo-list .controls {
    float: right;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -11px;
}

    .todo-list .controls a {
        margin-left: 5px;
    }

/* toastr notification */
#toast-container > div {
    opacity: 0.9;
}

    #toast-container > div, #toast-container > div:hover {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

#toast-container .toast-close-button {
    top: -0.9em;
}

.toast a {
    text-decoration: underline;
}

    .toast a:hover, .toast a:focus {
        text-decoration: none;
        color: #fff;
    }

.toast .toast-message {
    font-size: 14px;
    line-height: 2;
}

.toast-info {
    background-color: #00AAFF;
}

.toast-success {
    background-color: #41B314;
}

.toast-warning {
    background-color: #e4cb10;
}

.toast-danger {
    background-color: #F9354C;
}




/********************
* HELPERS
********************/
.bg-success {
    background-color: #41B314;
}

.bg-warning {
    background-color: #e4cb10;
}

.bg-danger {
    background-color: #F9354C;
}

.no-padding {
    padding: 0 !important;
    border-radius: 10px;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.padding-top-30 {
    padding-top: 30px !important;
}

.padding-bottom-30 {
    padding-bottom: 30px !important;
}




