.header {
    position: fixed;
    top: 0;
    /*right: 0;*/
    width: 100%;
    /*background-color: sandybrown;*/
    line-height: 7rem;
    display: flex;
    justify-content: space-around;
    z-index: 1000;
    align-items: stretch;
}

.logo {
    max-height: 7rem;
}

.sidebar-header {
    flex: 0 0 17rem;
}

/*.body-header {
    background-color: sandybrown;
    width: calc(100% - 17rem);
}*/
.body-header {
    background-color: #B3D3E9;
    width: calc(100% - 17rem);
}

.search-area {
    background-color: #dcdcdc;
    padding: .3rem .6rem;
    border-radius: 2rem;
}

.search-input {
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
    margin: 0 .6rem;
}

.header-notifictation {
    position: absolute;
    left: 0;
    margin-top: .2rem;
    width: 16rem;
    background-color: white;
    color: #000000;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    display: none;
}

.notification-img {
    width: 3rem;
    border-radius: .1rem;
}

.notification-user {
    font-size: .8rem;
    font-weight: bold;
    margin-top: .3rem;
}

.notification-text {
    font-size: .7rem;
    line-height: .7rem;
}

.notification-time {
    font-size: .6rem;
    line-height: .6rem;
    color: #919aa3;
}

.header-comment {
    position: absolute;
    height: calc(100vh - 3.5rem);
    width: 18rem;
    background-color: #FFFFFF;
    color: black;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.125);
    display: none;
}

.header-comment-wrapper {
    height: calc(100% - 6rem);
    overflow: auto;
}

.header-comment-wrapper::-webkit-scrollbar {
    display: none;
}

.comment-user {
    font-size: .75rem;
    font-weight: bold;
    margin-top: .8rem;
}

.comment-user-status {
    font-size: .4rem;
}

.header-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: .3rem;
    margin: .2rem;
}

.header-username {
    color: #333333;
    font-size: .8rem;
}

.header-profile {
    position: absolute;
    margin-top: .2rem;
    left: 0;
    z-index: 1000;
    height: auto;
    width: 13rem;
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0 1px 20px 0 rgba(70, 90, 100, 0.08);
    display: none;
}

.header-profile-link {
    padding: .4rem;
    font-size: .8rem;
    line-height: 1.4rem;
}

.header-profile-link>i {
    width: 2rem;
    text-align: center;
}

@media only screen and (max-width: 767.98px) {
    .header {
        display: block;
        right:0;
    }
    .sidebar{
        display:none;
    }
    .sidebar-header {
        width: 100%;
    }
    .body-header {
        display: none;
        width: 100%;
    }
}

.body-container {
    margin-top: 5.5rem;
    z-index: 100000;
    display: flex;
}

.sidebar {
    flex: 0 0 17rem;
 background-color: rgb(7, 74, 39);
 
    color: #dcdcdc;
    position: relative;
    width: 320px;
    right: 0;
}

.sidebar-container {
    height: calc(100vh - 7rem);
    /* position: fixed; */
    right: 0;
    top: 7rem;
    z-index: 10000;
}

.sidebar-wrapper {
    padding: 1rem 0;
    overflow: auto;
}

.sidebar-wrapper::-webkit-scrollbar {
    display: none;
}

.sidebar-part-title {
    font-size: .9rem;
    padding: 0 1rem;
    margin-top: 1rem;
    color: #999999;
}

.sidebar-link {
    font-size: .8rem;
    margin-top: 1rem;
    padding: .4rem 1rem;
    display: block;
    text-decoration: none;
    outline: none;
    border: none;
    color: #dcdcdc;
    transition: all .3s;
}

.sidebar-link:hover {
    text-decoration: none;
    color: #FE8A7D;
}

.sidebar-link>i {
    width: 2rem;
    text-align: center;
}

.sidebar-group-link {
    font-size: .8rem;
    margin-top: 1rem;
    padding: .4rem 0;
    color: #dcdcdc;
}

.sidebar-group-link-active {
    border-right: #FE8A7D 3px solid;
}

.sidebar-group-link>.sidebar-dropdown {
    display: none;
    height: 0;
}

.sidebar-group-link-active>.sidebar-dropdown {
    height: auto!important;
    display: block!important;
}

.sidebar-dropdown-toggle {
    cursor: pointer;
    padding: .2rem 1rem;
    transition: all .3s;
}

    .sidebar-dropdown-toggle:hover span {
        color: #FE8A7D;
    }
.sidebar-dropdown a:active {
    color: slateblue;
}

.sidebar-dropdown-toggle .icon {
    width: 2rem;
    text-align: center;
}

.sidebar-dropdown-toggle .angle {
    float: left;
    padding: .4rem 0;
}
.sidebar-dropdown-toggle-title {
    padding: 0 1rem;
}

.sidebar-dropdown a,
button:not(.dpButton,.dpTodayButton) {
    padding: .2rem 1rem;
    display: block;
    text-decoration: none;
    background-color: inherit;
    outline: none;
    border: none;
    color: #dcdcdc;
    transition: all .3s;
}

    .sidebar-dropdown a::before,
    button:not(.dpButton,.dpTodayButton,.page-status-btn)::before {
        content: '»';
        margin: .8rem;
    }
.sidebar-dropdown a:active{
    color:red;
}
/*button .ajax__combobox_buttoncontainer {
    background-color: red;
}*/
.sidebar-dropdown a:hover,
button:hover {
    color: #FE8A7D;
}

.main-body {
    width:100%;
    /*width: calc(100% - 17rem);*/
    padding: 1rem;
    min-height: calc(100vh - 7rem);
    background-color: #f3f3f3;
}

@media only screen and (max-width: 767.98px) {
    .sidebar {
        display: none;
        /*width: 320px;*/
        z-index: 9;
        height: calc(100% - 3.5rem);
        position: fixed;
        /*top: 3.5rem;*/
        right: 0;
    }
    .sidebar-container {
        position: relative;
        /*width: 320px;*/
        height: 100%;
        top: 0;
    }
    .main-body {
        width: 100%;
        z-index: 1;
    }

    /*.FieldsTable {
        background-color: red;
    }*/
    td .ajax__combobox_textboxcontainer {
        /*background-color: red;*/
        padding:0;
        width:300px;
    }
}

/*.FieldsTable {
    background-color: red;
}*/
.info-box-body h5 {
    font-size: .9rem;
    line-height: 1rem;
}

.info-box-body p {
    font-size: .7rem;
    line-height: 1rem;
}

.info-box-icon i {
    font-size: 2rem;
}

.info-box-footer {
    font-size: .6rem;
}

.main-body-container {
    background-color: #f3f3f3;
    /*margin: .5rem 0;*/
    border-radius: .25rem;
    padding: .5rem;
}

.main-body-container-header h5 {
    font-size: 1rem;
    font-weight: bold;
}

.main-body-container-header p {
    font-size: .8rem;
    color: #777;
}

.body-content p {
    font-size: .8rem;
}

.content {
    padding: 7rem 0;
}

h2 {
    font-size: 20px;
}

.half, .half .container > .row {
    height: 100vh;
    min-height: 700px;
}

    .half .bg {
        height: 200px;
    }

@media (max-width: 991.98px) {
    .half .bg {
        height: 200px;
    }
}

.half .contents {
    background: #f6f7fc;
}

.half .contents, .half .bg {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .half .contents, .half .bg {
        width: 100%;
    }
}

.half .contents .form-control, .half .bg .form-control {
    border: none;
    border-radius: 4px;
    height: 54px;
    background: #efefef;
}

    .half .contents .form-control:active, .half .contents .form-control:focus, .half .bg .form-control:active, .half .bg .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.half .bg {
    background-size: cover;
    background-position: center;
}

.half a {
    color: #888;
    text-decoration: underline;
}

.half .btn {
    height: 54px;
    padding-left: 30px;
    padding-right: 30px;
}

.half .forgot-pass {
    position: relative;
    top: 2px;
    font-size: 14px;
}

.form-block {
    background: #fff;
    padding: 40px;
    margin-top: -300px;
}

@media (max-width: 991.98px) {
    .form-block {
        padding: 25px;
    }
}

.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
}

    .control .caption {
        position: relative;
        top: .2rem;
        color: #888;
    }

    .control input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

.control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
    border-radius: 4px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}

.control input:checked ~ .control__indicator {
    background: #fb771a;
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: #fb8633;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}

.control__indicator:after {
    font-family: 'icomoon';
    content: '\e5ca';
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff;
}

.control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: #7e0cf5;
    opacity: .2;
}
 .page-header {
    position: relative;
  
    
    height:3.5rem;
    /*background-color:red;*/
}

.page-header {
    display: flex;
    justify-content: center;
    height: 2.5rem;
    background-color: #a1bbd0;
}
.page-title {
    display: flex;
    justify-content: center;

    padding-right: 1rem;
}
.page-help {
    text-align: left;
    padding-left: .2rem;
}


.search-icon1 {
    font-size: 14px;
    font-weight: 600;
    align-items: stretch;
    margin: 2px;
    width: 4rem;
}

.search {
    width: 65px;
}

.search-icon1::before {
    content: "" !important;
}

.pagination {
    display: inline-block;
}

    .pagination a {
        color: black;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        border: 1px solid #ddd;
    }

        .pagination a.active {
            background-color: #1e54a0;
            color: white;
            border: 1px solid #1e54a0;
        }

        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }

        .pagination a:first-child {
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
        }

        .pagination a:last-child {
            border-top-right-radius: 5px;
            border-bottom-right-radius: 5px;
        }

/*table {
    border-collapse: collapse;
  }

  th, td {
    padding: 15px;
    text-align: right;
    border-bottom: 1px solid #ddd;
  }
  table {
    /* border: 1px solid; */

/*tr.GridHeader {
    background-color: #1e54a0;
    border: 2px solid #DBE6FD;
}*/


table th {
    color: #fff;
    padding: 10px;
    text-align: center !important;
    /*border-bottom: 1px solid #ddd;*/
    font-size: 15px !important;
}

    table th > a {
        color: #fff;
        /*padding: 10px;*/
        text-align: center;
        width: 100%;
        font-size: 12px !important;
        text-decoration: none;
    }

/*table td {
    font-size: 14px !important;
    font-family: IRANSans !important;
    font-weight: 600;
}*/

/*table tr:hover {
    background-color: #E3BD27;
}*/


/*table tr:nth-child(odd) {
    background-color: #ccc9c9;
}*/


caption {
    caption-side: top !important;
    text-align: right;
}

/*.GridItems > th, td {
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}


.GridItems tr:nth-child(even) {
    background-color: #ccc9c9;
}

.GridTitle {
    font-family: Tahoma;
    font-size: 13px;
    background-color: #e6e6e6;
    color: #777777;
    border-bottom: solid 1px #DBE6FD;
    height: 20px;
}

.GridHeader {
    background-color: #e6e6e6;
    font-size: 11px;
    color: #777777;
    border-bottom: solid 1px #DBE6FD;
    font-weight: normal;
    border: transparent;
}

.GridHeaderLeft {
    border-bottom: solid 1px #DBE6FD;
    background: url(images/capr.png) no-repeat;
    width: 25px;
}

.GridHeaderRight {
    border-bottom: solid 1px #DBE6FD;
    background: url(images/capl.png) no-repeat;
    width: 25px;
}

.GridItems {
    font-size: 9pt;
    padding: 6px;
    text-align: center;
    margin-left: 2px;
    margin-right: 2px;
    /*border-left: 1px solid #dbe6fd;
    border-right: 1px solid #dbe6fd;
    border-top: 1px solid #DBE6FD;
    border-bottom: 1px solid #DBE6FD;*/
    /*background-color: White;*/


.GridItem {
    font-size: 9pt;
    padding: 6px;
    text-align: center;
    margin-left: 2px;
    margin-right: 2px;
    /*border-left: 2px solid #DBE6FD;
    border-right: 2px solid #DBE6FD;
    border-top: 2px solid #DBE6FD;
    border-bottom: 2px solid #DBE6FD;
    background-color: #e3ebef;*/
}

/*.GridRowAlternative {*/
    /*text-align: center;
    font-size: 11px;
    margin-left: 2px;
    margin-right: 2px;
    /*border-left: 2px solid #DBE6FD;
    border-right: 2px solid #DBE6FD;
    border-top: 2px solid #DBE6FD;
    border-bottom: 2px solid #DBE6FD;*/
    /*background-color: #c5c8cc;*/ 


.page-status {
    border: 1px solid rgb(196, 190, 184);
    background-origin: padding-box;
    /* border-radius: 10px 10px 10px 10px; */
    color: #000000;
    line-height: 30px;
    font-weight: 900px;
    text-align: center;
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 0;
    padding: 10px;
}

    .page-status:active {
        background-color: #E3BD27;
    }

.caption {
    border: 1px solid rgb(196, 190, 184);
    background-origin: padding-box;
    /* border-radius: 10px 10px 10px 10px; */
    color: #000000;
    line-height: 27px;
    font-weight: 900px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    margin: 5px;
    background-color: #E3BD27;
   
    padding: 10px;
    width: 150px;
}

.iframe {
    width: 100%;
    height: 1000px;
}

a:hover {
    text-decoration: none;
    color: #FE8A7D;
}

.shadow-box {
    box-shadow: 0 .5rem 1rem #E3BD27 !important;
}

.btnLast {
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    /*background-color: chocolate;*/
    background: url(../images/Last.png) no-repeat;
    height: 30px;
    width: 30px;
}

.btnFirst {
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/First.png) no-repeat;
    height: 30px;
    width: 30px;
}

.btnPrev {
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/Previous.png) no-repeat;
    height: 30px;
    width: 30px;
    padding: 0px !important;
    margin: 1px !important;
}

.btnGo {
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/Apply.png)no-repeat;
    height: 30px;
    width: 30px;
    padding: 0px !important;
    margin: 1px !important;
}

.btnNext {
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/next.png) no-repeat;
    height: 30px;
    width: 30px;
}

/*/*.btnSave {
    width: 34px;
    height: 33px;
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/Save.png) no-repeat;
}

.btnUpdate {
    width: 34px;
    height: 32px;
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/Save.png) no-repeat;
}

.btnDelete {
    width: 34px;
    height: 32px;
    border-style: hidden;
    border-style: none;
    cursor: pointer;
    background: url(../images/Delete.png) no-repeat;
}*/*/

.ErrorItem {
    font-family: Tahoma;
    font-size: 9pt;
    color: #FF0066;
    border-style: hidden;
    border-style: none;
    border-color: Background;
    background-color: Transparent;
}

/*.TextItem {
    font-size: 9pt;
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}*/

.center-img{
max-width:80%;
}

 /*table .FieldsTable {
  
    background-color:aqua !important;
}*/