﻿/* Color Variables */
/* #eff3f6 */
/* Styles */
body {
    background: #eff2f4;
    /*        font-family: 'Roboto', sans-serif;
        letter-spacing: 1px;*/
}
:root {
    --main-color: #0057ae;
}
.text-red {
    color: red !important;
}

.text-green {
    color: green !important;
}

.text-orange {
    color: orange !important;
}

.text-blue {
    color: blue !important;
}
/* buttons */
.btn-red {
    background: red;
    color: white;
    font-size: xx-small;
}

    .btn-red:hover, .btn-red:focus {
        background: #d60000;
        color: white;
    }

.btn-grayblue {
    background: #acb6c4;
    color: white;
    font-size: xx-small;
}

    .btn-grayblue:hover, .btn-grayblue:focus {
        background: #97a4b5;
        color: white;
    }
/* Custom scrollbar */
.main ::-webkit-scrollbar {
    width: 5px;
}

.main ::-webkit-scrollbar-track {
    border-radius: 10px;
}

.main ::-webkit-scrollbar-thumb {
    background: #5d7090;
    border-radius: 10px;
}

    .main ::-webkit-scrollbar-thumb:hover {
        background: #495871;
    }
/* Left Menu */
.main .left {
    width: 57px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #354052;
    position: fixed;
    transition: all 0.5s;
}

.main .left:hover {
    width: 200px;
}

    .main .left:hover ul li.menu-heading {
        opacity: 1;
    }

    .main .left ul {
        padding-right: 0;
    }

        .main .left ul li {
            list-style-type: none;
        }

            .main .left ul li.active a {
                background: var(--main-color);
                color: white;
            }

                .main .left ul li.active a:hover {
                    background: #354052;
                }

            .main .left ul li a {
                display: flex;
                align-items: center;
                background: #354052;
                color: white;
                padding: 15px 10px;
                font-size: 13px;
                width: 200px;
                border-bottom: 1px solid #2b3443;
                text-align: left
            }

                .main .left ul li a:hover {
                    background: #2b3443;
                    text-decoration: none;
                }

                    .main .left ul li a:hover i.fa {
                        color: #007bff;
                    }

                .main .left ul li a:focus {
                    text-decoration: none;
                }

                .main .left ul li a i {
                    width: 50px;
                    text-align: center;
                    padding-left: 15px;
                    transition: all 1s;
                }

        .main .left ul .menu-heading {
            opacity: 0;
            padding: 10px 20px 10px 10px;
            color: #fff;
            font-size: smaller;
            border-bottom: 1px solid #2b3443;
            transition: all 0.5s;
        }
/* Right Content */
.main  .right {
    transition: all 0.5s;
}
.form-group label.required:after {
    content: "*";
    color: #f00;
    font-size: 14px;
}
    .main .right .header {
        background: white;
        display: block;
        border: 1px solid #e6e6e6;
        padding: 15px 30px;
        margin-right: -15px;
    }

        .main .right .header h4 {
            display: inline-block;
            color: #354052;
        }

        .main .right .header ul.dropdown-menu {
            right: 0;
            left: inherit;
            max-width: 350px;
        }

            .main .right .header ul li {
                display: inline-block;
                padding-left: 20px;
            }

                .main .right .header ul li .btn-group i.fa-user-o, .right .header ul li .btn-group i.fa-bell-o {
                    color: #b3b3b3;
                    font-size: 24px;
                    cursor: pointer;
                }

                    .main .right .header ul li .btn-group i.fa-user-o:nth-child(1):after, .right .header ul li .btn-group i.fa-bell-o:nth-child(1):after {
                        content: '3';
                        background: orange;
                        color: white;
                        font-size: small;
                        padding: 4px 7px;
                        border-radius: 50%;
                        position: absolute;
                        top: -8px;
                        left: 10px;
                    }

                .main .right .header ul li .btn-group i.fa-angle-down {
                    cursor: pointer;
                }

                .main .right .header ul li .btn-group .dropdown-menu {
                    padding: 0;
                    transform: unset !important;
                    top: 34px !important;
                }

                    .main .right .header ul li .btn-group .dropdown-menu li {
                        padding-left: 0;
                        display: block;
                        border-bottom: 1px solid #e6e6e6;
                    }

                        .main .right .header ul li .btn-group .dropdown-menu li:nth-child(1) .alert-card i.fa {
                            color: #00b300;
                        }

                        .main .right .header ul li .btn-group .dropdown-menu li:nth-child(2) .alert-card i.fa {
                            color: #b300b3;
                        }

                        .main .right .header ul li .btn-group .dropdown-menu li:nth-child(3) .alert-card i.fa {
                            color: #354052;
                        }

                        .main .right .header ul li .btn-group .dropdown-menu li:last-child {
                            border-bottom: none;
                        }

                        .main .right .header ul li .btn-group .dropdown-menu li a {
                            display: block;
                            padding: 4px 10px;
                            font-size: 14px;
                            text-align: start;
                            color: #000
                        }
                            .main .right .header ul li .btn-group .dropdown-menu li a:hover {
                                text-decoration: none;
                            }
                            .main .right .header ul li .btn-group .dropdown-menu li a i {
                                width: 18px;
                            }
                            .main .right .header ul li .btn-group .dropdown-menu li:hover {
                                background: #e5e8ee;
                            }

                        .main .right .header ul li .btn-group .dropdown-menu li a .alert-card {
                            display: flex;
                        }

                            .main .right .header ul li .btn-group .dropdown-menu li a .alert-card img, .right #overview .header ul li .btn-group .dropdown-menu li a .alert-card i.fa {
                                height: 40px;
                                margin-right: 15px;
                            }

                            .main .right .header ul li .btn-group .dropdown-menu li a .alert-card p {
                                color: #354052;
                                margin-bottom: 0;
                            }

                                .main .right .header ul li .btn-group .dropdown-menu li a .alert-card p small {
                                    color: #7f8fa4;
                                    width: 100%;
                                    white-space: pre-line;
                                }

                .main .right .header ul li .dropdown-avatar img {
                    height: 20px;
                    cursor:pointer;
                }

                .main .right .header ul li .dropdown-avatar i.fa {
                    padding-left: 8px;
                }

    .main .right #overview .content {
        padding: 0 15px 15px 25px;
    }

        .main .right #overview .content .row.graph-cards {
            margin-top: 20px;
        }

            .main .right #overview .content .row.graph-cards .col-sm-4 div {
                background: white;
                padding: 15px;
            }

                .main .right #overview .content .row.graph-cards .col-sm-4 div h4, .right #overview .content .row.graph-cards .col-sm-4 div h2 {
                    color: #354052;
                }

                    .main .right #overview .content .row.graph-cards .col-sm-4 div h4 small, .right #overview .content .row.graph-cards .col-sm-4 div h2 small {
                        color: #7f8fa4;
                        font-size: small;
                    }

                .main .right #overview .content .row.graph-cards .col-sm-4 div h2 {
                    line-height: 85%;
                }

                .main .right #overview .content .row.graph-cards .col-sm-4 div img {
                    width: 100%;
                    height: 150px;
                    object-fit: contain;
                }

            .main .right #overview .content .row.graph-cards .col-sm-4:last-child img {
                height: 220px;
            }

        .main .right #overview .content .row.project-cards {
            margin-top: 20px;
        }

            .main .right #overview .content .row.project-cards .col-sm-3 .card {
                background: white;
                padding: 0;
            }

                .main .right #overview .content .row.project-cards .col-sm-3 .card img {
                    width: 100%;
                }

                .main .right #overview .content .row.project-cards .col-sm-3 .card h5 {
                    padding: 15px 30px;
                    border-bottom: 1px solid #e6e6e6;
                }

                .main .right #overview .content .row.project-cards .col-sm-3 .card .row {
                    padding: 0 15px;
                    margin-left: 0;
                    margin-right: 0;
                }

                    .main .right #overview .content .row.project-cards .col-sm-3 .card .row .col-sm-6 {
                        padding: 15px;
                    }

        .main .right #overview .content .row.invoice-task {
            margin-top: 20px;
        }

            .main .right #overview .content .row.invoice-task .col-sm-6 .invoice, .right #overview .content .row.invoice-task .col-sm-6 .tasks {
                background: white;
            }

                .main .right #overview .content .row.invoice-task .col-sm-6 .invoice h5, .right #overview .content .row.invoice-task .col-sm-6 .tasks h5 {
                    color: black;
                    padding: 15px;
                }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .invoice h5 small a, .right #overview .content .row.invoice-task .col-sm-6 .tasks h5 small a {
                        color: #7f8fa4;
                        font-size: xs-small;
                        margin-top: 5px;
                        display: block;
                    }

                .main .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td, .right #overview .content .row.invoice-task .col-sm-6 .tasks .table tbody tr td {
                    font-size: small;
                    border-top-color: #e6e6e6;
                    padding: 15px;
                }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(1), .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(3) {
                        color: #7f8fa4;
                    }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(4) .btn {
                        font-size: xx-small;
                    }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(1), .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(2), .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(3), .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td:nth-child(5) {
                        padding-top: 20px;
                    }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .invoice .table tbody tr td .checkbox {
                        margin: 5px 0 0;
                    }

            .main .right #overview .content .row.invoice-task .col-sm-6 .tasks .table tbody tr td .checkbox {
                margin: 5px 0 0 0;
            }

                .main .right #overview .content .row.invoice-task .col-sm-6 .tasks .table tbody tr td .checkbox:hover label {
                    text-decoration: line-through;
                    color: #999;
                }

                    .main .right #overview .content .row.invoice-task .col-sm-6 .tasks .table tbody tr td .checkbox:hover label input {
                        opacity: 0.5;
                    }

                .main .right #overview .content .row.invoice-task .col-sm-6 .tasks .table tbody tr td .checkbox label input {
                    margin-top: 2px;
                }


.main .left:hover + .right {
    margin-right: 215px;
}

.strike {
    color: #999;
}

hr {
    border-top: 1px solid #e6e6e6;
    margin: 10px 0;
}

.py-15 {
    padding: 15px 0;
}

.tab-content {
    direction: rtl;
}

.main {
    direction: rtl;
}

    .main .right .header ul.dropdown-menu {
        right: -140px !important;
    }

canvas#pie {
    width: 400px !important;
    height: 400px !important;
    margin: auto!important;
}
.info-card p.pull-right {
    direction: ltr;
}
.info-card p{
cursor:pointer
}
.main .dropleft .dropdown-toggle::before {
    content: unset !important;
}

.md-form .prefix {
    top: .25rem;
    font-size: 1.75rem;
}
.grey-text {
    color: #9e9e9e !important;
}
.md-form {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
    .md-form > label {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .md-form .prefix ~ label {
        margin-left: 2.5rem;
    }
.fade.in {
    opacity: 1;
}
.form-group {
    margin-bottom: 10px;
}

    .form-group.form-group-responsive {
        margin-bottom: 0;
    }

    .form-group .form-control {
        text-align: right;
    }

        .form-group .form-control.width100 {
            width: 100px;
        }

        .form-group .form-control.width150 {
            width: 150px;
        }

    .form-group label {
        font-size: 14px;
        margin-bottom: 7px;
        text-align: right;
        min-height: 21px;
    }

        .form-group label.required:after {
            content: "*";
            color: #f00;
            font-size: 14px;
        }

.PassWordInput {
    position: relative;
}

    .PassWordInput a {
        position: absolute;
        top: 0;
        font-size: 13px;
        left: 10px;
        line-height: 33px;
        color: #000;
        z-index: 9;
    }

.modal-header {
    padding: 8px 15px;
    background-color: #f7f7f7;
}

    .modal-header .modal-title {
        width: 100%;
        display: block;
        font-size: 16px;
        text-align: right;
    }

    .modal-header .close {
        position: absolute;
        left: 0;
        padding: 15px;
    }

.text-black {
    color: #000;
}
.w-15{
    width:15%
}
.btn-theme {
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
    .btn-theme:hover {
        opacity: 0.9;
        color: #fff;
    }
    .text-primary {
        color: #0057ae !important;
    }
.mainTitle .text-muted {
    color: #242424 !important;
    font-size: 30px;
}
.text-muted {
    color: #242424 !important;
    font-size: 20px;
}

.alert-theme {
    position: fixed;
    top: 50px;
    z-index: 999999;
    width: 600px;
    max-width: 95%;
    right: 70px;
}

@media (max-width: 768px) {
    .w-15 {
        width: 60%
    }
    .main .right .header ul li{
        padding-left: 0
    }
    canvas#pie {
        width: 245px !important;
        height: 245px !important;
    }
    .cards .card{
        margin-bottom: 5px
    }
}