@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");

/* CSS Variables for Cortex theme */
:root {
  --vz-header-bg: #405189;
  --vz-header-bg-dark: #102138;
  --vz-header-item-color-dark: rgba(255, 255, 255, 0.85);
  --vz-topbar-user-bg: rgba(255, 255, 255, 0.05);
  --vz-topbar-user-bg-dark: rgba(255, 255, 255, 0.05);
  --vz-vertical-menu-bg: #fff;
  --vz-vertical-menu-bg-dark: #102138;
  --vz-vertical-menu-border: #e9ebec;
  --vz-vertical-menu-item-color: #495057;
  --vz-vertical-menu-item-color-dark: #aab9e8;
  --vz-vertical-menu-item-hover-color: #405189;
  --vz-vertical-menu-item-hover-color-dark: rgba(255, 255, 255, 0.9);
  --vz-vertical-menu-item-active-color: #405189;
  --vz-vertical-menu-item-active-color-dark: #fff;
  --vz-vertical-menu-title-color: #878a99;
  --vz-vertical-menu-title-color-dark: #838fb9;
  --vz-vertical-menu-sub-item-color: #6c757d;
  --vz-vertical-menu-sub-item-hover-color: #405189;
  --vz-footer-bg: #f8f9fa;
  --vz-footer-bg-dark: #102138;
  --vz-border-color: #dee2e6;
  --vz-border-color-dark: #495057;
  --vz-body-color-dark: rgba(255, 255, 255, 0.75);
  --vz-gray-300: #dee2e6;
}

html,
body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Roboto, Helvetica,
    Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

h1:focus {
  outline: none;
}

h5 {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
}

strong {
  font-weight: 700;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, Roboto,
    "Helvetica Neue", Arial, sans-serif !important;
}

a,
.btn-link {
  color: #0071c1;
}

.arrow-btn {
  border: 1px solid #ccc;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.card-header {
  padding: 16px 24px 16px;
}

.card-header strong {
  font-size: 14px;
  color: #0a0a0a;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type="checkbox"]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

/* Layout width for Cortex compatibility */
.layout-width {
  max-width: 100%;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  /* Hide error boundary UI - we handle errors gracefully with ErrorBoundary component */
  display: none !important;
}

/* Project Dashboard Styles */
.project-box {
  margin-top: 16px;
  background: #ffffff;
  box-shadow: 2px 2px 8px rgba(27, 42, 64, 0.1);
  border-radius: 4px;
}

.project-box td:first-child,
.project-box th:first-child {
  padding-left: 1.5rem;
}
.project-box .milestone td:first-child {
  padding-left: 3rem !important;
}
.project-box td:last-child,
.project-box th:last-child {
  padding-right: 1.5rem;
}
.project-box .table > :not(caption) > * > * {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.project-box .project-phases tr {
  border-bottom: 1px solid #f3f4f6;
}
.project-box .milestone-row:nth-child(odd),
.project-forecast tbody tr:nth-child(odd) {
  background-color: #f9fafb;
}

.project-forecast th {
  padding-bottom: 0.56rem;
}
.project-phases .phase-row th,
.project-phases .milestone-row td,
.project-forecast td {
  padding-top: 0.56rem;
  padding-bottom: 0.56rem;
  vertical-align: top;
}

.project-comment {
  background-color: #fffcf7;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 13px;
  color: #92400e;
  display: inline-block;
  line-height: 1.2;
}

.project-comment .las {
  font-size: 16px;
}

.project-box .la-comment {
  color: #ea580c;
}

/* Project Dashboard Expand/Collapse Animations */
.project-details-container {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transform-origin: top;
}

.project-details-container.collapsed {
  max-height: 0;
  opacity: 0;
}

.project-details-container.expanded {
  max-height: none;
  opacity: 1;
}

/* Smooth transition for the chevron icon rotation */
.project-header img {
  transition: transform 0.2s ease-in-out;
}

/* Base styles for interactive project boxes */
.project-box[style*="cursor: pointer"] {
  transition: box-shadow 0.3s ease-in-out;
}

/* Glow effect for collapsed projects on hover */
.project-box.project-collapsed:hover {
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.15), 0 0 20px rgba(0, 123, 255, 0.1);
}

/* Pulsing animation for chevron when collapsed */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

.project-box.project-collapsed .project-header img {
  animation: pulse 2s ease-in-out infinite;
}

/* Hamburger Icon Styles */
.hamburger-icon {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.hamburger-icon span {
  background-color: #878a99;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  display: block;
  left: 0px;
}

.hamburger-icon span:nth-child(1) {
  top: 0;
  width: 80%;
}

.hamburger-icon span:nth-child(2) {
  top: 6px;
}

.hamburger-icon span:nth-child(3) {
  bottom: 0;
  width: 60%;
}

.vertical-menu-btn:hover .hamburger-icon:not(.open) span:nth-child(1) {
  top: -1px;
}

.vertical-menu-btn:hover .hamburger-icon:not(.open) span:nth-child(3) {
  bottom: -1px;
}

.hamburger-icon.open {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger-icon.open span:nth-child(1) {
  left: 1px;
  top: 5px;
  width: 20px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition-delay: 150ms;
  transition-delay: 150ms;
}

.hamburger-icon.open span:nth-child(2) {
  left: 3px;
  top: 13px;
  width: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
}

.hamburger-icon.open span:nth-child(3) {
  left: 9px;
  top: 13px;
  width: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.new-in-cortex-heading {
  padding: 24px;
  border-bottom: 1px solid #ebebeb;
}

.notification-next-preview-btn {
  margin-bottom: 1.5rem;
}

[data-topbar="dark"] .hamburger-icon span {
  background-color: #e9ebec;
}
.card-box {
  background: #ffffff;
  box-shadow: 2px 2px 8px rgba(27, 42, 64, 0.1);
  border-radius: 4px;
}

.avatar-upload {
  position: relative;
  max-width: 110px;
  margin: 0px auto 24px;
}

.avatar-upload .avatar-edit {
  position: absolute;
  right: -16px;
  z-index: 1;
  bottom: 15px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

.avatar-edit label i {
  vertical-align: middle;
  font-size: 14px;
  color: #2f5a84;
}

.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}

.avatar-upload .avatar-preview {
  width: 120px;
  height: 120px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#userimagenamepreview {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: red;
  background: #2f5a84;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#userimagenamepreview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#userimagenamepreview span {
  color: #fff;
  font-weight: 900;
}

#imageNamePreview {
  background: #2f5a84;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#imageNamePreview span {
  color: #fff;
  font-weight: 900;
}

#imagePreview {
  border-radius: 50% !important;
  width: 100% !important;
  height: 100% !important;
  background-repeat: no-repeat !important;
  /*swat-request css start*/
}

.swat-request #expand-filter label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.swat-request .create-request-btn {
  background: #20324c;
  border-radius: 4px;
  padding: 10px 19px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}

.input-search {
  background: #f0f5fa;
  border: 1px solid #e5edf6;
  border-radius: 4px;
}

.input-search input {
  background: transparent;
  border: none;
}

.input-search input[type="text"]:focus {
  background: #f0f5fa;
  box-shadow: none;
  border: none !important;
}

.input-search input[type="text"]:focus-visible {
  background: #f0f5fa;
  box-shadow: none;
  border: none !important;
  outline: none;
}

.input-search button {
  background: #ffffff;
  border: 1px solid #b6c5d4;
  border-radius: 0px 4px 4px 0px;
  padding: 8px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #b6c5d4;
}

.input-search button:hover {
  border: 1px solid #b6c5d4 !important;
  color: #b6c5d4 !important;
}

.active-lots-tbl .pending-status p {
  width: 104px;
  height: 18px;
  background: #f0bb00;
  border-radius: 100px;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  line-height: 18px;
}

.swat-request-create .file-upload-form {
  padding: 40px 24px;
}

.swat-request-create h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #2f5a84;
}

.label-required {
  color: #df6b00;
  margin-right: 4px;
}

input[type="radio"] ~ label {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.1px;
  color: #0a0a0a;
}

/*swat-request-issue-detail css start*/

.swat-request-issue-detail-invoice-tbl td:first-child {
  font-weight: 400 !important;
  color: #0a0a0a !important;
}

.swat-request-issue-detail-invoice-tbl td:last-child {
  font-weight: 400 !important;
  color: #0a0a0a !important;
  font-size: 14px !important;
}

.swat-request-issue-detail-invoice-tbl td.charge {
  color: #a40000;
}

.swat-request-issue-detail-invoice-tbl td.invoice-status {
  color: #a40000;
}

.swat-request-issue-detail-invoice-tbl td.invoice-date i {
  color: #a40000;
}

.swat-request-issue-detail-invoice-tbl h2 {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
}

.repair-head {
  border-bottom: 1px solid #6f6f6f;
}

.repair-head h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #0a0a0a;
}

.repair-detail {
  padding: 32px 8px 32px;
}

.repair-detail p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
  margin-bottom: 13px;
}

.repair-detail .design-image img {
  width: 400px;
}

.repair-detail .design-image {
  margin-bottom: 32px;
}

.file-name-detail i {
  color: #2f5a84;
  font-size: 20px;
  margin-right: 10px;
}

.file-name-detail {
  margin-bottom: 11px;
}

.file-name-detail h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #2f5a84;
  margin-right: 8px;
}

.file-name-detail p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #6f6f6f;
}

.request-btn {
  background: #20324c;
  border-radius: 4px;
  padding: 10px 19px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
}

.request-detail-card-box {
  background: #e5edf6;
  box-shadow: 2px 2px 8px rgba(27, 42, 64, 0.1);
  border-radius: 4px;
}

.request-detail-card-box h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
  margin-bottom: 16px;
}

.request-detail-card-box ul li h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
  width: 50%;
}

.request-detail-card-box ul li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
  width: 50%;
}

.request-detail-card-box ul li p.status-in-progress {
  width: 104px;
  height: 18px;
  line-height: 18px;
  background: #2f5a84;
  font-size: 10px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}

.request-detail-card-box ul li p.complete {
  width: 104px;
  height: 18px;
  line-height: 18px;
  background: #376917 !important;
  font-size: 10px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
}

.request-detail-card-box ul li .lot-number {
  color: #6199cb;
}

.all-attachments-inner {
  background: #f0f5fa;
  border: 1px solid #e5edf6;
  border-radius: 4px;
  padding: 9px 28px 9px 9px;
}

.all-attachments-inner .file-icon {
  margin-right: 10px;
}

.all-attachments-inner .file-icon i {
  font-size: 20px;
  padding: 15px;
  color: #6199cb;
  background: #fff;
  border-radius: 4px;
}

.all-attachments-inner .file-details h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #2f5a84;
  margin-bottom: 4px;
}

.all-attachments-inner .file-details div span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
}

.all-attachments-inner .download i {
  font-size: 15px;
  color: #6199cb;
}

.all-attachment h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
}

.all-attachments-inner:last-child {
  margin-bottom: 0 !important;
}

.team-section h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
  margin-bottom: 16px;
}

.team-section .team-name-detail h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.2px;
  color: #0a0a0a;
}

.team-section .team-name-detail p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #6f6f6f;
}

.team-section .team-swat {
  border-top: 1px solid #ebebeb;
}

.team-swat p {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
}

.team-swat p span {
  color: #6199cb;
}

.team-swat p span.call-number {
  border: 1px solid #a3a3a3;
  border-top: 0;
  border-bottom: 0;
  padding: 0 8px;
  margin: 0 8px;
}

.jurisdiction-section h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
  margin-bottom: 16px;
}

.jurisdiction-section p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #6f6f6f;
}

.filter-plus-minus {
  width: 14px !important;
}

.filter-add i {
  font-size: 14px !important;
}

/*activelots additional*/
.request-additional-deliverables-mdl .modal-header h6 {
  color: #20324c;
}

.request-additional-deliverables-mdl .modal-body {
  padding: 24px 32px;
}

.request-additional-deliverables-mdl .select-deliverables {
  border-bottom: 1px solid #d6d6d6;
}

.request-additional-deliverables-mdl .select-deliverables p:first-child {
  font-size: 14px;
  color: #0a0a0a;
  margin-bottom: 42px;
  font-weight: 400;
}

.request-additional-deliverables-mdl .select-deliverables p:last-child {
  font-size: 12px;
  color: #20324c;
  margin-bottom: 10px;
  font-weight: 500;
}

.request-additional-deliverables-mdl .original-email-dropbox ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.request-additional-deliverables-mdl .original-email-dropbox label {
  font-weight: 400;
  font-size: 14px;
}

.request-additional-deliverables-mdl .additional-deliver {
  margin-top: 40px;
}

.request-additional-deliverables-mdl .additional-deliver h2 {
  font-size: 12px;
  font-weight: 500;
  color: #20324c;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 10px;
}

.red-deliverables {
  color: #a40000 !important;
  font-size: 14px !important;
  .profiles-tabs ul {
    padding: 0px 24px 0px;
    border: none;
    border-bottom: 1px solid #d6d6d6;
  }
}

.profiles-tabs ul li button {
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 22px;
  color: #2f5a84;
  border: none !important;
  padding: 16px 10px 20px;
}

.profiles-tabs ul li button.active {
  font-weight: 600 !important;
  border-bottom: 2px solid #2f5a84 !important;
  color: #2f5a84 !important;
}

.personal-info label span {
  color: #df6b00;
}

#profiletabcontent h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
}

.assigned-communiies {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
}

.assigned-communiies span {
  .comments-tabs ul {
    padding-left: 35px;
  }
}

.comments-tabs .comment-tab-main {
  margin: 0px 32px;
  border-bottom: 1px solid #ebebeb;
}

.comments-tabs .comment-tab-main .comment-tab-left-img img {
  width: 32px;
  margin-right: 8px;
  border-radius: 50%;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #6199cb;
  margin-right: 12px;
  margin-bottom: 6px;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .date-time {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #6f6f6f;
  margin-bottom: 6px;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .comment-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #0a0a0a;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .zip-file {
  margin-top: 12px;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .zip-file i {
  font-size: 20px;
  margin-right: 10px;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .zip-file .file-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #2f5a84;
}

.comments-tabs .comment-tab-main .comment-tab-right-text .zip-file .file-size {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #6f6f6f;
  margin-left: 8px;
}

.comments-tabs .comment-tab-main:first-child {
  border-bottom: none !important;
}

.comments-tabs .leave-comment {
  padding: 24px 24px 36px 39px;
  border-top: 1px solid #d6d6d6;
}

.comments-tabs .leave-comment textarea {
  background: #f0f5fa;
  border: 1px solid #e5edf6;
  border-radius: 4px;
  padding: 10px;
}

.comments-tabs .leave-comment .filelabel {
  display: block;
  cursor: pointer;
  text-align: center;
  margin: 0;
}

.comments-tabs .leave-comment .filelabel i {
  display: block;
  font-size: 30px;
  padding-bottom: 5px;
}

.comments-tabs .leave-comment .filelabel i,
.comments-tabs .leave-comment .filelabel .title {
  color: #0a0a0a;
}

.comments-tabs .leave-comment .FileInput-upload {
  display: none;
}

.comments-tabs .leave-comment button {
  background: #20324c;
  border-radius: 4px;
  padding: 10px 15px;
  color: #fff;
  margin-left: 16px;
}

.lot-history-detail li {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
}

.lot-history-detail li:last-child {
  margin-bottom: 12px;
}

.lot-history-detail li .circle {
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 50%;
  text-align: center;
  background: #000;
  margin-right: 12px;
  margin-top: 2px;
  flex: 0 0 15px;
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  position: relative;
  box-shadow: 0 0 0 4px #fff;
}

.lot-history-detail li .circle:after {
  position: absolute;
  content: "";
  width: 0px;
  height: calc(100% + 24px);
  border-right: 1px dashed #d6d6d6;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
}

.lot-history-detail li:last-child .circle:after {
  display: none;
}

.lot-history .lot-history-detail {
  padding: 30px 52px 11px;
  border-bottom: none;
}

.lot-history-detail li p {
  color: #0a0a0a;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
}

.lot-history-detail li p span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-left: 4px;
  color: #6f6f6f;
}

.lot-history-detail.original-request-circle.circle {
  background: #a3a3a3;
  border: 1px solid #a3a3a3;
}

.lot-history-detail .original-request-circle.circle {
  background: #a3a3a3;
  border: 1px solid #a3a3a3;
}

.lot-history-detail .lot-expedited-circle.circle {
  background: #fff;
  border: 1px solid #a40000;
  color: #a40000;
}

.lot-history-detail .accepted-circle.circle {
  background: #6199cb;
  border: 1px solid #6199cb;
  color: #6199cb;
}

.lot-history-detail .in-progress-circle.circle {
  background: #20324c;
  border: 1px solid #20324c;
  color: #20324c;
}

.lot-history-detail .revision-submitted-circle.circle {
  display: flex;
  background: #fff;
  border: 1px solid #6199cb;
  color: #6199cb;
  align-items: center;
  justify-content: center;
}
.lot-history-detail .revision-submitted-circle.circle p {
  color: inherit;
  font-size: 10px;
}

.lot-history-detail .on-hold-circle.circle {
  background: #a40000;
  border: 1px solid #a40000;
  color: #a40000;
}

.lot-history-detail .deliverables-requested-circle.circle {
  display: flex;
  background: #fff;
  border: 1px solid #6f6f6f;
  color: #6f6f6f;
  align-items: center;
  justify-content: center;
}

.lot-history-detail .pending-circle.circle {
  background: #f0bb00;
  border: 1px solid #f0bb00;
  color: #a40000;
}

.lot-history-detail .complete-circle.circle {
  background: #376917;
  border: 1px solid #376917;
  color: #a40000;
}

.lot-history-detail .permit-rejected-circle.circle {
  background: #df6b00;
  border: 1px solid #df6b00;
  color: #a40000;
}

.lot-history-detail .truss-rejected-circle.circle {
  background: #df6b00;
  border: 1px solid #df6b00;
  color: #a40000;
}

.lot-history-detail .cancelled-circle.circle {
  background: #fff;
  border: 1px solid #6f6f6f;
  color: #6f6f6f;
}

.lot-history-detail .swat-circle.circle {
  background: #fff;
  border: 1px solid #6199cb;
  color: #6199cb;
}

.swat-ticket-tbl h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #2f5a84;
}

.swat-ticket-tbl .swat-ticket-btn {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #20324c;
  padding: 6px 8px;
  background: #f0f5fa;
  border-radius: 4px;
}

.swat-ticket-tbl .swat-ticket-head {
  padding: 15px 24px 17px;
}

.swat-ticket-tbl thead th {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #2f5a84;
  background: rgba(182, 197, 212, 0.1);
  padding: 15px;
  border-bottom: none !important;
}

/* SWAT Pages Body Background */
.swat-request-issue-detail {
  background: #f5f5f5;
}

.swat-request {
  background: #f5f5f5;
}

.swat-request-create {
  background: #f5f5f5;
}
