:root {
    --primary: #ef1c22;
    --secondary: #221e20;
    --black: #000;
    --white: #fff;
    --headingColor: #252525;
}
html {
    -webkit-text-size-adjust: 100%;
}
* {
    box-sizing: border-box;
    outline: none !important;
    font-family: "Open Sans", sans-serif;
}
.chromeperfectpixel-overlay,
.chromeperfectpixel-overlay-container {
    width: 100% !important;
    pointer-events: none !important;
    height: auto !important;
}
button:focus {
    outline: none !important;
    box-shadow: none !important;
}
body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}
img {
    max-width: 100%;
    display: block;
    height: auto;
}
input,
textarea,
button,
select,
span,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input:autofill,
textarea:autofill,
select:autofill {
    filter: none;
    -webkit-filter: none;
}
::-moz-selection {
    /* Code for Firefox */
    color: var(--primary);
    background: #fff;
}

::selection {
    color: var(--primary);
    background: #ffffff;
}
html,
body {
    width: 100%;
    height: 100%;
}
body {
    background-color: #f3f3fb;
}
body,
p,
li {
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    font-family: "Open Sans";
}
p {
    margin: 0 0 40px 0;
}
p:last-child {
    margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--headingColor);
    font-weight: 700;
}
body a {
    color: #565656;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
}
body a:hover {
    color: var(--primary);
}
.clearfix::before,
.clearfix::after {
    visibility: hidden;
    display: table;
    content: " ";
    clear: both;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.d-flex {
    display: flex;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-space {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.align-start {
    align-items: flex-start;
}
.align-center {
    align-items: center;
}
.align-end {
    align-items: flex-end;
}

input,
textarea,
select {
    display: block;
    font-size: 15px;
    padding: 10px;
    width: 100%;
    color: #171716;
    font-weight: 400;
    background: transparent;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    -o-appearance: none !important;
    font-weight: 400;
    color: #000000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #ebebeb;
    line-height: 1.412;
}
textarea {
    height: 155px;
}

::-webkit-input-placeholder {
    color: inherit;
}
:-ms-input-placeholder {
    color: inherit;
}
::placeholder {
    color: inherit;
}
button {
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    cursor: pointer;
}
input[type="submit"]:focus {
    outline: none;
}
select {
    outline: none !important;
}
ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*New Login*/
.login-view {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.login-view .left-part {
    width: 41.667%;
    background: #dbe5e6;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.login-view .right-part {
    width: 58.333%;
}
.bg-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}
.bg-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(97, 97, 97);
    z-index: 0;
    opacity: 1;
}
.bg-block img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    opacity: 0.2;
}
.login-view .right-part,
.login-view .left-part {
    padding: 74px 94px;
}
.login-content h1 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-transform: unset;
    letter-spacing: 1.4px;
    margin-bottom: 22px;
    text-shadow: 1px 2px 10px rgb(0, 0, 0);
}
.login-content p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.667;
    max-width: 82%;
    font-weight: 400;
    text-shadow: 1px 2px 10px rgb(0, 0, 0);
}
.login-bottom p {
    font-size: 14px;
    color: #ffffff;
}
.form-title {
    font-size: 30px;
    color: #000000;
    font-weight: 500;
    margin: 0;
    text-transform: unset;
    letter-spacing: 1.4px;
    margin-bottom: 31px;
}
.login-view form {
    max-width: 412px;
    margin: 0 auto;
    width: 100%;
}
.login-view .form-group:not(:last-child) {
    margin-bottom: 23px;
}
.login-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 38px;
    justify-content: space-between;
}
.login-footer input[type="submit"] {
    font-weight: 700;
    font-size: 16px;
    background: var(--primary);
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0;
    max-width: 143px;
    margin: 0;
}
.login-footer input[type="submit"]:hover {
    background: var(--white);
}
.login-view .right-part {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.login-content {
    margin: auto;
}

/* Login Start*/

.login {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
    margin-bottom: 80px;
    display: block;
}
.login .wrapper {
    width: 100%;
}
.login-form-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 730px;
    border-radius: 18px;
    box-shadow: 4px 6.928px 25px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 4px 6.928px 25px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    margin: auto;
    width: 100%;
    padding: 4.167% 8.4%;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: inherit;
    opacity: 1;
    color: inherit;
    font-weight: inherit;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    font-size: inherit;
    opacity: 1;
    color: inherit;
    font-weight: inherit;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+ */
    font-size: inherit;
    opacity: 1;
    color: inherit;
    font-weight: inherit;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    font-size: inherit;
    opacity: 1;
    color: inherit;
    font-weight: inherit;
}
input::placeholder,
textarea::placeholder {
    font-size: inherit;
    opacity: 1;
    color: inherit;
    font-weight: inherit;
}
.login-form input[type="password"]::placeholder {
    letter-spacing: 5px;
    color: #777777;
    line-height: 1.9;
}
label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 7px;
    display: block;
}
.site-logo {
    margin-bottom: 70px;
}
.form-block {
    width: 100%;
}
.alert.alert-danger.error {
    font-size: 12px;
    color: red;
}
.form-group:not(:last-child) {
    margin-bottom: 14px;
}

.alert.alert-danger.error {
    margin-top: 4px;
}

.alert.alert-danger.alert-block {
    position: relative;
    padding: 20px 15px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert.alert-danger button {
    display: none;
}

.alert.alert-success.error {
    margin-top: 10px;
}

.alert.alert-success.alert-block {
    position: relative;
    padding: 20px 15px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #0f6b34;
    background-color: #cfe4d4;
    border-color: rgb(143, 218, 133);
}

.d-none {
    display: none;
}

/* .error{display: none;} */

label.error {
    color: red;
    font-weight: normal;
    font-size: 13px;
}
input[type="submit"],
input[type="button"] {
    letter-spacing: 3px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary);
    margin: 30px 0;
    display: block;
    cursor: pointer;
    border: 1px solid var(--primary);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
    background-color: transparent;
    color: var(--primary);
}
input[type="checkbox"],
input[type="radio"] {
    position: absolute;
    visibility: hidden;
    z-index: -999;
    padding: 0;
    margin: 0;
    width: auto;
}
.form-option {
    padding-left: 44px;
    position: relative;
    cursor: pointer;
}
.form-option .checkmark {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #ffffff;
    border: 1px solid #d1d1d1;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -3px;
}
.form-option .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid var(--primary);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form-option input:checked ~ .checkmark:after {
    display: block;
}
.form-actions > * {
    font-size: 15px;
    color: #b4b4b4;
    font-weight: 400;
    margin: 0;
}
label.form-option {
    color: #555555;
    font-weight: 600;
}

/* Login End*/

/* Grid CSS */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
[class*="col"] {
    padding: 0 12px;
}
.col-md-1 {
    width: 8.3333333333%;
}
.col-md-2 {
    width: 16.6666666667%;
}
.col-md-2_5 {
    width: 20%;
}
.col-md-3 {
    width: 25%;
}
.col-md-4 {
    width: 33.3333333333%;
}
.col-md-5 {
    width: 41.6666666667%;
}
.col-md-6 {
    width: 50%;
}
.col-md-7 {
    width: 58.3333333333%;
}
.col-md-8 {
    width: 66.6666666667%;
}
.col-md-9 {
    width: 75%;
}
.col-md-10 {
    width: 83.3333333333%;
}
.col-md-11 {
    width: 91.6666666667%;
}
.col-md-12 {
    width: 100%;
}

h1 {
    font-size: 30px;
    text-transform: uppercase;
}
h2 {
    font-size: 20px;
    text-transform: uppercase;
}
h3 {
    font-size: 25px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 17px;
}
.dashboar-right p {
    font-size: 17px;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
}

.dashboard_title p {
    font-weight: 400;
}
.dashboard-right {
    width: calc(100% - 122px);
    margin: 0 0 0 auto;
    padding: 20px 50px;
    background-color: #f4f4fc;
}
.header-action:not(:first-child) {
    padding-left: 42px;
}
.header-search input {
    background-image: url("images/search-icon.svg");
    background-position: left 24px center;
    background-repeat: no-repeat;
    border-radius: 25px;
    background-color: #ffffff;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 24px 12px 58px;
}
.header-search {
    width: 45.355%;
}
.notification-icon {
    position: relative;
}
.notification-icon img {
    height: 42px;
}
.notification-icon .notification_count {
    position: absolute;
    top: 4px;
    right: -4px;
    width: 20px;
    height: 20px;
    text-align: center;
    background: red;
    display: block;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: normal;
}
.user-profile .profile-menu-arrow {
    padding-left: 12px;display: flex;
}
.user-img {
    border-radius: 50%;
    padding: 5px;
    position: relative;
    background-color: var(--white);
}
.user-img img {
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
}
.user-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.user-profile.align-center{align-items:unset;}

.dashboard-tabs {
    margin: 25px 0;
}
.dashboard-tabs > .row:first-child {
    margin: -12px;
}
.card {
    padding: 12px;
}
.col-md-3.card {
    width: auto;
}
.card-wrap {
    border-radius: 24px;
    box-shadow: 5px 8.66px 55.5px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 5px 8.66px 55.5px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border: 1px solid #d3d3d3;
    padding: 10px 26px;
    position: relative;
    text-align: center;
}
.card-icon {
    margin-bottom: 26px;
}
.card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
.card .card-title {
    position: relative;
    z-index: 1;
}
.card .card-title h5 {
    font-weight: 600;
    font-size: 15px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table th {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 600;
}
table tr td {
    font-size: 15px;
    line-height: 1.5;
    color: #333333;
    font-weight: 400;
    padding: 10px 32px;
}
table td,
table th {
    padding: 12px 33px;
    text-align: left;
}
table th {
    overflow: hidden;
    background-color: var(--secondary);
}
table thead th:first-child {
    border-top-left-radius: 15px;
}
table thead th:last-child {
    border-top-right-radius: 15px;
}
table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}
table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}
/* .table-block{overflow-x: auto;border-radius: 15px;} */
table tbody tr:last-child td {
    border-bottom: none;
}
table tbody tr td:last-child {
    border-right: none;
}
table td {
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    background-color: #fff;
}
table * {
    transition: all 0.3s ease;
}
table tbody tr:hover td {
    box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
    -webkit-box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
    z-index: 99;
    position: relative;
}
table tbody tr:hover td a.action-btn {
    box-shadow: 5px 8.66px 7.5px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 5px 8.66px 7.5px rgba(0, 0, 0, 0.08);
}
.table-center th,
.table-center td {
    text-align: center;
}
.action-btn,input.action-btn {
    border-radius: 15px;
    background-color: var(--white);
    border: 1px solid #777777;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    font-family: "Open Sans";
    line-height: 1.4;
    display: inline-block;
    padding: 4px 25px;letter-spacing:0;text-transform:none;
}
.action-btn:hover,input.action-btn:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}
table tr td.action-data {
    text-align: center;
}
.table-block {
    margin: 16px 0;
}
.table-layout-content {
    margin: 0 0 38px 0;
}
.table-layout .table-layout-content:last-child {
    margin-bottom: 0;
}
.card.active .card-wrap {
    border-color: var(--primary);
}
.card-wrap::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
    height: 18px;
    width: 18px;
    border-radius: 0 0 0 2px;
    bottom: 0px;
    background: var(--white);
    border-bottom: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
    opacity: 0;
    transition: all 0.3s;
}
.card.active .card-wrap:after {
    opacity: 1;
}

/* Sidebar */
.multi-logo {
    position: relative;
    height: 60px;
}
.multi-logo img {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
}
.multi-logo img.logo2 {
    opacity: 0;
}
.sidebar.current .multi-logo img.logo1 {
    opacity: 0;
}
.sidebar.current .multi-logo img.logo2 {
    opacity: 1;
}
.no-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.no-list li {
    padding: 0;
    margin: 0;
}
.no-list li a {
    padding: 0;
    margin: 0;
    display: block;
}
aside.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: #ececf6;
    width: 122px;
    overflow: hidden;
    transition: all 0.5s;
    overflow-y: auto;
    z-index: 999;
}
aside.sidebar.current {
    width: 325px;
    filter: drop-shadow(19.151px 16.07px 50.5px rgba(0, 0, 0, 0.12));
    -webkit-filter: drop-shadow(19.151px 16.07px 50.5px rgba(0, 0, 0, 0.12));
}
aside.sidebar.current ul.sb_top_lv li span {
    left: 90px;
    transition-delay: 0.318s;
    opacity: 1;
}
aside.sidebar ul.sb_top_lv {
    float: left;
    width: 100%;
}
aside.sidebar ul.sb_top_lv li a {
    float: left;
    width: 100%;
    color: #000;
    position: relative;
    padding: 12px 45px;
    text-align: left;
    transition: all 0.3s;
    margin: 12px 0;
    display: flex;
}
aside.sidebar.current ul.sb_top_lv li:hover ul.sb_dropdown {
    height: auto;
    opacity: 1;
    left: 0px;
}
aside.sidebar ul.sb_top_lv li span {
    transition: all 0.2s;
    position: absolute;
    left: 100px;
    font-size: 17px;
    top: 50%;
    opacity: 0;
    font-weight: 600;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}
aside.sidebar ul.sb_dropdown {
    transition: all 0.5s;
    position: relative;
    opacity: 0;
    top: 0;
    height: 0px;
    overflow: hidden;
    width: 100%;
    left: 25px;
}
aside.sidebar ul.sb_dropdown p {
    text-align: center;
}
aside.sidebar ul.sb_dropdown li {
    margin: 0;
}
aside.sidebar ul.sb_dropdown li a {
    color: #000;
    font-size: 15px;
    margin-top: 0;
    padding: 10px 40px 10px 90px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
aside.sidebar ul.sb_top_lv li.active-menu > a {
    color: var(--primary);
}
aside.sidebar ul.sb_top_lv li a:hover {
    color: var(--primary);
}
aside.sidebar ul.sb_dropdown li a:hover {
    color: #767676;
}
aside.sidebar ul.sb_dropdown li a::after {
    display: none;
}

aside.sidebar ul.sb_top_lv li a svg {
    fill: #757575;
    max-width: 24px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    max-height: 24px;
}
aside.sidebar ul.sb_top_lv li a:hover svg path,
aside.sidebar ul.sb_top_lv li.active-menu a svg path{
    fill: var(--primary);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

aside.sidebar ul.sb_top_lv li a::after {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    right: 0;
    background-color: var(--primary);
    width: 2px;
    height: 0%;
    content: "";
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
aside.sidebar ul.sb_top_lv li a:hover::after,
aside.sidebar ul.sb_top_lv li.active-menu a::after {
    height: 100%;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
aside .menu-icon span {
    display: block;
    height: 3px;
    width: 26px;
    background-color: #b6b6b6;
    margin: 6px 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
aside .menu-icon span:nth-child(2) {
    width: 15px;
}
aside .menu-icon span:nth-child(3) {
    width: 10px;
}
aside .menu-icon a:hover span,
.sidebar.current .menu-icon a span {
    background-color: #171721;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
aside .menu-icon {
    margin: 20px 10px;
}
aside .logo {
    background-color: #fff;
    text-align: left;
    padding: 15px 30px;
    text-align: left;
    min-height: 102px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
aside .logo a {
    display: inline-block;
    width: 62px;
    overflow: hidden;
}
aside .logo a img {
    display: block;
    max-height: 60px;
    max-width: unset;
}
aside .menu-icon a {
    display: block;
    cursor: pointer;
}
aside .menu-icon {
    margin: 50px 45px 25px;
}
aside.sidebar.current .logo a {
    width: 100%;
}
/* aside.sidebar .logo a img.logo2 {display: none;} */
/* aside.sidebar.current .logo a img.logo1 {display: none;} */
/* aside.sidebar.current .logo a img.logo2 {display: block;} */

/* Copied the text: /* ===== Scrollbar CSS ===== */
/* Firefox */
aside.sidebar {
    scrollbar-width: none;
    scrollbar-color: #c0c0c0 #ffffff;
}

/* Chrome, Edge, and Safari */
aside.sidebar::-webkit-scrollbar {
    width: 2px;
}

aside.sidebar::-webkit-scrollbar-track {
    background: #ffffff;
}

aside.sidebar::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 2px;
    border: 1px solid #ffffff;
}

/* Vendors */

/* .card.chip-card .card-wrap {
  border-radius: 10px;
} */

/* Timesheets */

.timesheets-table {
    padding: 50px;
    background: #fff;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.timesheets-table .table-layout,
.timesheets-table .table-layout-content,
.timesheets-table .table-block {
    margin-bottom: 0;
}

.timesheets-table table thead th {
    background-color: #fafafa;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    line-height: 2.5;
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}
.timesheets-table table thead th span {
    display: inline-block;
    border-radius: 30px;
    background-color: transparent;
    padding: 4px 12px;
    cursor: pointer;
}
.timesheets-table table thead th span:hover {
    background-color: #ef1c22;
    color: #fff;
}
.timesheets-table table thead th:first-child {
    border-top-left-radius: 7px;
}
.timesheets-table table thead th:last-child {
    border-top-right-radius: 7px;
}
.timesheets-table table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 7px;
}
.timesheets-table table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 7px;
}
.timesheets-table table th,
.timesheets-table table td {
    text-align: center;
}

/* .timesheets-table table{border: 1px solid #f2f2f2;background: #fafafa;border-radius: 7px;} */
.timesheet-span p {
    margin: 0;
    color: #333333;
    font-weight: 600;
    font-size: 18px;
}
.timesheet-span {
    border-radius: 8px;
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    padding: 10px 20px;
}
.timesheet-span-buttons button {
    padding: 17px 13.5px;
    background-color: #ffffff;
    border-radius: 6px;
    transition: all 0.3s;
}
.timesheet-span-buttons {
    margin: 0 0 0 20px;
    border: 1px solid #d3d3d3;
    border-radius: 6px;
}
.timesheet-span-buttons button:hover {
    background: #f2f2f2;
}
.timesheets-table table td strong {
    margin-bottom: 8px;
    display: block;
}
.timesheets-table table th {
    padding: 16px 26px;
}
.timesheets-table table td {
    padding: 18px 18px 17px;
    vertical-align: top;
}
.timesheets-table table td:not(:first-child) {
    font-weight: 600;
    color: #777777;
}
.timesheets-table .table-block {
    overflow: auto;
    border-radius: 7px;
    border: 1px solid #f2f2f2;
}
.pt-0,
section .pt-0,
div .pt-0 {
    padding-top: 0;
}
.pb-0,
section .pb-0,
div .pb-0 {
    padding-bottom: 0;
}
section .plr-0 {
    padding-left: 0;
    padding-right: 0;
}
.mb-0,
section .mb-0 {
    margin-bottom: 0 !important;
}
.mt-0,
section .mt-0 {
    margin-top: 0 !important;
}
.total-data strong {
    margin-top: 13px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1;
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0 !important;
}
.total-data-mobile {
    display: none;
}

/* Dashboard Forms */
.dashboard-tabs-content-box .row[class*="col-md-"] {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
}
.form-group[class*="col-md-"] {
    padding: 0 12px;
}
.dashboard-tabs-content-box {
    display: none;
}
.dashboard-tabs-content-box .form-block.common-form {
    background-color: #fff;
    display: block;
    padding: 50px 45px;
    border-radius: 28px;
    -webkit-border-radius: 28px;
    margin-top: 18px;position:relative;
}
.dashboard-tabs-content-box {
    margin: 44px 0 0 0;
}
label.form-group-label {
    text-transform: uppercase;
    margin: 6px 0 26px;
}
.row > label.form-group-label {
    padding: 0 10px;
}
[class="form-group"] {
    width: 100%;
}
.w-full {
    width: 100%;
}
.row-group .row {
    margin: 0 -10px;
}
.input-w-half .form-group {
    width: 49%;
}
.input-w-half {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input-w-three {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input-w-three .form-group {
    width: 32%;
}

.field_radio-main,
.field_chbox-main {
    margin-top: 10px;
}
.field_radio-row,
.field_chbox-row {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 25px;
    /* margin-bottom: 0; */
}
.field_radio-row:last-child,
.field_chbox-row:last-child {
    margin-bottom: 0;
}
.field_radio,
.field_checkbox {
    border: 0;
}
.field_radio label::before {
    left: 6px;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    top: 0px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    content: " ";
}

.field_radio label::after,
.field_checkbox label::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    bottom: 0;
    margin: auto;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    border: 1px solid #c9c9c9;
}
.field_radio input:checked ~ label::before,
.field_checkbox input:checked ~ label::before {
    display: block;
}
.field_radio label,
.field_checkbox label {
    display: inline-block;
    letter-spacing: inherit;
    vertical-align: middle;
    cursor: pointer;
}
.field_radio input,
.field_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.field_radio label::before,
.field_checkbox label:before {
    content: "";
    position: absolute;
    display: none;
}
.field_radio label,
.field_checkbox label {
    position: relative;
    padding-left: 31px;
    font-size: 14px;
    width: auto;
    max-width: inherit;
    font-weight: 400;
    color: #000;
    line-height: 1.4;    
    text-align: left;
}
.field_radio label,
.field_checkbox label:last-child {
    margin-bottom: 0;
}
.field_radio,
.field_checkbox {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 30px 10px 0;
}
.field_checkbox label::before {
    width: 5px;
    height: 10px;
    border: solid var(--primary);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: transparent;
    top: 3px;
    left: 7px;
    border-radius: 0px 0px 0px 0px;
    z-index: 1;
}
.field_checkbox label::after {
    border-radius: 5px;
}

.field_chbox-main.chbx-hr {
    display: flex;
}
.field_chbox-main.chbx-hr > label {
    margin-bottom: 0;
    margin-right: 15px;
}
.field_chbox-main.chbx-hr .field_chbox-row {
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.form-group.calendar-date {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.calendar-date label {
    margin-right: 20px;
    margin-bottom: 0;
    margin-left: 20px;
}
.lable-font-normal label {
    font-weight: 400;
}
.calendar-date label:first-child {
    margin-left: 0;
}
.calendar-date input {
    max-width: 250px;
    background-color: #f9f9f9;
}
.btn.btn-primary.small-btn {
    display: inline-block !important;
    width: auto;
    padding-left: 90px;
    padding-right: 90px;
    font-weight: 700;
    margin: 10px 0 0 0;
}
.button-group-flex .btn.btn-primary.small-btn {
    width: 130px;
    padding: 10px;
    letter-spacing: 0.5px;
}
/*.dashboard-tabs-content-box input,*/
/*.dashboard-tabs-content-box textarea,*/
/*.dashboard-tabs-content-box select {*/
/*    padding-top: 20px;*/
/*    padding-bottom: 20px;*/
/*}*/
.dashboard-tabs-content-box .form-group,
.form-group {
    margin-bottom: 20px;
}

.file-up {
    position: relative;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 9px 10px;
    background-color: #f9f9f9;
}
.file-up p {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
    margin: 0;
    max-width: 45%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.file-up span {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    background-image: url("images/file-icon.png");
    background-repeat: no-repeat;
    background-position: center left 0;
    padding: 0px 0 0px 28px;
    background-size: 17px;
    display: flex;
    align-items: center;
}
.file-up input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
    z-index: 1;
}
.file-up span::after {
    border: 1px solid #000;
    font-size: 11px;
    content: "Browse Files";
    margin: 0 0 0 10px;
    padding: 4px 9px;
    border-radius: 20px;
    color: #000000;
    font-weight: 600;
}
.common-form select {
    background-image: url("images/select-arrow.png");
    background-position: center right 10px;
    background-repeat: no-repeat;
    background-size: 13px;
}

table.ui-datepicker-calendar thead th:first-child {
    border-top-left-radius: 0px;
}
table.ui-datepicker-calendar thead th:last-child {
    border-top-right-radius: 0px;
}
.ui-widget.ui-widget-content {
    border: 1px solid #f2f2f2;
    background: #fff;
    padding: 0;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    position: relative !important;
    cursor: pointer;
}

.ui-datepicker.ui-widget-content .ui-datepicker-prev,
.ui-datepicker.ui-widget-content .ui-datepicker-next {
    height: auto;
    top: 50%;
    transform: translateY(-50%);
}
.ui-datepicker.ui-widget-content .ui-datepicker-prev {
    left: 10px;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: inherit !important;
}
.ui-datepicker-title .ui-datepicker-year {
    border: 1px solid #fff;
    padding: 2px 0;
    border-radius: 5px;
    width: 45%;
    font-weight: 400;
}
.ui-datepicker.ui-widget-content .ui-datepicker-title {
    margin: 0 2.8em;
}
.ui-datepicker.ui-widget-content th {
    font-weight: 400;
    font-size: 14px;
}
.ui-datepicker.ui-widget-content td {
    border: 1px solid #f2f2f2;
    padding: 0;
    width: 40px;
    height: 40px;
}
.ui-datepicker .ui-state-default,
.ui-datepicker.ui-widget-content .ui-state-default {
    border: none;
    background: #fff;
    font-weight: 600;
    color: #333;
    font-size: 16px;
    height: 100%;
    line-height: 1;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ui-datepicker.ui-widget-content table {
    margin: 0;
}
.ui-datepicker.ui-widget-content .ui-state-default.ui-state-highlight,
.ui-datepicker.ui-widget-content .ui-state-default.ui-state-hover {
    background-color: var(--primary);
    color: #fff;
}
.ui-datepicker.ui-widget-content tr:hover td {
    box-shadow: none;
}
.ui-datepicker.ui-widget-content .ui-state-default.ui-state-active {
    background-color: #000;
    color: #fff;
}
#ui-datepicker-div {
    border: none !important;
}

.card-sub-buttons {
    display: none;
}
.card-sub-buttons .row {
    margin: 0;
}
.card.has-btns .card-wrap:after {
    display: none;
}
.card.has-btns.active .card-wrap {
    background-color: var(--primary);
}
.card.has-btns.active .card-wrap h5 {
    color: var(--white);
}
.field_radio-main:first-child,
.field_chbox-main:first-child {
    margin-top: 0;
}
.normal-label label:not(.form-group-label) {
    font-weight: 400;
}

.created-by-info p {
    margin-bottom: 0;
    margin-right: 2%;
}
.created-by-info input {
    margin-top: 0;
}
.created-by-info {
    margin-top: 15px;
}

/*File Upload*/

.file-up.file-up-btn {
    background: transparent;
    padding: 0;
    border: none;
}
.file-up.file-up-btn span {
    background-image: none;
    padding: 0;
    display: block;
    position: relative;
    line-height: 2.1;
}
.file-up.file-up-btn span:after {
    margin: 0;
}
.file-up-box p {
    margin: 0;
    font-size: 12px;
}
.file-up.file-up-btn span::after {
    width: auto;
    display: block;
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
    padding: 5px 8px;
}
.file-up.file-up-btn .filename {
    margin-top: 6px;
}

.date-info {
    padding-bottom: 25px;
    border-bottom: 1px solid #ebebeb;
}
.upload-fields {
    margin-top: 25px;
    margin-bottom: 25px;
}
.upload-fields > div:not(:last-child) {
    margin-bottom: 10px;
}

.upload-fields .row{
    width: 100%;
}
.permit-status select {
    max-width: max-content;
    padding-right: 34px;
}


/*EDIT FORM*/
.common-form.edit-form .field-label,
.common-form .field-label {
    position: relative;
    font-size: 14px;
}
.edit-form input::placeholder,
.edit-form textarea::placeholder {
    opacity: 0;
}

/* Staff */

.staff-table thead th {
    width: 25.94%;
}
/* .staff-table thead th:nth-child(2){width: 25.94%;}
.staff-table thead th:nth-child(3){width: 25.94%;} */
.staff-table thead th:nth-child(4) {
    width: 10.61%;
}

.staff-table thead th:nth-child(3) {
    width: 10%;
}

/* overridden css */
.btn.btn-primary.d-none {
    display: none !important;
}

.button-group-flex {
    align-items: center;
}

.button-group-flex input.btn.btn-primary.small-btn:not(:last-child) {
    margin-right: 10px;
}

.delete-button {
    margin-left: auto;
    font-size: 24px;
    color: red;
}

.remove-pin {
    color: red;
}

.custom-inner-box-parent {
    background-color: rgba(182, 182, 182, 0.32);
    border-radius: 15px;
    box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
    -webkit-box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
}
.custom-inner-box-parent:not(:first-child) {
    margin-top: 25px;
}

.custom-header-section {
    background-color: var(--primary);
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
}

.custom-inner-box-parent .table-layout {
    padding: 20px;
}

.custom-header-section .row > [class*="col"] {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Dropdown Menu */

.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    float: left;
    min-width: 15rem;
    margin: 0.125rem 0 0;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    line-height: 22px;
    color: #5c5776;
    box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
    -webkit-box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
    border-radius: 0.5rem;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
}

.dropdown.active > .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.dropdown.profile-menu-arrow img{transition:all .3s;-webkit-transition:all .3s;-moz-transition:all .3s;}
.dropdown.active.profile-menu-arrow img {
    transform: rotate(180deg);-webkit-transform: rotate(180deg);-moz-transform: rotate(180deg);
}
@media screen and (min-width: 1024px) {
.dropdown:hover > .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
}
.user-profile-menu.dropdown-menu {
    padding: 15px;
}
.profile-name strong {
    font-weight: 700;
    color: var(--primary);
}
.profile-name {
    font-size: 16px;
}
.dropdown-menu-header {
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 12px;
}
.dropdown-item {
    padding: 6px 0px;
    display: block;
    font-size: 15px;
    font-weight: 500;
}

.filter li {
    width: 100%;
    /* line-height: 0; */
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 90%;
}

ul.filter {
    top: 43px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 200px;
    overflow: auto;
    z-index: 11;
    border: 1px solid lightgray;
    padding-top: 5px;
    padding-bottom: 5px;
}

.row-inner {
    width: 100%;
    display: flex;
    align-items: center;
}

table thead th.w-auto,table td.w-auto {
    width: auto;
}
table.staff-table thead th.w-s,table thead th.w-s,table td.w-s {
    width: 10%;
}
table.staff-table thead th.w-s5,table thead th.w-s5,table td.w-s5 {
    width: 12.5%;
}
table.staff-table thead th.w-1,table thead th.w-1,table td.w-1 {
    width: 15%;
}
table.staff-table thead th.w-15,table thead th.w-15,table td.w-15 {
    width: 17.5%;
}
table.staff-table thead th.w-2,table thead th.w-2,table td.w-2 {
    width: 20%;
}
table.staff-table thead th.w-3,table thead th.w-3,table td.w-3 {
    width: 25%;
}
table.staff-table thead th.w-4,table thead th.w-4,table td.w-4 {
    width: 40%;
}
table.staff-table thead th.w-5,table thead th.w-5,table td.w-5 {
    width: 50%;
}
/* Table Forms */
.unit-row .unit-col.col-md-12 {
    width: 100%;
}
.table-form-layout-block {
    width: 100%;
}
.table-radio.field_radio {
    justify-content: center;
    margin: 0;
}
.table-radio.field_radio label::before {
    top: 1px;
}
.table-radio.field_radio label::after {
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
}
.table-radio.field_radio label::before {
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
}
.table-checkbox.field_checkbox label::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.table-checkbox.field_checkbox label::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}
.table-checkbox.field_checkbox {
    margin: 0;
    justify-content: center;
}
.table-checkbox.label-visible.field_checkbox label::after {
    top: 0;
    left: 0;
    transform: translateY(0%);
    margin: 0;
}
.table-checkbox.label-visible.field_checkbox label::before {
    top: 4.5px;
    left: 7px;
    transform: translate(0%, 0%) rotate(45deg);
}
.table-radio.label-visible.field_radio label::after {
    left: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
}
.table-radio.label-visible.field_radio label::before {
    left: 6px;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
}
/* .table-checkbox.field_checkbox:not(:last-child) {
    margin-bottom: 5px;
} */
.unit-row.row {
    margin-top: 24px;
    margin-bottom: 24px;
}
.unit-row.row:first-of-type {
    margin-top: 0;
}
.unit-row.row:last-of-type {
    margin-bottom: 0;
}
.unit-col td,
.unit-col th {
    text-align: center;
}
.single-form-field {
    margin: 14px 0;
}
.single-form-field input {
    background-color: #fff;
}
.box {
    padding: 25px;
    border-radius: 10px;
    background-color: #b6b6b6;
}
.bg-white,
.white-field
    input:not([type="submit"]):not([type="button"]):not([type="reset"]),
.white-field textarea {
    background-color: var(--white);
}
.table-with-forms tbody td {
    box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
    -webkit-box-shadow: 5px 8.66px 25px rgba(32, 93, 155, 0.1);
}

.vtrex-bottom {
    border: 2px solid black;
    border-radius: 15px;
    padding: 20px;
}
.table-input .error {
    margin-top: 2px;
    text-align: left;
    display: none;
}
.table-textarea textarea {
    height: auto;
}
.form-input-field {
    padding: 0;
}

.table-with-forms .field_chbox-row .table-checkbox.field_checkbox,
.table-with-forms .field_radio-row .table-radio.field_radio {
    padding: 5px;
}
.table-with-forms .field_chbox-row,
.table-with-forms .field_radio-row {
    margin: -5px;
}
.table-with-forms td .form-group,
.form-input-field .form-group:last-child {
    margin-bottom: 0;
}
.table-with-img td {
    vertical-align: top;
}
.tb-data-img {
    margin: 10px 0;
}
.tb-data-img span {
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
.tb-data-img:last-child span {
    margin-bottom: 0;
    display: block;
    margin-top: 5px;
    position: relative;
}
.tb-data-img:last-child span {
    margin-bottom: 0;
}
.tb-data-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.data-img {
    position: relative;
    padding-top: 56.24%;
    height: auto;
    width: 100%;
}
.table-with-img [class*="field_"] {
    margin-top: 5%;
    margin-bottom: 5%;
    display: block;
}
table.no-head tbody tr:first-child td:first-child {
    border-top-left-radius: 15px;
}
table.no-head tbody tr:first-child td:last-child {
    border-top-right-radius: 15px;
}
.table-radio.field_radio.label-large label {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.label-large .label-heading {
    font-size: 145%;
    font-weight: 700;
}
.label-large .label-heading.green-txt {
    color: green;
}
.label-large .label-heading.red-txt {
    color: red;
}

.large-options .table-radio.field_radio {
    justify-content: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}
.large-options .table-radio.field_radio:last-child {
    border-bottom: none;
}
.large-options .field_radio label::after,
.large-options .field_checkbox label::after {
    top: 6px;
    margin: 0;
}
.large-options .field_radio label::before {
    margin: 0;
    top: 12px;
}
.red-options label:after {
    border-color: red;
}
.red-options label:before {
    background-color: red;
}

/*Output Data*/

.output-box {
    padding: 15px;
    border-radius: 10px;
}
.output-box .output-row label.form-group-label:not(:first-child) {
    margin-top: 22px;
}
.output-box .output-row label.form-group-label {
    margin-bottom: 14px;
}
.output-box .field_radio-main,
.output-box .field_chbox-main {
    margin-top: 0;
}
.output-box .output-row {
    padding: 15px 0;
}
.output-box .output-row > [class*="col-"] .form-group-label:first-child {
    margin-top: 0;
}
.output-box .output-row .field_chbox-row label,
.output-box .output-row .field_radio-row label {
    margin-bottom: 0;
}
.form-group-label.output-group-label {
    margin-top: 25px;
    margin-bottom: 12px;
}

table.bg-grey tr td {
    background: #e2e0e0;
}

.output-data-box {
    height: 180px;
    width: auto;
    padding: 25px;
    background: #e2e0e0;
    border-radius: 15px;
}
.date-output {
    font-size: 160%;
}

.custom-header-section a {
    color: #000;
    text-decoration: underline;
}
.custom-header-section a:hover {
    color: #fff;
}

.spacing-top {
    padding-top: 25px;
    margin-top: 25px;
}
.border-top {
    border-top: 2px solid #ebebeb;
}

.material-box .form-block .table-block:first-child {
    margin-top: 0;
}

.filter-box .row:last-child .form-group {
    margin-bottom: 0;
}

#replacetable .fa-times,
#selmaterials .fa-plus {
    display: none;
}

#pricetotal,
#msrptotal {
    font-weight: bold;
}

/* MODAL */
.noscroll {
    overflow: hidden;
}
.modal-header {
    min-height: 16.43px;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal-footer {
    padding: 20px;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}
.table_calndr table thead th:first-child {
    width: 80%;
}
.table_calndr th:nth-child(2n) {
    /* background-color: rgba(110, 110, 110, 0.75); */
    width: 20%;
}
.table_calndr table thead th,
.table_calndr table tbody tr td,
.table_calndr table tbody tr {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
}
.table_calndr table thead th,
.table_calndr table tbody tr td {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
}
.table_calndr table tbody {
    border: 1px solid #f2f2f2;
}
.table_calndr table:not(:last-child) {
    margin-bottom: 15px;
}
.table_calndr h5 {
    margin-bottom: 5px;
    font-weight: 400;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-dialog {
    width: 800px;
    margin: 30px auto;
    position: relative;
    background: #fff;
    border-radius: 15px;
}
.modal button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    top: -15px;
    right: -10px;
    position: relative;
    opacity: 0.4;
}
.close:hover {
    opacity: 1;
}
.modal-title {
    padding-right: 20px;
}
.modal .btn.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.modal .btn {
    width: 80px;
    padding: 8px;
    margin: 5px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    border: 1px solid;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    border-color: var(--black);
}
.modal .btn:hover {
    background-color: var(--black);
    color: var(--white);
}
.modal .btn.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/*Close Job*/

.upload-preview {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 76.26%;
    background-color: #b7b3b3;
    border-radius: 8px;
}
.upload-preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.upload-large-box-wrap {
    margin-bottom: 10px;
    position: relative;
}
.upload-large-box-wrap .file-up.file-up-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.06);
}
.upload-large-box-wrap .file-up.file-up-btn span::after {
    border-color: #fff;
    color: #fff;
}
.upload-large-box-wrap .file-up span {
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
}
.upload-large-box-wrap .file-up.file-up-btn span:hover::after {
    background-color: #fff;
    color: #000;
}
.box-content {
    padding-top: 25px;
    padding-bottom: 25px;
}
.customer-info-panel {
    margin-bottom: 25px;
}


#openjobs tr:not(tr.pinned) .remove-pin,
#closedjobs tr:not(tr.pinned) .remove-pin {
    display: none;
}

#openjobs tr.pinned .add-pin,
#closedjobs tr.pinned .add-pin {
    display: none;
}


.box-border.border-bottom {
    border-bottom: 1px solid #ccc;
}
.box-border {
    padding-top: 25px;
    padding-bottom: 25px;
}
.box-border.border-bottom:last-child {
    border-bottom: none;
}
.timecard-action-row {
    padding-top: 8px;
}


.staff-table th.date-added {
    min-width: 158px;
}
table.staff-table th.pin {
    width: 1%;
    min-width: 18px;padding: 0;
}

.action-data.pin-data {
    border-right: none;
    padding-right: 0;
    text-align: right;padding
}

.row-highlight td {
    background-color: rgba(35, 237, 28, 0.26);
}

.table.pop-table a {
	text-decoration: underline;
	font-weight: bold;
}

.upload-preview-small {
    max-width: 180px;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 15px 0px 10px 0px;
    text-align: center;
}

.upload-preview-small img {
    margin: 0 auto 15px auto;
}

.download-scope{
    padding: 10px;
}

.no_field_mb .field_radio{margin-bottom:0;}
div .title-with-option > *{margin-bottom:0;margin-top:0;}
div .title-with-option {
    margin-bottom: 15px;
}


hr{
margin:25px auto;border-color:#ccc;
}

.block-title{font-size:30px;margin-bottom:20px;}

.form-group.hr-field {
    display: flex;
    justify-content: flex-start;
  
}
.form-group.hr-field{margin-left:-15px;margin-right:-15px;}

.form-group.hr-field > * {
    flex: 1 1 50%;padding:0 15px;
}
@media screen and (min-width: 999px) {
    .form-group.hr-field .field_radio{margin-bottom:0;}
   
}

@media screen and (min-width: 767px) {
    .form-group.hr-field label{margin-bottom:0;}
    .form-group.hr-field > * {
    flex: 0 1 auto;
}

}

.generators {
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.5);
    margin-top: 15px;
}
.generators h2{margin-bottom:10px;}

img {
    display: none;
}


img[src] {
   display: block;
 }

 .ui-datepicker .ui-datepicker-title select option {
    color: black;
}


.filter-buttons li button {
    padding: 9px 20px;
    display: inline-block;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 100px;
    background-color: var(--secondary);
color: var(--white);
}
.filter-buttons li {
    display: inline-block;
    vertical-align: top;padding: 5px;
}
.filter-buttons {
    padding: 15px 0;margin: -5px;
}
.filter-buttons li button:hover {
    background-color: var(--primary);
    color: var(--white);
}
.column {
	display: none;
}
.show {
	display: table-row !important;
}

.ml-auto{margin-left:auto;}
.btn.btn-secondary.small-btn{
  width: auto;
  min-width: 130px;
}

.title-action {
  flex-wrap: wrap;
}
.title-action > * {
  margin-top: 5px;
  margin-bottom: 5px;
}
.updated-by {
	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  }
  
  .updated-by select{flex: 1;margin-left: 6px; padding-left: 2px;padding-right: 2px;}
  .updated-by label{font-size:15px;}
  .mod-hours {
  display: flex;
  align-items: center;margin-left: auto;margin-top: 0;
margin-bottom: 0;

}
 .mod-hours .no_field_mb{margin-left:10px;}
.mod-hours > * {
  margin: 5px 0;
}
.mod-hours .no_field_mb .field_radio:last-child{margin-right:0;}
.mod-hours p:not(:first-child) {
  margin-left: 25px;
}
.form-group.mod-hours .field_radio {
  margin-right: 12px;
}
.customer-address {
  font-size: 13px;
  color: #666;
}

a.view-hide-notes-title {
  color: #fff;
}
.customer_notes{display:none;}
.customer_notes_txt {
  padding: 8px 0 5px;
}
.loader-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255,255,255,.6);
	z-index: 9999;
	border-radius: inherit;display:none;
}
.loading {
	height: 0;
	width: 0;
	padding: 15px;
	border: 6px solid #b6b6b6;
	border-right-color: #ed1c24;
	border-radius: 22px;
	-webkit-animation: rotate 1s infinite linear;
	animation: rotate 1s infinite linear;
	-moz-animation: rotate 1s infinite linear;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
/*
.btn.xs-btn {
    padding: 14px 28px;
    letter-spacing: 1px;
    margin: 0 6px;
    width: 115px;
}
*/
/*************************************
**************Responsive**************
*************************************/

@media screen and (max-width: 1800px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 22px;
    }
    .dashboard-right {
        width: calc(100% - 102px);
    }
    /* .user-img {padding: 0px;}  */
    .user-img img {
        width: 38px;
        height: 38px;
    }
    .header-action:not(:first-child) {
        padding-left: 32px;
    }
    .notification-icon .notification_count {
        width: 18px;
        height: 18px;
        font-size: 11px;
        line-height: 1.4;
    }
    .header-search input {
        padding: 10px 22px 10px 50px;
        background-size: 16px auto;
    }
    .notification-icon img {
        height: 38px;
    }

    /* .card-wrap {
        padding: 10px 40px;
    } */
    .card-icon img {
        max-width: 46px;
    }
    .card-icon {
        margin-bottom: 20px;
    }
    .card {
        padding: 10px;
    }
    .dashboard-tabs > .row:first-child {
        margin: -10px;
    }
    .table-block {
        margin: 26px 0;
    }
    table td,
    table th {
        padding: 13px 31px;
    }
    table tr td {
        padding: 10px 30px;
    }
    .action-btn,input.action-btn {
        padding: 4px 22px;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        margin-top: 16px;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        padding: 42px 36px;
    }

    /* Sidebar */
    aside.sidebar ul.sb_top_lv li a {
        padding: 12px 38px;
    }
    aside.sidebar {
        width: 102px;
    }
    aside .logo {
        padding: 15px 19px;
        min-height: 92px;
    }

    /* Timesheets */

    .timesheet-span p {
        font-size: 16px;
    }
    .timesheet-span {
        padding: 8px 16px;
    }
    .timesheet-span-buttons button {
        padding: 15px 11.5px;
    }
    .timesheet-span-buttons {
        margin: 0 0 0 16px;
    }
    .timesheets-table {
        padding: 40px;
    }

    /* Dashboard Forms */

    /*.dashboard-tabs-content-box input,*/
    /*textarea,*/
    /*select {*/
    /*    padding-top: 18px;*/
    /*    padding-bottom: 18px;*/
    /*}*/
    input,
    textarea,
    select {
        font-size: 14px;
    }
    .calendar-date label {
        margin-right: 18px;
    }
    .dashboard-tabs-content-box .form-group {
        margin-bottom: 18px;
    }
    label {
        margin-bottom: 5px;
    }
    .common-form select {
        background-size: 13px;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        width: 120px;
    }
    .file-up {
        padding: 8px 10px;
    }

    /*New Login*/
    .login-view .logo-block img {
        width: 190px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 64px 84px;
    }
    .login-content h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    .login-content p {
        font-size: 17px;
    }
    .form-title {
        font-size: 26px;
        margin-bottom: 26px;
    }
    .login-view .form-group:not(:last-child) {
        margin-bottom: 20px;
    }
    .login-footer {
        margin-top: 34px;
    }
    
    .block-title {
    margin-bottom: 14px;
}
.mod-hours .no_field_mb .field_radio {
  margin-right: 10px;
}
.mod-hours .no_field_mb .field_radio label{padding-left: 26px;}
.mod-hours > p{font-size:15px;}
}

@media screen and (max-width: 1600px) {
    .dashboard-right {
        width: calc(100% - 92px);
        padding: 18px 36px;
    }
    /* h1 {font-size: 32px;}
h2 {font-size: 23px;}
h3 {font-size: 20px;}
h5 { font-size: 16px; } */
    .notification-icon img {
        width: 24px;
    }
    .notification-icon .notification_count {
        width: 15px;
        height: 15px;
        font-size: 10px;
        line-height: 1.3;
    }
    .header-action:not(:first-child) {
        padding-left: 26px;
    }
    .profile-menu-arrow img {
        width: 11px;
    }
    table th {
        font-size: 14px;
    }
    .dashboard-tabs-content-box {
        margin: 36px 0 0 0;
    }
    .card-wrap {
        padding: 10px 24px;
    }
    .card-wrap::after {
        height: 24px;
        width: 24px;
    }
    .card .card-title h5 {
        font-size: 13px;
    }
    .table-block {
        margin: 22px 0;
    }
    table td,
    table th {
        padding: 12px 28px;
    }
    table tr td {
        font-size: 14px;
        padding: 8px 28px;
    }
    .action-btn,input.action-btn {
        font-size: 12px;
        padding: 4px 25px;
    }
    input[type="submit"], input[type="button"] {margin: 25px 0;}
    /* table thead th:first-child{border-top-left-radius: 22px;}
table thead th:last-child{border-top-right-radius: 22px;}
table tbody tr:last-child td:first-child{border-bottom-left-radius: 22px;}
table tbody tr:last-child td:last-child{border-bottom-right-radius: 22px;} */

    /* Sidebar */
    aside.sidebar {
        width: 92px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 10px 35px;
        margin: 8px 0;
    }
    aside .menu-icon {
        margin: 40px 33px 20px;
    }
    aside .logo {
        padding: 12px 17px;
        min-height: 86px;
    }
    aside .logo a {
        width: 62px;
    }

    /* Timesheets */

    .timesheets-table {
        padding: 30px;
    }

    .timesheets-table table td strong {
        margin-bottom: 9px;
        font-size: 14px;
    }
    .timesheets-table table th {
        padding: 14px 22px;
    }
    .timesheets-table table thead th {
        font-size: 16px;
    }
    .timesheet-span p {
        font-size: 14px;
    }
    .timesheet-span {
        padding: 7px 14px;
    }
    .timesheet-span-buttons button {
        padding: 12px 10.5px;
    }
    .timesheet-span-buttons {
        margin: 0 0 0 14px;
    }
    .timesheets-table table td {
        padding: 16px 16px 15px;
    }

    /* Dashboard Forms */

    label {
        font-size: 16px;
    }
    label.form-group-label {
        margin: 8px 0 18px;
    }

    /*.dashboard-tabs-content-box input,*/
    /*.dashboard-tabs-content-box textarea,*/
    /*.dashboard-tabs-content-box select {*/
    /*    padding-top: 16px;*/
    /*    padding-bottom: 16px;*/
    /*}*/
    .calendar-date label {
        margin-right: 14px;
    }

    .field_radio label,
    .field_checkbox label {
        padding-left: 30px;
        font-size: 14px;
    }
    .field_radio label::after,
    .field_checkbox label:after {
        height: 18px;
        width: 18px;
    }
    .field_radio label::before {
        width: 8px;
        height: 8px;
    }
    .field_radio,
    .field_checkbox {
        margin: 0 25px 8px 0;
    }
    .file-up span {
        font-size: 11px;
        padding: 0px 0 0px 25px;
        background-size: 15px;
    }
    .file-up span::after {
        padding: 3px 7px;
    }
    .btn.btn-primary.small-btn {
        padding-left: 70px;
        padding-right: 70px;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        width: 115px;
    }
    .field_checkbox label::before {
        top: 3px;
        left: 6px;
    }
    .common-form.edit-form .field-label,
    .common-form .field-label {
        font-size: 13px;
    }

    /*New Login*/
    .login-view .logo-block img {
        width: 190px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 54px 74px;
    }
    .login-content h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .login-content p {
        font-size: 16px;
    }
    .form-title {
        font-size: 24px;
        margin-bottom: 22px;
    }
    .login-view .form-group:not(:last-child) {
        margin-bottom: 18px;
    }
    .login-footer {
        margin-top: 30px;
    }

    /* Table Forms */
    .table-checkbox.label-visible.field_checkbox label::before {
        top: 3px;
        left: 6px;
    }
    .block-title {
    font-size: 28px;
}
.filter-buttons li button {
    padding: 7px 16px;
}
.filter-buttons li {
    padding: 3px;
}
.filter-buttons {
    margin: -3px;
}
.mod-hours .no_field_mb .field_radio label {
  padding-left: 22px;
}
.form-group.mod-hours .field_radio {
  margin-right: 9px;
}
.mod-hours p:not(:first-child) {
  margin-left: 18px;
}
}

@media screen and (max-width: 1440px) {
    .dashboard-right {
        width: calc(100% - 86px);
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 18px;
    }
    h5 {
        font-size: 15px;
    }
    .user-img img {
        width: 32px;
        height: 32px;
    }
    .card {
        padding: 8px;
    }
    .dashboard-tabs > .row:first-child {
        margin: -8px;
    }
    .dashboard_title p {
        font-size: 14px;
    }
    .card-icon {
        margin-bottom: 16px;
    }
    .card-icon img {
        max-width: 42px;
    }
    /* .card-wrap {
        padding: 10px 26px;
    } */

    .card-wrap::after {
        height: 20px;
        width: 20px;
        border-radius: 0 0 0 5px;
    }
    .table-block {
        margin: 18px 0;
    }
    .table-layout-content {
        margin: 0 0 32px 0;
    }
    .action-btn,input.action-btn {
        font-size: 12px;
        padding: 3px 20px;
    }
    .header-search input {
        padding: 8px 20px 8px 43px;
        background-size: 14px auto;
        background-position: left 14px center;
        font-size: 16px;
    }
    .user-img img {
        width: 38px;
        height: 38px;
    }
    table td,
    table th {
        padding: 12px 24px;
    }
    table tr td {
        padding: 8px 24px;
    }

    .dashboard-tabs-content-box .form-block.common-form {
        padding: 36px 30px;
    }
    .dashboard-tabs-content-box {
        margin: 28px 0 0 0;
    }

    /* Sidebar */
    .multi-logo {
        height: 50px;
    }
    aside.sidebar {
        width: 86px;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 20px;
        max-height: 20px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 8px 32px;
    }
    aside .menu-icon {
        margin: 30px 32px 18px;
    }
    aside .logo {
        min-height: 76px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 80px;
        font-size: 16px;
    }
    aside.sidebar.current {
        width: 285px;
    }
    aside .logo a img {
        max-height: 50px;
    }

    /*New Login*/
    .login-view .logo-block img {
        width: 180px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 44px 64px;
    }
    .login-content h1 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    .login-content p {
        font-size: 14px;
    }
    .form-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    .login-view .form-group:not(:last-child) {
        margin-bottom: 16px;
    }
    .login-footer {
        margin-top: 28px;
    }

    /*Edit Form*/
    .common-form.edit-form .field-label,
    .common-form .field-label {
        font-size: 13px;
    }

    /* Table Forms */
    .table-checkbox.label-visible.field_checkbox label::before {
        top: 3px;
        left: 6px;
    }

    /*Output Data*/
    .custom-inner-box-parent .output-row .table-layout {
        padding: 15px;
    }
    .output-data-box {
        padding: 20px;
    }
    
    .staff-table th.date-added {
    min-width: 108px;
}
input[type="submit"], input[type="button"] {letter-spacing: 2px;margin: 22px 0;}

.mod-hours .no_field_mb {
  margin-left: 8px;
}
.mod-hours .no_field_mb .field_radio {
  margin-right: 10px;
}
.mod-hours .no_field_mb .field_radio label {
  padding-left: 23px;
}
.mod-hours > p {
  font-size: 14px;
}
.mod-hours {margin-left: 0;
}
}
@media screen and (max-width: 1360px) {
    .row {
        margin: 0 -10px;
    }
    [class*="col"] {
        padding: 0 10px;
    }
    [class*="col"] {
        padding: 0 10px;
    }
    .form-group[class*="col-md-"] {
        padding: 0 10px;
    }

    .card-wrap::after {
        height: 16px;
        width: 16px;
        border-radius: 0 0 0 3px;
    }

    /* Timesheets */

    .timesheets-table table thead th span {
        padding: 2px 8px;
    }
    .timesheets-table table th {
        padding: 14px 26px;
    }
    .timesheets-table table td {
        padding: 14px 14px 13px;
    }

    /* Dashboard Forms */
    input,
    textarea,
    select {
        font-size: 12px;
    }
    .common-form.edit-form .field-label,
    .common-form .field-label {
        font-size: 12px;
    }
    label {
        font-size: 12px;
    }
    .common-form select {
        background-size: 11px;
        background-position: center right 14px;
    }
    /*.dashboard-tabs-content-box input, .dashboard-tabs-content-box textarea, .dashboard-tabs-content-box select {*/
    /*    padding-top: 13px;*/
    /*    padding-bottom: 13px;*/
    /*}*/
    label.form-group-label {
        margin: 6px 0 16px;
    }

    .file-up span {
        background-size: 15px;
        font-size: 12px;
    }
    .file-up {
        padding: 7px 10px;
    }
    .btn.btn-primary.small-btn {
        padding-left: 60px;
        padding-right: 60px;
    }
    .dashboard-tabs-content-box {
        margin: 40px 0 0 0;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        margin-top: 19px;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        width: 105px;
    }
    .field_radio,
    .field_checkbox {
        margin: 0 20px 8px 0;
    }
    .btn.btn-primary.small-btn {
        margin: 8px 0 0 0;
    }
    .button-group-flex input.btn.btn-primary.small-btn:not(:last-child) {
        margin-right: 8px;
    }

    /* Table Forms */
    .unit-col.col-md-3 {
        width: 33.33%;
        margin-bottom: 24px;
    }
    .bench-log-table {
        overflow-x: auto;
    }
    .staff-table th.date-added {
    min-width: 115px;
    width: 5% !important;
}
.block-title {
    font-size: 26px;
    margin-bottom: 12px;
}
.updated-by label {
  font-size: 13px;
}
.mod-hours {margin-left: 0;}
.mod-hours {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.mod-hours .no_field_mb {
  margin-left: 0;
}
.mod-hours > p{margin-right:8px;}
}
@media screen and (max-width: 1199px) {
    .dashboard-right {
        width: calc(100% - 66px);
        padding: 14px 26px;
    }
    h1 {
        font-size: 25px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    .notification-icon .notification_count {
        width: 13px;
        height: 13px;
    }
    .header-search {
        width: 60%;
    }
    .header-action:not(:first-child) {
        padding-left: 18px;
    }
    .notification-icon img {
        width: 21px;
    }
    .user-profile .profile-menu-arrow {
        padding-left: 6px;
    }
    .profile-menu-arrow img {
        width: 10px;
    }
    .card-wrap {
        padding: 10px 22px;
    }
    .card .card-title h5 {
        font-size: 13px;
    }
    .card-icon img {
        max-width: 32px;
    }
    .card-icon {
        margin-bottom: 12px;
    }
    .table-block {
        margin: 14px 0;
    }
    /* table thead th:first-child{border-top-left-radius: 14px;}
  table thead th:last-child{border-top-right-radius: 14px;}
  table tbody tr:last-child td:first-child{border-bottom-left-radius: 14px;}
  table tbody tr:last-child td:last-child{border-bottom-right-radius: 14px;} */
    table th {
        font-size: 14px;
    }
    table td,
    table th {
        padding: 8px 14px;
        font-size: 13px;
    }
    table tr td {
        font-size: 13px;
        padding: 8px 14px;
    }
    .dashboard-tabs {
        margin: 22px 0;
    }
    .action-btn,input.action-btn {
        font-size: 12px;
        padding: 3px 20px;
    }

    /* Sidebar */
    .multi-logo {
        height: 36px;
    }
    aside .logo {
        padding: 12px 15px;
        min-height: 60px;
    }
    aside .menu-icon {
        margin: 40px 35px 20px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 10px 35px;
        margin: 8px 0;
    }
    aside.sidebar {
        width: 94px;
    }
    aside.sidebar.current {
        width: 250px;
    }
    aside.sidebar ul.sb_top_lv li span {
        font-size: 15px;
        left: 90px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 80px;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 21px;
        max-height: 21px;
    }
    aside.sidebar ul.sb_dropdown li a {
        padding: 8px 30px 8px 80px;
        font-size: 13px;
    }
    aside.sidebar {
        width: 66px;
    }
    aside .logo a img {
        max-height: 36px;
    }
    aside .logo a {
        width: 38px;
    }
    aside .menu-icon {
        margin: 30px 21px 20px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 8px 22px;
        margin: 8px 0;
    }
    aside .menu-icon span {
        width: 24px;
        margin: 5px 0;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 18px;
        max-height: 18px;
    }
    input[type="submit"], input[type="button"] {margin: 18px 0;}

    /* Timesheets */

    .timesheets-table table thead th {
        font-size: 14px;
        line-height: 2;
        padding: 14px 20px;
    }

    .timesheets-table table td strong {
        font-size: 13px;
    }
    .timesheets-table {
        border-radius: 14px;
        -webkit-border-radius: 14px;
    }
    .timesheets-table table td {
        padding: 12px 12px 10px;
    }

    .timesheet-span-buttons button img {
        width: 5px;
    }

    /* Dashboard Forms */
    input,
    textarea,
    select {
        padding: 8px;
    }
    [class*="col"] {
        padding: 0 8px;
    }
    .row {
        margin: 0 -8px;
    }
    .form-group[class*="col-md-"] {
        padding: 0 8px;
    }

    .calendar-date label {
        margin-right: 10px;
    }
    /*.dashboard-tabs-content-box input,*/
    /*.dashboard-tabs-content-box textarea,*/
    /*.dashboard-tabs-content-box select {*/
    /*    padding-top: 14px;*/
    /*    padding-bottom: 14px;*/
    /*}*/
    .dashboard-tabs-content-box .form-block.common-form {
        padding: 26px;
    }
    .field_radio label,
    .field_checkbox label {
        padding-left: 27px;
        font-size: 14px;
    }
    .field_radio label::after,
    .field_checkbox label:after {
        height: 16px;
        width: 16px;
    }
    .field_radio label::before {
        left: 5px;
    }
    .common-form select {
        background-size: 10px;
        background-position: center right 14px;
    }
    .btn.btn-primary.small-btn {
        padding-left: 50px;
        padding-right: 50px;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        border-radius: 14px;
        -webkit-border-radius: 14px;
    }
    .dashboard-tabs-content-box .form-group {
        margin-bottom: 16px;
    }
    .dashboard-tabs-content-box {
        margin: 35px 0 0 0;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        margin-top: 20px;
    }
    .field_checkbox label::before {
        width: 4px;
        height: 9px;
        border-width: 0 2px 2px 0;
        top: 3px;
        left: 6px;
    }
    .upload-fields {
        margin-top: 16px;
        margin-bottom: 16px;
    }
    .form-block .row .row [class*="col-md-6"] {
        width: 100%;
    }
    .file-up span {
        background-size: 12px;
        font-size: 10px;
    }
    .file-up p {
        max-width: 100px;
        font-size: 10px;
    }
    .file-up span::after {
        padding: 1px 5px;
        font-size: 10px;
        margin: 0px 0 0 6px;
    }
    .file-up span {
        background-size: 12px;
        font-size: 10px;
        padding: 0px 0 0px 17px;
    }
    .file-up {
        padding: 7px 8px;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        padding: 8px;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        width: 95px;
    }

    /*New Login*/
    .login-view .logo-block img {
        width: 70px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 34px 54px;
    }
    .login-content h1 {
        font-size: 20px;
    }
    .login-content p {
        font-size: 14px;
    }
    .form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .login-view .form-group:not(:last-child) {
        margin-bottom: 14px;
    }
    .login-footer {
        margin-top: 24px;
    }

    /* Table Forms */
    .table-checkbox.label-visible.field_checkbox label::before {
        top: 3px;
    }
    .large-options .field_radio label::before {
        top: 11px;
        left: 5px;
    }

    /*Output Data*/
    .output-data-box {
        height: 150px;
        padding: 18px;
    }
    .date-output {
        font-size: 140%;
    }
    .staff-table th.date-added {
    min-width: 95px;
}

a.add-pin.pin-to-top-open:hover{color:#565656;}
.file-up-box {
    margin-top: 10px;
}
.updated-by.col-md-2 {
  width: 170px;
}
}

@media screen and (max-width: 1024px) {
    /*New Login*/
    .login-view .logo-block img {
        width: 160px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 24px 44px;
    }
    .login-view .right-part,
    .login-view .left-part {
        width: 50%;
    }
    .login-footer {
        margin-top: 22px;
    }

    /* Dropdown Menu */
    .user-profile-menu.dropdown-menu {
        padding: 12px;
        /*margin-top: 15px;*/
    }
    .field_radio,
    .field_checkbox {
        margin: 0 14px 6px 0;
    }
    .field_chbox-main.chbx-hr label {
        margin-right: 10px;
    }
    .field_chbox-main.chbx-hr > label {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .field_chbox-main.chbx-hr {
        flex-direction: column;
    }
    .field_radio-row,
    .field_chbox-row {
        margin: 14px 0 18px;
    }
    .field_radio-main,
    .field_chbox-main {
        margin-top: 6px;
    }

    /*OUTPUT DATA*/
    .output-box .output-row .field_chbox-main.chbx-hr > label,
    .output-box .output-row .field_radio-main.chbx-hr > label {
        margin-bottom: 0;
    }
    
    
}
@media screen and (max-width: 999px) {
    body,
    p,
    li {
        font-size: 14px;
    }
    /* Login */

    .login-form-block {
        max-width: 540px;
        padding: 6.167% 8.4%;
    }
    .site-logo img {
        max-width: 280px;
    }
    .site-logo {
        margin-bottom: 52px;
    }
    label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    input[type="submit"] {
        letter-spacing: 2px;
    }
    .login-form {
        margin-bottom: 60px;
    }
    .form-actions > * {
        font-size: 14px;
    }
    .form-option {
        padding-left: 38px;
    }
    .form-option .checkmark {
        width: 24px;
        height: 24px;
        top: -1px;
    }
    .form-option .checkmark::after {
        left: 8px;
        top: 4px;
        width: 4px;
        height: 9px;
    }
    .field-label.no-mob-label {
        height: 0;
    }

    /* Dashboard */

    h1 {
        font-size: 21px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 14px;
    }
    h5 {
        font-size: 13px;
    }
    .dashboard_title p {
        font-size: 13px;
    }
    .user-img img {
        width: 32px;
        height: 32px;
    }
    .header-action:not(:first-child) {
        padding-left: 15px;
    }
    .dashboard-right {
        width: calc(100% - 56px);
        padding: 10px 20px;
    }
    .user-img img {
        width: 30px;
        height: 30px;
    }
    .notification-icon img {
        height: 28px;
    }
    .card {
        padding: 6px;
    }
    .dashboard-tabs > .row:first-child {
        margin: -6px;
    }
    .card-wrap {
        padding: 8px 18px;
        border-radius: 100px;
    }
    .card-icon {
        margin-bottom: 10px;
    }
    .card-icon img {
        max-width: 26px;
    }
    .dashboard-tabs .row {
        margin: 0 -6px;
    }
    .card-wrap::after {
        height: 10px;
        width: 10px;
        border-radius: 0 0 0 2px;
    }
    table td,
    table th {
        padding: 12px 16px;
    }
    table th {
        font-size: 12px;
        line-height: 1.3;
    }
    table tr td {
        font-size: 13px;
        line-height: 1.3;
        padding: 8px 14px;
    }
    .action-btn,input.action-btn {
        font-size: 11px;
        padding: 3px 14px;
    }
    .header-search input {
        padding: 7px 15px 7px 32px;
        background-size: 12px auto;
        background-position: left 12px center;
        font-size: 13px;
    }
    .notification-icon img {
        width: 17px;
    }
    .notification-icon .notification_count {
        width: 10px;
        height: 10px;
    }
    .notification-icon .notification_count {
        width: 11px;
        height: 11px;
        font-size: 8px;
        line-height: 1.2;
    }
    .table-block {
        overflow-x: auto;
        border-radius: 15px;
    }

    aside.sidebar {
        width: 56px;
    }
    aside .logo {
        padding: 9px;
        min-height: 41px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 6px 19px;
        margin: 6px 0;
    }
    aside .menu-icon {
        margin: 22px 17px 17px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 50px;
        font-size: 14px;
    }
    aside.sidebar.current {
        width: 220px;
    }
    .row-group .row {
        margin: 0 -6px;
    }
    input[type="submit"], input[type="button"] {letter-spacing: 1px;margin: 16px 0;}

    /* Timesheets */

    .timesheets-table table td {
        padding: 17px 13px;
    }
    .timesheets-table table thead th {
        padding: 11px 10px;
    }
    .timesheets-table {
        padding: 20px;
    }
    .timesheet-span-buttons button {
        padding: 9px 8.5px;
    }
    .timesheet-span-buttons button img {
        width: 5px;
    }
    .total-data strong {
        margin-top: 14px;
    }

    /* Dashboard Forms */
    /*.row{width: 100%;}*/
    .form-group.col-md-2_5 {
        width: 33.33%;
    }
    .form-group[class*="col-md-"],
    .form-block .row > [class*="col-md-"] {
        padding: 0 6px;
    }
    .row-group .row > [class*="col"] {
        padding: 0 6px;
    }
    .dashboard-tabs .row {
        margin: 0 -6px;
    }
    label.form-group-label {
        margin: 4px 0 12px;
    }
    .common-form .col-md-7,
    .common-form .col-md-5 {
        width: 100%;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        padding: 25px 20px;
    }
    .dashboard-tabs-content-box .form-group {
        margin-bottom: 14px;
    }
    textarea {
        height: 125px;
    }
    .file-up span {
        font-size: 0;
        background-image: none;
        padding: 0;
        background-size: 0;
    }
    .dashboard-tabs-content-box {
        margin: 28px 0 0 0;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        margin-top: 18px;
    }
    .field_checkbox label::before {
        width: 4px;
        height: 8px;
        border-width: 0 2px 2px 0;
        top: 3px;
        left: 6px;
    }

    /* Dropdown Menu */

    .profile-name {
        font-size: 15px;
    }
    .dropdown-menu-header {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .dropdown-item {
        padding: 4px 0px;
        font-size: 14px;
    }
    .user-profile-menu.dropdown-menu {
        padding: 12px;
        /*margin-top: 15px;*/
    }
    .dropdown-menu {
        min-width: 10rem;
    }

    /* Table Forms */
    .unit-col[class*="col-md-"] {
        width: 50%;
        margin-bottom: 12px;
    }
    .unit-col {
        overflow-x: auto;
        padding-bottom: 10px !important;
    }

    .upload-fields.row {
        margin-top: 12px;
        margin-bottom: 12px;
        width: auto;
    }
    .date-info .date-txt {
        margin-bottom: 15px !important;
    }
    .custom-header-section .row-group .row [class*="col-md-"] {
        width: 50%;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .custom-header-section .row-group .row {
        margin: -6px;
    }
    .custom-inner-box-parent .output-row .table-layout {
        padding: 5px;
    }
    .date-output {
        font-size: 120%;
    }
    .form-block .upload-fields .row .col-md-8 {
        width: 70% !important;
    }
    .form-block .upload-fields .row .col-md-4 {
        width: 30% !important;
    }
    .date-info .form-group.calendar-date {
        justify-content: flex-start;
    }

    /*Close Job*/

    .customer-info-panel {
        margin-bottom: 18px;
    }
    .created-by-info {
        margin-top: 5px;
    }
    .box-content {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .filter-box.search-filter {
    margin-bottom: 15px;
    }
    .filter-box.search-filter .btn.btn-primary.small-btn {
        padding-left: 30px;
        padding-right: 30px;
    }
    .block-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.ampm-field{    width: 100%;
    margin-bottom: 10px;
}
.file-up-box {
    display: flex;
    align-items: center;flex-wrap: wrap;
}
.file-up-box .file-up.file-up-btn {
    margin-right: 12px;
}
.title-action{margin-top:10px;}
}

@media screen and (max-width: 767px) {
    /* Sidebar */

    aside .menu-icon {
        margin: 18px 17px 12px;
    }

    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        thead {
        display: none;
    }
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr
        td::before {
        content: attr(data-title);
        display: inline-block;
        left: 0;
        min-width: 50%;
        text-align: left;
        font-weight: 700;margin-top: auto;margin-bottom: auto;
    }
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr
        td input{width:50%;}
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr,
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr
        td {
        float: left;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    table.mob-bg-color tr td .table-input{width:50%;}
     table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr
        td {border-right: none;}
        table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr
        td:last-child {border-bottom: none;}
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr {
        width: 100%;
        float: left;
        border-radius: 10px;
        margin-bottom: 25px;
        overflow: hidden;
        background-color: #fff;
    }
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr:last-child {
        margin-bottom: 0;
    }
    .fa.mob-btn {
  border-radius: 50%;
  background: #ef1c22;
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400 !important;
}
    table.mob-bg-color tr td {
    background: #f2f2f2;
    border-color: #cdcdcd;
}
table.mob-bg-color tr td input{border-color: #cdcdcd;background-color: #fff !important;}
    .action-data .action-btn {
        width: 100%;
        font-size: 12px;
        padding: 5px 14px;
    }
    .action-data {
        width: auto;
        text-align: center;
        flex: 2 1 33.33%;
        text-align: center;
    }
    .col-md-3.card {
        width: 33.33%;
        padding: 6px;
        width: auto;
    }
    /*table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)*/
    /*    tr,*/
    /*table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)*/
    /*    tr*/
    /*    td {*/
    /*    border-right: none;*/
    /*}*/
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tbody
        tr:last-child
        td:first-child {
        border-bottom-left-radius: 0;
    }
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tbody
        tr:last-child
        td {
        border-bottom: 1px solid #f2f2f2;
    }
    table.mob-bg-color:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tbody
        tr:last-child
        td:not(:last-child) {
            border-bottom: 1px solid #cdcdcd;
}
    .table-layout-content {
        margin: 0 0 28px 0;
    }
    table tr:last-child {
        margin-bottom: 0;
    }
    /*.table-block {*/
    /*    border: 1px solid #f2f2f2;*/
    /*}*/
    .table-block table.no-mob-format {
    border: 1px solid #f2f2f2;
}
    .table-with-forms tbody td {
        box-shadow: none;
        -webkit-box-shadow: none;
    }
    .dashboard-tabs {
        margin: 12px 0;
    }
    .dashboard_title p {
        font-size: 12px;
    }

    .card-wrap::after {
        display: none;
    }

    /* Timesheets */
    .timesheet-span p {
        font-size: 12px;
    }
    .timesheet-span-buttons {
        margin: 0 0 0 12px;
    }
    .timesheet-span {
        padding: 6px 12px;
    }
    .timesheets-table .table-block {
        border: none;
    }
    .timesheets-table table tr {
        border: 1px solid #f2f2f2;
        border-bottom: none !important;
        border-right: none;
    }
    .total-data-mobile {
        display: flex;
    }
    .timesheets-table tr td:first-child:before,
    .timesheets-table tr td.total-data strong {
        display: none;margin: 0;
    }
    .total-data-mobile strong {
        display: block;
    }
    .total-data-mobile {
        background-color: #f2f2f2;
    }
    .timesheets-table table td {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 25%;
        border-right: 1px solid #f2f2f2;
    }
    .timesheets-table table td:first-child {
        width: 100%;
    }
    .timesheets-table table td:first-child div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .timesheets-table table td:first-child div strong {
        margin: 0;
    }
    .timesheets-table table td.total-data-mobile {
        color: #000;
    }
    .timesheets-table table tr td::before {
        margin-bottom: 6px;
    }

    /* Dashboard Forms */

    .btn.btn-primary.small-btn {
        padding-left: 30px;
        padding-right: 30px;
    }
    /*.dashboard-tabs-content-box input,*/
    /*.dashboard-tabs-content-box textarea,*/
    /*.dashboard-tabs-content-box select {*/
    /*    padding-top: 12px;*/
    /*    padding-bottom: 12px;*/
    /*}*/

    .dashboard-tabs-content-box {
        margin: 24px 0 0 0;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        margin-top: 16px;
    }
    .ui-datepicker.ui-widget-content td {
        width: 35px;
        height: 35px;
    }
    .form-group[class*="col-md-"],
    .form-block .row > [class*="col-md-"] {
        width: 100%;
    }

    .button-group-flex .btn.btn-primary.small-btn {
        padding: 8px;
    }
    .created-by-info p {
        font-size: 14px;
    }
    .created-by-info {
        margin-top: 10px;
    }

    /*New Login*/
    .login-view .logo-block img {
        width: 150px;
    }
    .login-view .left-part {
        text-align: center;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 40px 40px;
    }
    .login-view .right-part,
    .login-view .left-part {
        width: 100%;
    }

    .logo-block {
        margin: 0 auto 30px auto;
    }
    .login-content {
        margin-bottom: 30px;
    }
    .login-content p {
        max-width: unset;
    }
    .login-view .left-part {
        justify-content: center;
    }
    .login-content {
        margin: 0;
    }

    /*Edit Form*/
    .field-label.no-mob-label {
        display: none;
    }

    /*OUTPUT DATA*/
    .form-group-label.output-group-label {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .output-row .row [class*="col-md-"] {
        width: 100%;
        margin-bottom: 15px;
    }
    .output-row .row [class*="col-md-"]:last-child {
        margin-bottom: 0;
    }
    .box-border {
    padding-top: 18px;
    padding-bottom: 18px;
    }
    
    .remove-pin,.add-pin {
    align-items: center;height:auto;
}
.action-data.pin-data{align-items: center;}
.pin-data{order:1;}
table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format) td.no-data-title::before{display:none;}
.filter-box .row .form-group:not(:last-of-type) {
    margin-bottom: 8px !important;
}
.modal-dialog {
    width: 94%;
}

.title-with-option > *{justify-content:flex-start;width:100%;}
.title-with-option h2{margin-bottom:10px;}
.no_field_mb .field_radio {
margin-bottom: 5px;
margin-top: 5px;
}
.file-up-box{
    align-items: center;
    display: flex;
}

.filter-buttons li button {
    padding: 5px 12px;
}
.filter-buttons li {
    padding: 2px;
}
.filter-buttons {
    padding: 10px 0;
    margin: -2px;
}
.generators.output-data .col-md-3 {
    width: 25%;
}
table.added-materials td,#selmaterials td{width:100% !important;}
table .total-row td[data-title="PRICE"],.table-with-forms .total-row td[data-title="MSRP"]{background: #ececf6;}
table .total-row td[data-title=""]{display:none !important;}
.wrap-data{width:50%;}
.customer-address{width:50%;margin-left: auto;font-size: 11px;}
.loading {

	padding: 10px;
	border-width: 4px;
	border-radius: 22px;
}
}

@media screen and (max-width: 640px) {
    /* Login */
    body {
        overflow-x: hidden;
    }
    body,
    p,
    li {
        font-size: 14px;
    }
    .login-form-block {
        max-width: 90%;
        padding: 6.167% 6.4%;
    }
    label {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .site-logo img {
        max-width: 220px;
    }
    .site-logo {
        margin-bottom: 40px;
    }

    input[type="submit"] {
        margin: 22px 0;
        letter-spacing: 1px;
    }
    .form-option {
        padding-left: 30px;
    }
    .form-actions > * {
        font-size: 13px;
    }
    .form-option .checkmark {
        width: 22px;
        height: 22px;
        top: -1px;
    }
    .form-option .checkmark::after {
        left: 7px;
        top: 3px;
        width: 4px;
        height: 8px;
    }
input[type="submit"], input[type="button"] {margin: 14px 0;}

    /* dashboard */
    .dashboard-right {
        width: calc(100% - 50px);
    }
    .header-search {
        width: 81%;
    }
    .dashboar_header--actions.d-flex.justify-end.align-center.col-md-7 {
        width: 100%;
        justify-content: flex-start;
        justify-content: space-between;
    }
    .dashboard_title.col-md-5 {
        width: 100%;
        margin-bottom: 16px;
    }
    .user-img {
        padding: 2px;
    }
    .dashboard-tabs-content-box {
        margin: 16px 0 0 0;
    }
    .col-md-3.card {
        width: 50%;
        width: auto;
    }
    .button-group-flex {
        flex-wrap: wrap;
    }
    .button-group-flex .btn.btn-primary.small-btn {
        width: 100px;
    }
    .button-group-flex input.btn.btn-primary.small-btn:last-child {
        margin-right: 0;
    }


    /* Sidebar */
    aside .menu-icon span {
        margin: 4px 0;
        height: 2px;
        width: 18px;
    }
    aside .menu-icon span:nth-child(2) {
        width: 13px;
    }
    aside .menu-icon span:nth-child(3) {
        width: 9px;
    }
    aside .logo {
        padding: 15px;
        min-height: 94px;
    }
    aside .menu-icon {
        margin: 40px 30px 20px;
    }
    aside.sidebar ul.sb_top_lv li span {
        font-size: 15px;
        left: 80px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 70px;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 21px;
        max-height: 21px;
    }
    aside.sidebar ul.sb_dropdown li a {
        padding: 8px 30px 8px 80px;
        font-size: 13px;
    }
    aside.sidebar {
        width: 50px;
    }
    aside .logo {
        padding: 5px 7px;
        min-height: 36px;
    }
    aside .menu-icon {
        margin: 17px 14px 12px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 5px 15px;
        margin: 5px 0;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 16px;
        max-height: 16px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 50px;
    }

    /* Dashboard Forms */
    .common-form [class*="col-md-"] {
        width: 100% !important;
    }
    .input-w-half .form-group {
        width: 100%;
    }
    .input-w-three .form-group {
        width: 100%;
    }
    .file-up span::after {
        font-size: 10px;
    }
    .file-up p {
        font-size: 12px;
    }
    .calendar-date .col-md-6 {
        width: 50%;
    }

    .custom-header-section .row > [class*="col"] {
        width: 100%;
    }
    .custom-header-section .row > [class*="col"]:not(:last-child) {
        margin-bottom: 15px;
    }
    .file-up.file-up-btn span::after {
        font-size: 10px;
        padding: 4px 6px;
    }
    table:not(.ui-datepicker-calendar):not(.table-with-forms.no-mob-format):not(.data-output-table):not(.no-mob-format)
        tr {
        margin-bottom: 15px;
    }

    /* Table Forms */
    .unit-col {
        width: 100%;
    }
    table tr:last-child {
        margin-bottom: 0;
    }
    .unit-col[class*="col-md-"] {
        width: 100%;
    }

    /*OUTPUT DATA*/
    .output-box .output-row {
        padding: 8px 0;
    }
    .output-box .output-row [class*="col-"] {
        width: 100%;
        margin-bottom: 8px;
    }
    .output-box .output-row [class*="col-"]:not(:last-child) {
        margin: 0 0 12px;
    }
    .output-box .output-row [class*="col-"]:last-child {
        margin-bottom: 0;
    }

    /*Close Job*/
    .box-heading {
        flex-direction: column;
        align-items: flex-start;
    }
    .box-heading h3 {
        margin-bottom: 6px;
    }
    .block-title {
    font-size: 21px;
    margin-bottom: 8px;
}
div .block-title-option.title-with-option > .field_radio-main,div .block-title-option.title-with-option > .button-group-flex{justify-content:flex-end;}
div .block-title-option.title-with-option > .button-group-flex{width:auto;}
div .title-with-option > .button-group-flex input{width:auto !important;}
.generators.output-data .col-md-3 {
    width: 50% !important;
}
}
@media screen and (max-width: 560px) {
    
    .updated-by.col-md-2 {
  width: auto;
  margin-left: 0;
}
}
@media screen and (max-width: 479px) {
    .site-logo img {
        max-width: 160px;
    }
    .site-logo {
        margin-bottom: 30px;
    }
    label {
        font-size: 12px;
    }
    input[type="submit"] {
        margin: 18px 0;
    }
    .login-form {
        margin-bottom: 30px;
    }
    .form-option .checkmark {
        width: 20px;
        height: 20px;
    }
    .form-option .checkmark::after {
        left: 6px;
        top: 3px;
        width: 3px;
        height: 7px;
    }
    .form-option {
        padding-left: 24px;
    }

    /* dashboard */
    [class*="col"] {
        padding: 0 10px;
    }
    .col-md-3.card {
        width: 100%;
        padding: 5px 6px;
        width: auto;
    }
    .card-wrap {
        padding: 6px 14px;
    }
    .dashboard-right {
        padding: 10px;
    }
    h1 {
        font-size: 20px;
    }
    h2 {
        font-size: 14px;
    }
    h3 {
        font-size: 12px;
    }
    .header-action:not(:first-child) {
        padding-left: 10px;
    }
    .user-img img {
        /*width: 28px;*/
        /*height: 28px;*/
        border: 2px solid #fff;
        width: 30px;
height: auto;
    }
    .user-profile .profile-menu-arrow {
        padding-left:7px;
    }
    .profile-menu-arrow img {
        width: 10px;
    }
    .header-search {
        width: calc(100% - 50px);
        /*flex: 1 1;*/
    }
    .header-profile.header-action{width:auto;}
    .dashboar_header--actions{padding-right:18px;}
    table tr {
        border-radius: 8px;
    }
    table td,
    table th {
        padding: 10px 12px;
    }
    .table-block {
        border-radius: 8px;
    }
    table tbody tr:last-child td:last-child {
        border-bottom-right-radius: 8px;
    }
    table tbody tr:last-child td:first-child {
        border-bottom-left-radius: 8px;
    }
    table thead th:first-child {
        border-top-left-radius: 8px;
    }
    table thead th:last-child {
        border-top-right-radius: 8px;
    }
    table.no-head tbody tr:first-child td:first-child {
        border-top-left-radius: 8px;
    }
    table.no-head tbody tr:first-child td:last-child {
        border-top-right-radius: 8px;
    }

    /* Sidebar */
    .multi-logo {
        height: 28px;
    }
    aside.sidebar.current ul.sb_top_lv li span {
        left: 40px;
        font-size: 12px;
    }
    aside.sidebar {
        width: 40px;
    }
    aside .logo {
        padding: 5px;
        min-height: 34px;
    }
    aside .logo a img {
        max-height: 28px;
    }
    aside .logo a {
        width: 30px;
        vertical-align: middle;
    }
    aside .menu-icon {
        margin: 14px 9px 13px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 5px 11px;
        margin: 5px 0;
    }
    aside.sidebar ul.sb_top_lv li a svg {
        max-width: 14px;
        max-height: 14px;
    }
    aside.sidebar ul.sb_top_lv li a {
        padding: 6px 12px;
        margin: 4px 0;
    }
    .dashboard-right {
        width: calc(100% - 40px);
    }
    aside .menu-icon span {
        width: 21px;
        margin: 4px 0;
        height: 2px;
    }

    /* Timesheets */

    .timesheets-table table td {
        padding: 10px 12px;
    }
    .timesheets-table table td:first-child div {
        align-items: flex-start;
        flex-direction: column;
    }
    .timesheets-table table td:first-child div strong {
        margin: 0 0 8px 0;
    }
    .timesheets-table table td {
        width: 50%;
    }
    .timesheets-table {
        border-radius: 15px;
    }
    .timesheet-span {
        padding: 6px;
        width: 100%;
    }
    .timesheet-span p {
        font-size: 11px;
    }
    .timesheet-span-buttons {
        margin: 0 0 0 8px;
    }
    .timesheet-span-buttons button {
        padding: 7px 6.5px;
    }
    .timesheet-span-buttons button img {
        width: 4px;
    }
    .timesheets-table {
        padding: 15px;
    }

    /* Dashboard Forms */
    input,
    textarea,
    select {
        font-size: 12px;
        padding: 8px 8px;
    }
    .field_radio label,
    .field_checkbox label {
        font-size: 12px;
    }
    .dashboard-tabs-content-box .form-block.common-form {
        border-radius: 15px;
        -webkit-border-radius: 15px;
    }
    .field_radio-row,
    .field_chbox-row {
        margin: 10px 0 16px;
    }
    .dashboard-tabs-content-box .form-group {
        margin-bottom: 12px;
    }
    .calendar-date label {
        margin-right: 5px;
    }
    /*.dashboard-tabs-content-box input,*/
    /*.dashboard-tabs-content-box textarea,*/
    /*.dashboard-tabs-content-box select {*/
    /*    padding-top: 10px;*/
    /*    padding-bottom: 10px;*/
    /*}*/
    .calendar-date label {
        margin-left: 10px;
    }

    .login-footer input[type="submit"] {
        max-width: 103px;
        font-size: 14px;
    }
    .login-view .right-part,
    .login-view .left-part {
        padding: 30px;
    }

    /*.button-group-flex .btn.btn-primary.small-btn {*/
    /*    width: 100% !important;*/
    /*    margin-right: 0 !important;*/
    /*}*/
    .field_checkbox label::before {
        top: 2px;
    }

    .dashboard-tabs-content-box .form-block.common-form {
        padding: 22px 16px;
    }
    .file-up.file-up-btn span::after {
        font-size: 9px;
        padding: 4px 6px;
    }
    .form-block .upload-fields .row .col-md-8 {
        width: 65% !important;
    }
    .form-block .upload-fields .row .col-md-4 {
        width: 35% !important;
    }
    .output-data-box {
        height: 100px;
        padding: 12px;
    }
    .created-by-info {
        margin-top: 8px;
        justify-content: center;
    }
    .created-by-info p {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    /*Edit Form*/
    .common-form.edit-form .field-label,
    .common-form .field-label {
        font-size: 12px;
    }
    body,
    p,
    li {
        font-size: 12px;
    }
    .form-group-label.output-group-label {
        margin-top: 16px;
        margin-bottom: 10px;
    }

    /* Table Form */
    .table-checkbox.label-visible.field_checkbox label::before {
        top: 2px;
    }

    /*Output Data*/
    .output-data-box {
        border-radius: 10px;
    }
    
    .box-border {
    padding-top: 15px;
    padding-bottom: 15px;
    }
    
    .custom-header-section .row-group .row [class*="col-md-"] {
    width: 100%;
}
.custom-header-section .row > [class*="col"]:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-top: 10px;margin-bottom: 0;
}
.custom-header-section .row:not(:last-child) > [class*="col"] {
    border-bottom: 1px solid rgba(255,255,255,.4);
}
.generators {
    padding-top: 0;
    border-top: none;
}
.block-title {
    font-size: 20px;
    margin-bottom: 6px;
}

/*div .block-title-option.title-with-option{flex-direction:column;}*/

div .title-with-option > *{margin-bottom:8px !important;}

div[class*="col-md"]:empty{display:none;}
.filter-buttons li button {
    padding: 4px 10px;
}
   
 .generators.output-data .col-md-3 {
    width: 50% !important;
} 
.updated-by {
  margin-left: 5px;
}

}

@media screen and (max-width: 375px) {
    div .block-title-option.title-with-option{flex-direction:column;}
}

table.dataTable thead .sorting {
    background-image: url("/admin/images/sort_both.png");
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
    background-repeat: no-repeat;
    background-position: center right;
}

.timecard-images{
    padding-top:30px;
}
.inactiveLink {
   pointer-events: none;
   cursor: default;
}
