@import url('https://fonts.googleapis.com/css?family=Cairo');


html {
    direction: rtl;
}

img {
    cursor: zoom-in;
}

body {
    background-color: #e9e9e9;
    font-family: 'Cairo', sans-serif;
}

a {
    text-decoration: none;
    color: #fff;
}

    a:hover {
        color: #fff;
        text-decoration: none;
    }

h1 {
    font-size: 24px;
}

a[aria-expanded="false"] .fa-angle-left {
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}

a[aria-expanded="true"] .fa-angle-left {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
}
.container {
    min-height: 100vh;
}

.left-section {
    position: relative;
    min-height: 100vh;
    margin-right: 250px;
    -webkit-transition: margin .8s;
    transition: margin .8s;
}

.page-logo {
    width: 200px;
    text-align: center;
    margin-bottom: 100px;
}

    .page-logo a {
        font-size: 1.5em;
    }

#toggle-button {
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    opacity: 0.8;
    padding: 5px;
    position: absolute;
    right: 10px;
}

.navbar {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    background-color: #b6d1d5;
    padding-left: 30px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    max-height: 62px;
}

.nav-item {
    vertical-align: middle;
}

.user-title {
    padding-left: 5px;
    padding-right: 5px;
}

.clearfix-both {
    clear: both;
}

.fa-bell {
    display: inline-block;
    position: absolute;
    right: -10px;
}

.notification-icon {
    border-radius: 1rem;
    background-color: orangered;
    display: inline-block;
    min-width: 18px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    font-size: 75%;
    top: 1px;
    position: absolute;
    right: 5px;
    padding: .25em .25em;
    font-weight: 500;
}

.colo1 {
    background-color: #ec536c;
}

.dropdown-item {
    padding-left: 5px;
    padding-right: 10px;
    text-align: right;
}

.dropdown-toggle:after {
    content: none;
}

.user-profile {
    right: 30px;
}

    .user-profile > .dropdown-menu > a > i {
        width: 14px;
        height: 16px;
        margin-right: 0px;
        padding-left: 25px;
    }

.dropdown-menu {
    min-width: 100%;
    margin-top: 9px;
    border: 0;
    border-radius: 0px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.user-img {
    max-width: 30px;
    max-height: 30px;
    border-radius: 50%;
}

#sidebar {
    position: fixed;
    background-color: #9dabb9;
    min-height: 100vh;
    top: 0;
    right: 0;
    width: 250px;
    padding-top: 20px;
    -webkit-transition: right .8s;
    transition: right .8s;
}

    #sidebar.sidebar-toggled {
        right: -250px;
    }

@media only screen and (max-width: 480px) {
    .left-section.nav-toggled {
        margin-right: 0;
    }

    .navbar-left-section.navbar-left-section-toggled {
        display: none;
    }

    #sidebar {
        right: -250px;
    }

        #sidebar.sidebar-toggled {
            right: 0px;
            min-width: 100%;
            display: block;
        }

    #navbar {
        max-height: 62px;
    }
}

@media only screen and (min-width: 480px) {
    .left-section.nav-toggled {
        margin-right: 0px;
    }
}

/* @media only screen and (max-width:480px){
  .left-section{
    margin-right: 0px;
  }
  .left-section .navbar-nav{
    flex-direction: row;
  }
} */
.navbar-left-section {
    -webkit-transition: all .8s;
    transition: all .8s;
    left: 10px;
}

#sidebar ul {
    padding: 0;
    margin: 0;
}

.sub-menu {
    display: none;
}

.menu-item > a {
    display: block;
    padding: 10px;
    text-align: right;
}

    .menu-item > a > i {
        padding-left: 10px;
    }

    .menu-item > a:hover {
        background-color: red;
        border-right: 3px solid white;
    }

.sub-item > a {
    background-color: #2c3b41;
    padding-left: 45px;
}

.sub-item-open {
    display: block;
}

.page-content {
    height: 100vh;
}

    .page-content > h1 {
        margin-top: 1rem;
    }

.panel {
    text-align: right;
    background-color: #fff;
    margin: 1rem;
    padding: 1rem;
}

    .panel > h1 {
        padding-bottom: 10px;
        border-bottom: 3px solid #e9e9e9;
        margin-bottom: 2rem;
        /*font-size: 32px;*/
    }

.login-wrapper {
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #2c3b41;
}
.white-form {
    background-color: whitesmoke;
}

.login-panel {
    padding: 2rem;
    margin: 2rem;
    background-color: #fff;
    text-align: center;
}

    .login-panel > h1 {
        padding-bottom: 2rem;
        color: #2c3b41;
    }

    .login-panel input {
        border-radius: 0px;
        text-align: right;
    }

        .login-panel input[type=submit] {
            text-align: center;
        }

.input-row {
    position: relative;
    padding: 10px;
}

.login-panel .fa {
    color: #aaa;
    height: 35px;
    width: 35px;
    position: absolute;
    vertical-align: middle;
    top: 10px;
    left: 10px;
    line-height: 35px;
}

#lblTitle {
    padding-bottom: 10px;
    border-bottom: 3px solid #e9e9e9;
    margin-bottom: 2rem;
}

input[type=radio], input[type=checkbox] {
    margin: 5px 5px;
}

.modal-footer{
    justify-content:center;
}


 .error {
    color: #ff0000;
}
