/*********** reset **********/
* {
    padding: 0;
    margin: 0;
    line-height: 1;
    box-sizing: border-box;
}

html {
    font-size: 12px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.border {
    border: solid 1px #ddd;
}

.p10 {
    padding: 10px;
}

.p20 {
    padding: 20px;
}

.p30 {
    padding:30px;
}

/********** end reset *******/

.page-wrap {
    width: 100%;
    min-height: 100vh;
    display: flex;
}

.sidenav {
    width: 15%;
    max-width: 200px;
    background-color: #f57f2d;
    position: relative
}

.sidenav-ins {
    width: 100%;
    height: 100%;
    position: sticky;
}

.sidenav-top {
    width: 100%;
    height: auto;
    position: relative;
}

.sidenav-top-ins {
    width: 100%;
    position: abslute;
    height: 70px;
    padding: 0 15px;
    top: 0;
    left: 0;
    background-color: #ddd;
}

.sidenav-top-ins .logo {
    width: 100%;
    padding-top: 15px;
}

.logo img {
    width: 100%;
}

.sidenav-top-ins h1 {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 70px;
}

.sidenav-top-ins h1 span {
    color: #46529e;
}

.navigation {
    width: 100%;
}

.navigation ul {
    width: 100%;
    height: auto;
}

.navigation ul li {
    height: 50px;
    width: 100%;
}

.navigation ul li a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    padding: 15px;
    font-size: 1.1rem;
    text-decoration: none;
}

.navigation ul li a .las {
    margin-right: 10px;
}

.navigation ul li.active {
    background-color: rgba(58,50,56, 0.8);
}

.navigation ul li:hover {
    background-color: #333;
}

.content {
    min-height: 100vh;
    width: 100%;
}

.content-header {
    width: 100%;
    height: 70px;
    padding: 15px 2%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    width: 50%;
}

.nav-trigger {
    display: none;
}

.close-nav {
    display: none;
}

form {
    width: 100%;
}

.search-bar {
    width: 100%;
    height: 35px;
    border-radius: 10px;
    border: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-items: flex-start;
    padding: 0 0 0 10px;
}

.search {
    border: none;
    outline: none;
    width: calc(100% - 40px);
}

.search-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    background: transparent;
}


.header-right {
    width: 300px;
    display: flex;
    justify-content: flex-end;
}

.notification-wrap, .user-wrap {
    height: 30px;
    position: relative;
}

.notification-wrap {
    margin-right: 20px;
    width: 30px;
    position: relative;
}

.notification-icon {
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
    position: relative;
    border-radius: 50%;
    background-color: #eee;
    transform: translateY(-5px);
    text-align: center;
}

.notifi-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    font-size: 12px;
} 

.notifi-counter.active {
    background-color: red;
}

.notification-wrap .notification-cont {
    width: 200px;
    top: 100%;
    right: 0;
    z-index: 100;
    transition: all 0.3s linear;
    display: none;
    position: absolute;
    transform: translateY(10px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 0px;
    border-radius: 5px;
}

/*
.notification-wrap:hover .notification-cont {
    min-height: 180px;
    top: 100%;
    right: 0;
    z-index: 100;
    /* background-color: #cae3ff;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow: visible;
    padding: 0px 15px 15px;
    border-radius: 5px;
}
*/

.notifi-itm {
    padding: 10px 15px;
    border-bottom: solid 1px #ddd;
}

.notifi-itm-txt {
    margin-bottom: 10px;
}

.notifi-itm:last-of-type {
    border-bottom: none;
}

.user {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-3px);
    height: 35px;
    font-size: 1.1rem;
}

.user .user-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    border: solid 1px #333;
}

.user .user-icon img {
    width: 100%;
}

.user .user-text {
    display: inline-block;
}

.user-wrap .user-cont {
    width: 200px;
    top: 100%;
    right: 0;
    z-index: 100;
    position: absolute;
    display: none;
    transform: translateY(10px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 0px 15px 15px;
    border-radius: 5px;
}

/*
.user-wrap:hover .user-cont {
    min-height: 130px;
    top: 100%;
    right: 0;
    z-index: 100;
}
*/

.user-cont ul {
    width: 100%;
    padding: 10px 0;
    list-style-type: none;
}

.user-cont ul li {
    width: 100%;
}

.user-cont ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #333;
    font-size: 1rem;
    line-height: 35px;
}

.user-cont ul li a .las {
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: #cae3ff;
    margin-right: 10px;
}


.main-content {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f6fa;
}

.dashboard {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.dashboard-left {
    height: 100%;
    padding: 30px;
    flex: 3;
}


.dashboard-section {
    width: 100%;
    height: auto;
    margin: 20px auto;
}

.white-bg {
    background: #fff;
}

.welcome-text {
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

.section-content {
    width: 100%;
    height: auto;
}

.section-content table {
    width: 100%;
}

.table-btn-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.table-btn {
    width: auto;
    height: 25px;
    padding: 0 7px;
    font-size: 16px;
    line-height: 23px;
    margin: 0 3px;
    color: #000;
    border: solid 1px #ccc;
    background: #fff;
    border-radius: 4px;
    text-align: center;
}

.boxes-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box1 {
    width: 23%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    border: solid 1px #ddd;
    background-color: #fff;
    transition: 0.3s all;
}

.box1 .icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #46529e;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    transition: 0.3s all;
}

.box1:hover {
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.box1:hover .icon {
    background-color: #2ebaef;
}

.box1 .txt {

}

.box1 .num {
    font-size: 2.2rem;
}

.box1 .title {
    width: 100%;
    text-align: center;
}



.dashboard-right {
    padding: 30px;
    height: 100%;
    flex: 1;
    display: none;
}

.dashboard-notifications {
    width: 100%;
    height: auto;
}

.notification {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background-color: #fff;
    border: solid 1px #ddd;
    padding: 15px 25px 15px 15px;
    position: relative;
    margin-bottom: 10px;
}

.notifi-text p {
    line-height: 1.4;
}

.notifi-close {
    position: absolute;
    font-size: 14px;
    top: 10px;
    right: 10px;
}

.content-ins {
    width: 96%;
    margin: 0px auto;
    padding: 30px 0;
}

.content-flex {
    display: flex;
    justify-content: space-between;
}

.msg-nav {
    width: 18%;
    max-width: 240px;
}

.msg-nav ul {
    width: 100%;
    list-style-type: none;
}

.msg-nav ul li {
    margin-bottom: 10px;
}

.msg-nav ul li a {
    display: block;
    width: 100%;
    padding: 0 15px;
    height: 45px;
    line-height: 43px;
    border: solid 1px #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.msg-nav ul li a:hover {
    text-decoration: none;
    background-color: #eee;
}

.msg-nav ul li a .la {
    font-size: 1.8rem;
    margin-right: 10px;
}

.msg-content {
    width: 80%;
    border: solid 1px #ddd;
}


.msg-content-top {
    width: 100%;
    min-height: 50px;
    background-color: #eee;
    padding: 20px;
}

.msg-cont-top-itm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.msg-cont-label {
    font-size: 1rem;
    width: 20%;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    display: block;
    background-color: #333;
    color: #fff;
}

.msg-cont-input {
    height: 30px;
    width: 80%;
    padding: 0 10px;
    line-height: 28px;
    border: solid 1px #aaa;
}

.msg-content-text {
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.msg-content-text article {
    line-height: 1.5;
}

.msg-content-text p {
    line-height: 1.5;
}

.message-sender {
    font-size: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-sender a {
    color: #333;
}

.message-title {
    font-size: 14px;
    color: #333;
}

.message-title a {
    color: #333;
}

.message-textarea {
    width: 100%;
    padding: 15px;
    border: solid 1px #aaa;
    margin-bottom: 15px;
}

.modal.show .modal-dialog {
    margin-top: 100px;
}

#new_client {
    display: none;
}

.display-itm {
    width: 100%;
    min-height: 40px;
    display: flex;
    font-size: 1rem;
    line-height: 1.3;
}

.display-itm span.label {
    width: 200px;
    font-weight: bold;
}

.display-itm span.textcontent {
    width: 66%;

}

.details {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.detail_picture {
    width: 25%;
    position: relative;
    
}

.detail_picture_ins {
    width: 100%;
    padding-bottom: 90%;
    position: relative;
    overflow: hidden;
    border: solid 1px #ccc;
}

.detail_picture_ins img {
    width: 100%;
    position: absolute;
}

.detail_text {
    width: 70%;
}

.text_itm {
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.2rem;
    padding: 5px 10px;
}

.text_itm:nth-of-type(even) {
    background-color: #eee;
}

.text_itm .label {
    width: 250px;
    margin-right: 2%;
    position: relative;
}

.text_itm .label::after {
    content: ':';
    position: absolute;
    right: 0;
}

.text_itm .text-content {
    width: 72%;
}

.text_itm .las {
    font-size: 2rem;
    margin-right: 10px;
}

.navigation-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.inner-navigation {
    height: auto;
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0;
}

.inner-navigation li {
    width: auto;
}

.inner-navigation .btn {
    margin: 0 10px 20px 0;
}

.inner-navigation .pull-right {
    align-self: flex-end;
}

.valuation_comments {
    width: 70%;
    margin: 30px 0;
    padding: 20px;
    border: solid 1px #ddd;
}

.valuation_comments h3 {
    margin-bottom: 20px;
}

.val-comment {
    border-top: solid 1px #ddd;
    margin-bottom: 15px;
}

.val-comment .comment-txt {
    padding: 15px;
}
.val-comment .comment-date {
    padding: 0 15px;
}

.table tr:last-of-type() {
    border-bottom: solid 1px #ddd;
}

.filter-btn-wrap {
    display: flex;
}

.filter-btn {
    height: 30px;
    margin-bottom: 10px;
}

.filter-form {
    display: none;
}

.invalid-feedback {
    color: red;
    display: block;
}

.input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select {
    height: 44px;
}

.tbl-header, .tbl-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tbl-header {
    font-weight: 700;
    text-transform: uppercase;
}

.tbl-content {
    font-weight: 300;
}

.tbl-content:nth-of-type(even) {
    background-color: #eee;
}

.tbl-header .block5, .tbl-content .block5 {
    width: 5%;
    padding: 10px;
}

.tbl-header .block10, .tbl-content .block10 {
    width: 10%;
    padding: 10px;
}

.tbl-header .block15, .tbl-content .block15 {
    width: 15%;
    padding: 10px;
}

.tbl-header .block20, .tbl-content .block20 {
    width: 20%;
    padding: 10px;
}

.tbl-header .block25, .tbl-content .block25 {
    width: 25%;
    padding: 10px;
}

.tbl-header .block30, .tbl-content .block30 {
    width: 30%;
    padding: 10px;
}

.tbl-content .block5,
.tbl-content .block10,
.tbl-content .block15,
.tbl-content .block20,
.tbl-content .blcok25,
.tbl-content .block30 {
    
}

.val_status {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 5px;
    color: #fff;
}

.val_status.new {
    background-color: rgb(222, 22, 3);
}

.val_status.assigned {
    background-color:rgb(189, 33, 1);
}

.val_status.inspected {
    background-color:rgb(189, 104, 1);
}

.val_status.submitted {
    background-color:rgb(139, 189, 1);
    color: #000;
}

.val_status.completed {
    background-color: rgb(1, 189, 92);
}


