@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
.icon_gray {
  color: rgb(172, 172, 172);
}

.input_length {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4d4d4d;
}

.md-datepicker-is-showing .md-scroll-mask {
  z-index: 99;
}

.modal-backdrop {
  z-index: 1050;
}

.md-datepicker-calendar-pane {
  z-index: 2060;
}

.md-datepicker-input {
  max-width: 900px;
  width: 240px;
}

.tableFixHead {
  overflow: auto;
  margin: 3px 0px 10px 0px;
}

.tableFixHead thead th {
  position: sticky;
  top: 0px;
  z-index: 1;
}

.tableFixHead tbody tr td {
  vertical-align: middle;
}

#framework_wrapper_photos {
  position: relative;
  display: grid;
  grid-template-areas: "framework_sidebar framework_header" "framework_sidebar framework_content" "framework_sidebar framework_content";
  grid-template-columns: 270px 1fr;
  grid-template-rows: 65px 1fr 60px;
  gap: 1px;
  background-color: #c8c8c8;
  height: 100dvh;
  max-width: 1400px;
}
#framework_wrapper_photos .animate_table_row {
  animation: animateTableRow 0.5s ease-in-out;
}
@keyframes animateTableRow {
  0% {
    z-index: 1000;
    transform: scale(0.25);
  }
  100% {
    transform: scale(1);
    z-index: initial;
  }
}
#framework_wrapper_photos .framework_header {
  grid-area: framework_header;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
#framework_wrapper_photos .framework_header .cad_info {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}
#framework_wrapper_photos .framework_content {
  grid-area: framework_content;
  background-color: #f2f2f2;
  overflow-y: hidden;
  display: grid;
  grid-template-areas: "title_comments" "framework_content_comments" "title_photos" "framework_content_photos" "title_estimates" "framework_content_estimates";
  grid-template-columns: 1fr;
  grid-template-rows: 30px 145px 30px 1fr 30px 180px;
}
#framework_wrapper_photos .title_comments,
#framework_wrapper_photos .title_photos,
#framework_wrapper_photos .title_estimates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2.2em;
  position: relative;
  outline: 0;
  border: 0;
  color: #6d6d6d;
  text-align: start;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 20px;
}
#framework_wrapper_photos .title_comments .sub_title,
#framework_wrapper_photos .title_photos .sub_title,
#framework_wrapper_photos .title_estimates .sub_title {
  font-size: 14px;
}
#framework_wrapper_photos .title_comments {
  grid-area: title_comments;
}
#framework_wrapper_photos .title_photos {
  grid-area: title_photos;
  border-top: 1px solid #c8c8c8;
}
#framework_wrapper_photos .title_estimates {
  grid-area: title_estimates;
  border-top: 1px solid #c8c8c8;
  justify-content: flex-start;
}
#framework_wrapper_photos .framework_content_comments {
  grid-area: framework_content_comments;
  display: grid;
  grid-template-columns: repeat(auto-fill, 225px);
  grid-auto-rows: 170px;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
  border-bottom: 1px solid #c6c6c6;
  padding-top: 10px;
}
#framework_wrapper_photos .framework_content_photos {
  grid-area: framework_content_photos;
  padding: 20px 25px 25px 25px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 220px;
  gap: 20px;
  overflow: hidden;
  overflow-y: auto;
}
#framework_wrapper_photos .framework_content_photos .photo_limit_reached {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  border: 2px dashed #c6c6c6;
  text-align: center;
}
#framework_wrapper_photos .framework_content_photos .photo {
  display: grid;
  grid-template-columns: minmax(200px, 1fr);
  grid-template-rows: 170px;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  padding: 5px 0;
  background-color: #f8f8f8;
}
#framework_wrapper_photos .framework_content_photos .photo.animate_photo {
  animation: animatePhoto 1.75s;
}
@keyframes animatePhoto {
  0% {
    z-index: 10000;
    transform: scale(0.2);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    z-index: initial;
  }
}
#framework_wrapper_photos .framework_content_photos .photo .folder_photo_img {
  position: relative;
}
#framework_wrapper_photos .framework_content_photos .photo .folder_photo_img::before {
  content: attr(data-img-index) "";
  position: absolute;
  top: -14px;
  left: -10px;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cbcbcb;
  color: #5f5f5f;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title {
  display: grid;
  grid-template-columns: 25px 20px 1fr 20px;
  align-items: center;
  border-top: 1px solid #d5d5d5;
  width: 100%;
  height: 39px;
  padding: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 5px;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .notes {
  font-size: 14px;
  font-weight: normal;
  color: #4d4d4d;
  margin: 0 10px;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .notes:hover {
  cursor: pointer;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .edit_button,
#framework_wrapper_photos .framework_content_photos .photo .photo_title .delete_button,
#framework_wrapper_photos .framework_content_photos .photo .photo_title .check_button {
  font-size: 16px;
  color: #4d4d4d;
  margin: 0 5px;
  width: 20px;
  transition: all 0.3s ease;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .edit_button:hover,
#framework_wrapper_photos .framework_content_photos .photo .photo_title .delete_button:hover,
#framework_wrapper_photos .framework_content_photos .photo .photo_title .check_button:hover {
  cursor: pointer;
  color: #007bff;
  scale: 1.5;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .delete_button:hover {
  color: red;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .check_button {
  font-size: 19px;
  padding-top: 2px;
}
#framework_wrapper_photos .framework_content_photos .photo .photo_title .check_button:hover {
  color: green;
}
#framework_wrapper_photos .framework_content_photos .photo img {
  max-width: calc(100% - 10px);
  max-height: calc(100% - 5px);
  border-radius: 7px;
  display: inline-block;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
  box-shadow: 3px 3px 5px #c6c6c6;
}
#framework_wrapper_photos .framework_content_photos .photo img:hover {
  cursor: pointer;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding: 10px;
  border: 2px dashed #c6c6c6;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone .upload_icon {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  font-size: 62px;
  color: #4E97DA;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone .upload_icon .upload_icon_text {
  font-size: 16px;
  text-align: center;
  line-height: 1.25;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone .upload_icon .click_to_browse {
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone .upload_icon .click_to_browse:hover {
  cursor: pointer;
  text-decoration: underline;
}
#framework_wrapper_photos .framework_content_photos .photo_dropzone:hover {
  cursor: pointer;
  border-color: #a2ff02;
  background-color: #ecffcb;
}
#framework_wrapper_photos .framework_content_photos_first {
  padding: 40px 5% 15px 5%;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px dashed #c6c6c6;
  border-radius: 20px;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area:hover {
  cursor: pointer;
  border-color: #a2ff16;
  background-color: #f0f0f0;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area .upload_icon {
  font-size: 70px;
  color: #4E97DA;
  transition: all 0.3s ease;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area .upload_icon:hover {
  scale: 1.2;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area .upload_text {
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  margin-left: 10px;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area .click_to_browse {
  color: #4e97da;
}
#framework_wrapper_photos .framework_content_photos_first .upload_area .click_to_browse:hover {
  cursor: pointer;
  text-decoration: underline;
}
#framework_wrapper_photos .framework_content_photos_first .first_photo_message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#framework_wrapper_photos .framework_content_photos_first .first_photo_message .title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_photos .framework_content_photos_first .first_photo_message .text {
  font-size: 14px;
  font-weight: normal;
  margin: 0 20%;
}
#framework_wrapper_photos .framework_content_photos_first .first_photo_message .important_text {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  color: red;
}
#framework_wrapper_photos .framework_content_photos_first .first_photo_message .important_text ul {
  text-align: start;
  font-size: 16px;
  font-weight: normal;
  color: #4d4d4d;
}
#framework_wrapper_photos .framework_content_estimates {
  grid-area: framework_content_estimates;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-auto-rows: 1fr;
  gap: 10px;
}
#framework_wrapper_photos .framework_content_estimates .action_icon {
  font-size: 16px;
  padding: 2px 0px;
  width: 50px;
}
#framework_wrapper_photos .framework_content_estimates .add_estimate {
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 30px;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 10px;
  color: #757575;
}
#framework_wrapper_photos .framework_content_estimates .add_estimate .add_estimate_icon {
  transition: all 0.3s ease;
}
#framework_wrapper_photos .framework_content_estimates .add_estimate .add_estimate_icon:hover {
  cursor: pointer;
  color: #99ff00;
  scale: 1.25;
}
#framework_wrapper_photos .framework_content_framework_messages {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 100%;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
}
#framework_wrapper_photos #descriptionTextbox {
  height: 70px;
  max-height: 70px;
  min-height: 70px;
  resize: none;
}
#framework_wrapper_photos .framework_sidebar {
  grid-area: framework_sidebar;
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: 175px auto min-content 205px;
  overflow: hidden;
  background-color: #f2f2f2;
}
#framework_wrapper_photos .framework_sidebar .sidebar_header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 93px 35px 27px 30px;
  text-align: center;
}
#framework_wrapper_photos .framework_sidebar .sidebar_header img {
  height: 94px;
  margin: 0 auto;
}
#framework_wrapper_photos .framework_sidebar .sidebar_header .ptax_name {
  height: 30px;
  font-size: 14px;
}
#framework_wrapper_photos .framework_sidebar .sidebar_header .eportal_name {
  text-align: center;
  font-size: 1.2rem;
  line-height: 0.6;
  font-weight: bold;
}
#framework_wrapper_photos .framework_sidebar .sidebar_header .folder_name {
  font-size: 18px;
  font-weight: bold;
  border-radius: 24px;
  background: #2e72ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content {
  position: absolute;
  top: 45px;
  right: -10px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 10px 0 0;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_title {
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 10px;
  margin-right: 5px;
  border-bottom: 1px solid #c6c6c6;
  text-align: center;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_title i {
  font-size: 27px;
  color: red;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_title .alert_count {
  font-size: 22px;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content {
  margin: 0 10px;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content .btn-fix {
  font-size: 12px;
  margin-left: 3px;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title:hover {
  cursor: pointer;
  color: #007bff;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content {
  font-size: 14px;
  color: #4d4d4d;
  margin: 3px 5px 5px 10px;
  text-align: justify;
  line-height: 1.2;
}
#framework_wrapper_photos .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content:hover {
  cursor: pointer;
}
#framework_wrapper_photos .framework_sidebar .navigation_section {
  padding: 10px 5px;
  border-top: 1px solid #c6c6c6;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section {
  border-top: 1px solid #c6c6c6;
  text-align: center;
  padding-top: 5px;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .rating_title {
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .rating {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 15px;
  line-height: 1;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .status_item {
  font-size: 17px;
  margin: 0px 15px 0;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .status_item .status_item_value {
  font-size: 19px;
  font-weight: bold;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .status_item .indented {
  margin-left: 13px;
}
#framework_wrapper_photos .framework_sidebar .overall_status_section .estimate_total {
  margin-top: 3px;
  font-size: 25px;
  font-weight: bold;
}
#framework_wrapper_photos .prevent_select {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}
#framework_wrapper_photos .limit3lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
#framework_wrapper_photos .desirability_rating_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 30px 20px;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
#framework_wrapper_photos .desirability_rating_wrapper .title {
  font-size: 24px;
  margin-bottom: 20px;
}
#framework_wrapper_photos .desirability_rating_wrapper .rating {
  font-size: 26px;
  font-weight: bold;
}
#framework_wrapper_photos .desirability_rating_wrapper .actionable_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  padding: 20px 10% 20px;
}
#framework_wrapper_photos .desirability_rating_wrapper .actionable_list .list_header {
  margin-left: -20px;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #949494;
  font-weight: bold;
}
#framework_wrapper_photos .desirability_rating_wrapper .actionable_list ul {
  padding: 0;
}
#framework_wrapper_photos .desirability_rating_wrapper .actionable_list li {
  background-color: #f0f0f0;
  line-height: 1.25;
  padding-bottom: 10px;
}
#framework_wrapper_photos .desirability_rating_wrapper .warnings {
  font-size: 18px;
  font-weight: bold;
  color: red;
  line-height: 1.3;
}
#framework_wrapper_photos .desirability_rating_wrapper .proceed_wrapper {
  margin-top: 20px;
}

.file_dropzone_area #file_dropzone_area {
  width: 100%;
  height: 90px;
  border: 2px dotted gray;
  padding: 10px 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
  color: gray;
  transition: all 0.3s ease;
}
.file_dropzone_area #file_dropzone_area:hover {
  cursor: pointer;
  border-color: #a2ff02;
  background-color: #ecffcb;
}
.file_dropzone_area .errors {
  color: red;
  text-align: center;
  width: 100%;
}
.file_dropzone_area .validation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

#framework_wrapper_folders {
  position: relative;
  display: grid;
  grid-template-areas: "framework_sidebar framework_header" "framework_sidebar framework_content" "framework_sidebar framework_content";
  grid-template-columns: 270px 1fr;
  grid-template-rows: 65px 1fr 60px;
  gap: 1px;
  background-color: #c8c8c8;
  height: 100dvh;
  max-width: 1400px;
}
#framework_wrapper_folders .animate_table_row {
  animation: animateTableRow 0.5s ease-in-out;
}
@keyframes animateTableRow {
  0% {
    z-index: 1000;
    transform: scale(0.25);
  }
  100% {
    transform: scale(1);
    z-index: initial;
  }
}
#framework_wrapper_folders .framework_header {
  grid-area: framework_header;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
#framework_wrapper_folders .framework_header .cad_info {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}
#framework_wrapper_folders .framework_content {
  grid-area: framework_content;
  background-color: #f2f2f2;
  overflow-y: hidden;
  display: grid;
  grid-template-areas: "title_estimates" "folder_content_files";
  grid-template-columns: 1fr;
  grid-template-rows: minmax(auto, 120px) 1fr;
}
#framework_wrapper_folders .title_folder {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: relative;
  outline: 0;
  border: 0;
  color: #6d6d6d;
  text-align: start;
  padding: 10px 5px 20px 20px;
  font-size: 20px;
}
#framework_wrapper_folders .title_folder .sub_title {
  font-size: 18px;
}
#framework_wrapper_folders .folder_content_files {
  grid-area: folder_content_files;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-auto-rows: 1fr;
  margin-top: 20px;
  overflow: hidden;
  overflow-y: auto;
}
#framework_wrapper_folders .folder_content_files .action_icon {
  font-size: 16px;
  padding: 2px 0px;
  width: 50px;
}
#framework_wrapper_folders .folder_content_files .add_estimate {
  display: flex;
  justify-content: center;
  align-items: start;
  font-size: 30px;
  font-weight: bold;
  color: #4d4d4d;
  margin-top: 10px;
  color: #757575;
}
#framework_wrapper_folders .folder_content_files .add_estimate .add_estimate_icon {
  transition: all 0.3s ease;
}
#framework_wrapper_folders .folder_content_files .add_estimate .add_estimate_icon:hover {
  cursor: pointer;
  color: #99ff00;
  scale: 1.25;
}
#framework_wrapper_folders .no_docs_to_display {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-top: 40px;
}
#framework_wrapper_folders .no_docs_to_display .no_docs_to_display_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
#framework_wrapper_folders .no_docs_to_display .no_docs_to_display_content {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
#framework_wrapper_folders .no_docs_to_display .no_docs_to_display_button i {
  font-size: 38px;
}
#framework_wrapper_folders .no_docs_to_display .no_docs_to_display_button button {
  font-size: 18px;
  padding: 10px 30px;
}
#framework_wrapper_folders .framework_content_framework_messages {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 100%;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
}
#framework_wrapper_folders #descriptionTextbox {
  height: 105px;
  max-height: 105px;
  min-height: 105px;
  resize: none;
}
#framework_wrapper_folders .framework_sidebar {
  grid-area: framework_sidebar;
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: 155px auto min-content 205px;
  overflow: hidden;
  background-color: #f2f2f2;
}
#framework_wrapper_folders .framework_sidebar .sidebar_header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 93px 35px 27px 30px;
  text-align: center;
}
#framework_wrapper_folders .framework_sidebar .sidebar_header img {
  height: 94px;
  margin: 0 auto;
}
#framework_wrapper_folders .framework_sidebar .sidebar_header .ptax_name {
  height: 30px;
  font-size: 14px;
}
#framework_wrapper_folders .framework_sidebar .sidebar_header .eportal_name {
  text-align: center;
  font-size: 1.2rem;
  line-height: 0.6;
  font-weight: bold;
}
#framework_wrapper_folders .framework_sidebar .sidebar_header .folder_name {
  font-size: 18px;
  font-weight: bold;
  border-radius: 24px;
  background: #2e72ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content {
  position: absolute;
  top: 45px;
  right: -10px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 10px 0 0;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_title {
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 10px;
  margin-right: 5px;
  border-bottom: 1px solid #c6c6c6;
  text-align: center;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_title i {
  font-size: 27px;
  color: red;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_title .alert_count {
  font-size: 22px;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content {
  margin: 0 10px;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content .btn-fix {
  font-size: 12px;
  margin-left: 3px;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title:hover {
  cursor: pointer;
  color: #007bff;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content {
  font-size: 14px;
  color: #4d4d4d;
  margin: 3px 5px 5px 10px;
  text-align: justify;
  line-height: 1.2;
}
#framework_wrapper_folders .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content:hover {
  cursor: pointer;
}
#framework_wrapper_folders .framework_sidebar .navigation_section {
  padding: 10px 5px;
  border-top: 1px solid #c6c6c6;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section {
  border-top: 1px solid #c6c6c6;
  text-align: center;
  padding-top: 5px;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .rating_title {
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .rating {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 15px;
  line-height: 1;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .status_item {
  font-size: 17px;
  margin: 0px 15px 0;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .status_item .status_item_value {
  font-size: 19px;
  font-weight: bold;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .status_item .indented {
  margin-left: 13px;
}
#framework_wrapper_folders .framework_sidebar .overall_status_section .estimate_total {
  margin-top: 3px;
  font-size: 25px;
  font-weight: bold;
}
#framework_wrapper_folders .prevent_select {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}
#framework_wrapper_folders .limit3lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
#framework_wrapper_folders .desirability_rating_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 30px 20px;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
#framework_wrapper_folders .desirability_rating_wrapper .title {
  font-size: 24px;
  margin-bottom: 20px;
}
#framework_wrapper_folders .desirability_rating_wrapper .rating {
  font-size: 26px;
  font-weight: bold;
}
#framework_wrapper_folders .desirability_rating_wrapper .actionable_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  padding: 20px 10% 20px;
}
#framework_wrapper_folders .desirability_rating_wrapper .actionable_list .list_header {
  margin-left: -20px;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #949494;
  font-weight: bold;
}
#framework_wrapper_folders .desirability_rating_wrapper .actionable_list ul {
  padding: 0;
}
#framework_wrapper_folders .desirability_rating_wrapper .actionable_list li {
  background-color: #f0f0f0;
  line-height: 1.25;
  padding-bottom: 10px;
}
#framework_wrapper_folders .desirability_rating_wrapper .warnings {
  font-size: 18px;
  font-weight: bold;
  color: red;
  line-height: 1.3;
}
#framework_wrapper_folders .desirability_rating_wrapper .proceed_wrapper {
  margin-top: 20px;
}

.file_dropzone_area #file_dropzone_area {
  width: 100%;
  height: 90px;
  border: 2px dotted gray;
  padding: 10px 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: bold;
  color: gray;
  transition: all 0.3s ease;
}
.file_dropzone_area #file_dropzone_area:hover {
  cursor: pointer;
  border-color: #a2ff02;
  background-color: #ecffcb;
}
.file_dropzone_area .errors {
  color: red;
  text-align: center;
  width: 100%;
}
.file_dropzone_area .validation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
}

#framework_wrapper_comments {
  position: relative;
  display: grid;
  grid-template-areas: "framework_sidebar framework_header" "framework_sidebar framework_content" "framework_sidebar framework_content";
  grid-template-columns: 270px 1fr;
  grid-template-rows: 65px 1fr 60px;
  gap: 1px;
  background-color: #c8c8c8;
  height: 100dvh;
  max-width: 1400px;
}
#framework_wrapper_comments .framework_header {
  grid-area: framework_header;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
#framework_wrapper_comments .framework_header .cad_info {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}
#framework_wrapper_comments .framework_content {
  grid-area: framework_content;
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  overflow-y: hidden;
  padding: 10px 15px;
}
#framework_wrapper_comments .framework_sidebar {
  grid-area: framework_sidebar;
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: 155px auto min-content 205px;
  overflow: hidden;
  background-color: #f2f2f2;
}
#framework_wrapper_comments .framework_sidebar .sidebar_header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 94px 35px 27px 30px;
  text-align: center;
}
#framework_wrapper_comments .framework_sidebar .sidebar_header img {
  height: 96px;
  margin: 0 auto;
}
#framework_wrapper_comments .framework_sidebar .sidebar_header .ptax_name {
  height: 30px;
  font-size: 14px;
}
#framework_wrapper_comments .framework_sidebar .sidebar_header .eportal_name {
  text-align: center;
  font-size: 1.2rem;
  line-height: 0.6;
  font-weight: bold;
}
#framework_wrapper_comments .framework_sidebar .sidebar_header .folder_name {
  font-size: 18px;
  font-weight: bold;
  border-radius: 24px;
  background: #2e72ca;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content {
  position: absolute;
  top: 45px;
  right: -10px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 10px 0 0;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_title {
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 10px;
  margin-right: 5px;
  border-bottom: 1px solid #c6c6c6;
  text-align: center;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_title i {
  font-size: 27px;
  color: red;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_title .alert_count {
  font-size: 22px;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content {
  margin: 0 10px;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content .btn-fix {
  font-size: 12px;
  margin-left: 3px;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title:hover {
  cursor: pointer;
  color: #007bff;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content {
  font-size: 14px;
  color: #4d4d4d;
  margin: 3px 5px 5px 10px;
  text-align: justify;
  line-height: 1.2;
}
#framework_wrapper_comments .framework_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content:hover {
  cursor: pointer;
}
#framework_wrapper_comments .framework_sidebar .navigation_section {
  padding: 10px 5px;
  border-top: 1px solid #c6c6c6;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section {
  border-top: 1px solid #c6c6c6;
  text-align: center;
  padding-top: 5px;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .rating_title {
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .rating {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 15px;
  line-height: 1;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .status_item {
  font-size: 17px;
  margin: 0px 15px 0;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .status_item .status_item_value {
  font-size: 19px;
  font-weight: bold;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .status_item .indented {
  margin-left: 13px;
}
#framework_wrapper_comments .framework_sidebar .overall_status_section .estimate_total {
  margin-top: 3px;
  font-size: 25px;
  font-weight: bold;
}
#framework_wrapper_comments .prevent_select {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}
#framework_wrapper_comments .limit3lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
#framework_wrapper_comments .desirability_rating_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 30px 20px;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
#framework_wrapper_comments .desirability_rating_wrapper .title {
  font-size: 24px;
  margin-bottom: 20px;
}
#framework_wrapper_comments .desirability_rating_wrapper .rating {
  font-size: 26px;
  font-weight: bold;
}
#framework_wrapper_comments .desirability_rating_wrapper .actionable_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  padding: 20px 10% 20px;
}
#framework_wrapper_comments .desirability_rating_wrapper .actionable_list .list_header {
  margin-left: -20px;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #949494;
  font-weight: bold;
}
#framework_wrapper_comments .desirability_rating_wrapper .actionable_list ul {
  padding: 0;
}
#framework_wrapper_comments .desirability_rating_wrapper .actionable_list li {
  background-color: #f0f0f0;
  line-height: 1.25;
  padding-bottom: 10px;
}
#framework_wrapper_comments .desirability_rating_wrapper .warnings {
  font-size: 18px;
  font-weight: bold;
  color: red;
  line-height: 1.3;
}
#framework_wrapper_comments .desirability_rating_wrapper .proceed_wrapper {
  margin-top: 20px;
}

.icon_gray {
  color: rgb(172, 172, 172);
}

#gallery_wrapper {
  position: relative;
  display: grid;
  grid-template-areas: "gallery_sidebar gallery_header" "gallery_sidebar gallery_content" "gallery_sidebar gallery_footer";
  grid-template-columns: 270px 1fr;
  grid-template-rows: 65px 1fr 60px;
  gap: 1px;
  background-color: #c8c8c8;
  height: 100dvh;
  max-width: 1200px;
}

.gallery_header {
  grid-area: gallery_header;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
.gallery_header .cad_info {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
}

.gallery_content {
  grid-area: gallery_content;
  background-color: #f2f2f2;
  overflow-y: hidden;
  display: grid;
  grid-template-areas: "title_docs" "gallery_content_documents" "title_photos" "gallery_content_photos";
  grid-template-columns: 1fr;
  grid-template-rows: 40px 203px 40px 1fr;
}
.gallery_content .has_issue::before {
  content: "\f071";
  font-family: "FontAwesome";
  color: #ff0202;
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  top: 10px;
  left: 86px;
}

.title_docs,
.title_photos {
  grid-area: title_docs;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2.2em;
  position: relative;
  outline: 0;
  border: 0;
  color: rgb(109, 109, 109);
  text-align: start;
  padding-left: 20px;
  font-size: 21px;
  height: 2em;
}
.title_docs .sub_title,
.title_photos .sub_title {
  font-size: 14px;
}

.title_photos {
  grid-area: title_photos;
}

.gallery_content_documents {
  grid-area: gallery_content_documents;
  display: grid;
  grid-template-columns: repeat(auto-fill, 225px);
  grid-auto-rows: 170px;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
  border-bottom: 1px solid #c6c6c6;
  padding-top: 10px;
}

.gallery_content_photos {
  grid-area: gallery_content_photos;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 180px;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
}

.gallery_content_photos_messages {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 100%;
  gap: 0px;
  overflow: hidden;
  overflow-y: auto;
}

.gallery_footer {
  grid-area: gallery_footer;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery_sidebar {
  grid-area: gallery_sidebar;
  display: grid;
  padding: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: 205px auto min-content 205px;
  overflow: hidden;
  background-color: #f2f2f2;
}
.gallery_sidebar .logo {
  text-align: center;
  background-color: #f2f2f2;
}
.gallery_sidebar .logo img {
  width: 70px;
  margin: 0 auto;
}
.gallery_sidebar .logo .ptax_name {
  text-align: center;
  font-size: 14px;
  color: #4d4d4d;
  font-weight: bold;
}
.gallery_sidebar .logo .eportal_name {
  text-align: center;
  font-size: 1.2rem;
  line-height: 0.6;
  font-weight: bold;
}
.gallery_sidebar .alert_menu_section {
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.gallery_sidebar .alert_menu_section .alert_menu_content {
  position: absolute;
  top: 45px;
  right: -10px;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 10px 0 0;
}
.gallery_sidebar .alert_menu_section .alert_menu_title {
  font-size: 18px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 10px;
  margin-right: 5px;
  border-bottom: 1px solid #c6c6c6;
  text-align: center;
}
.gallery_sidebar .alert_menu_section .alert_menu_title i {
  font-size: 27px;
  color: red;
}
.gallery_sidebar .alert_menu_section .alert_menu_title .alert_count {
  font-size: 22px;
}
.gallery_sidebar .alert_menu_section .alert_menu_content {
  margin: 0 10px;
}
.gallery_sidebar .alert_menu_section .alert_menu_content .btn-fix {
  font-size: 12px;
}
.gallery_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: bold;
  color: #4d4d4d;
}
.gallery_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_title:hover {
  cursor: pointer;
  color: #007bff;
}
.gallery_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content {
  font-size: 14px;
  color: #4d4d4d;
  margin: 3px 5px 5px 10px;
  text-align: justify;
  line-height: 1.2;
}
.gallery_sidebar .alert_menu_section .alert_menu_content .alert_menu_item_content:hover {
  cursor: pointer;
}
.gallery_sidebar .navigation_section {
  padding: 10px 5px;
  border-top: 1px solid #c6c6c6;
}
.gallery_sidebar .overall_status_section {
  border-top: 1px solid #c6c6c6;
  text-align: center;
  padding-top: 5px;
}
.gallery_sidebar .overall_status_section .rating_title {
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}
.gallery_sidebar .overall_status_section .rating {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4d;
  margin-bottom: 15px;
  line-height: 1;
}
.gallery_sidebar .overall_status_section .status_item {
  font-size: 17px;
  margin: 0px 15px 0;
  line-height: 1.3;
  display: flex;
  justify-content: space-between;
}
.gallery_sidebar .overall_status_section .status_item .status_item_value {
  font-size: 19px;
  font-weight: bold;
}
.gallery_sidebar .overall_status_section .status_item .indented {
  margin-left: 13px;
}
.gallery_sidebar .overall_status_section .estimate_total {
  margin-top: 3px;
  font-size: 25px;
  font-weight: bold;
}

.gallery_folder_normal,
.gallery_folder_selected {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 245px;
  height: 185px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: visible;
}

.gallery_folder_normal {
  background-image: URL("../../dist/images/folders/folder_standard.jpg");
}
.gallery_folder_normal:hover {
  background-image: URL("../../dist/images/folders/folder_standard_hover.jpg");
}

.gallery_folder_selected {
  background-image: URL("../../dist/images/folders/folder_selected.jpg");
}
.gallery_folder_selected:hover {
  background-image: URL("../../dist/images/folders/folder_selected_hover.jpg");
}

.folder_type {
  position: absolute;
  top: 12px;
  left: 31px;
  font-size: 15px;
}

.folder_type_icon {
  font-size: 22px;
  color: #cacaca;
}

.folder_title_documents,
.folder_title_photos {
  position: absolute;
  top: 60px;
  left: 25px;
  right: 27px;
  height: 50px;
  color: darkgray;
  font-size: 18px;
  line-height: 1.16;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.folder_title_photos {
  top: 40px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.folder_checkbox {
  position: absolute;
  font-size: 18px;
  padding-top: 2px;
  top: 12px;
  left: 30px;
}
.folder_checkbox:hover {
  cursor: pointer;
  color: greenyellow;
}

.folder_content,
.folder_content2 {
  position: absolute;
  bottom: 28px;
  height: 30px;
  left: 30px;
  right: 30px;
  display: grid;
  grid-template-columns: 1fr 35px;
  grid-template-rows: 1fr;
}
.folder_content .file_count_wrapper,
.folder_content .repair_total_wrapper,
.folder_content2 .file_count_wrapper,
.folder_content2 .repair_total_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(119, 119, 119);
  font-size: 17px;
}
.folder_content .file_count_wrapper .file_count,
.folder_content .file_count_wrapper .repair_total,
.folder_content .repair_total_wrapper .file_count,
.folder_content .repair_total_wrapper .repair_total,
.folder_content2 .file_count_wrapper .file_count,
.folder_content2 .file_count_wrapper .repair_total,
.folder_content2 .repair_total_wrapper .file_count,
.folder_content2 .repair_total_wrapper .repair_total {
  font-size: 16px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.folder_content .file_count_wrapper .file_count_value,
.folder_content .repair_total_wrapper .file_count_value,
.folder_content2 .file_count_wrapper .file_count_value,
.folder_content2 .repair_total_wrapper .file_count_value {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(235, 235, 235);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 15px;
}
.folder_content .repair_total_wrapper,
.folder_content2 .repair_total_wrapper {
  font-size: 17px;
}
.folder_content .repair_total_wrapper .repair_total,
.folder_content2 .repair_total_wrapper .repair_total {
  width: 100%;
  height: 100%;
  background-color: inherit;
  padding-left: 5px;
}
.folder_content .folder_menu,
.folder_content2 .folder_menu {
  color: rgb(118, 118, 118);
  font-size: 23px;
  padding-right: 10px;
  height: 27px;
  border-radius: 10px;
  display: flex;
  justify-content: end;
  align-items: center;
  padding-top: 6px;
}
.folder_content .folder_menu:hover,
.folder_content2 .folder_menu:hover {
  cursor: pointer;
  color: greenyellow;
}
.folder_content .folder_dropdown_menu i,
.folder_content2 .folder_dropdown_menu i {
  width: 20px;
  margin-right: 10px;
}

.folder_content2 {
  grid-template-columns: 35px 1fr 35px;
}

.folder_files_wrapper {
  position: absolute;
  top: 100px;
  left: 30px;
  right: 30px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  color: darkgray;
}
.folder_files_wrapper:hover {
  cursor: pointer;
}

.prevent_select {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
       user-select: none;
  /* Standard syntax */
}

.limit3lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.doc_tooltip_wrapper {
  font-size: 15px;
  width: 295px;
  height: -moz-max-content;
  height: max-content;
  white-space: normal;
  text-align: justify;
  padding: 10px;
}
.doc_tooltip_wrapper .title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}
.doc_tooltip_wrapper .body {
  line-height: 1.2;
}
.doc_tooltip_wrapper ul {
  margin: 5px 0 5px 0;
}
.doc_tooltip_wrapper .warning {
  margin-top: 10px;
  line-height: 1.1;
  font-weight: bold;
  color: red;
  text-align: center;
}

.gallery_folder_first {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
  margin: 15px 5% 20px 5%;
}
.gallery_folder_first .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.gallery_folder_first .warning {
  font-size: 18px;
  font-weight: bold;
  color: red;
  line-height: 1.3;
}

.desirability_rating_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px 30px 20px;
  text-align: center;
  font-size: 18px;
  width: 100%;
}
.desirability_rating_wrapper .title {
  font-size: 24px;
  margin-bottom: 20px;
}
.desirability_rating_wrapper .rating {
  font-size: 26px;
  font-weight: bold;
}
.desirability_rating_wrapper .actionable_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 50px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  padding: 20px 10% 20px;
}
.desirability_rating_wrapper .actionable_list .list_header {
  margin-left: -20px;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #949494;
  font-weight: bold;
}
.desirability_rating_wrapper .actionable_list ul {
  padding: 0;
}
.desirability_rating_wrapper .actionable_list li {
  background-color: #f0f0f0;
  line-height: 1.25;
  padding-bottom: 10px;
}
.desirability_rating_wrapper .warnings {
  font-size: 18px;
  font-weight: bold;
  color: red;
  line-height: 1.3;
}
.desirability_rating_wrapper .proceed_wrapper {
  margin-top: 20px;
}

.input_length {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4d4d4d;
}

.pagebreak {
  page-break-after: always;
}

#evidence-report-no-print-wrapper {
  background-color: white;
  border-bottom: none;
  box-shadow: 0 0 5px grey;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.html_content {
  width: 100%;
  height: 100%;
}

#report_container {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  margin-top: clamp(140px, 220px - 10vw, 270px);
  width: 100vw;
  padding: 40px 0px;
  border-bottom: none;
  box-shadow: 0 0 5px grey;
  background-color: white;
  z-index: 1;
}

.report_wrapper {
  box-shadow: 0 0 5px grey;
  padding: 35px 40px 40px 40px;
  border-radius: 2px;
  margin: 0px auto 30px auto;
  width: 100%;
  max-width: 850px;
  min-width: 850px;
  height: 1150px;
  max-height: 1150px;
  min-height: 1150px;
}

.report_header {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-bottom: 175px;
}

.report_body {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}

.report_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 49%;
  font-size: 2.5em;
  font-weight: bold;
  text-align: right;
  line-height: 1.2;
}

.report_subtitle {
  font-size: 0.75em;
}

.report_date {
  width: 49%;
  margin-left: 28px;
  color: gray;
  font-size: 5.1em;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  border-left: 5px solid gray;
}

.content_wrapper {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 215px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content_header {
  padding: 5px 20px;
  margin-bottom: 5px;
  font-size: 1.2em;
  font-weight: bold;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
}

.content_items {
  text-align: left;
}

.report_footer {
  display: flex;
  justify-content: end;
}

.footer_table {
  width: -moz-max-content;
  width: max-content;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  border-collapse: separate;
  border-spacing: 0px 25px;
}

.footer_section {
  border-right: 2px solid gray;
  text-align: right;
  padding-right: 15px;
}

.footer_title_wrapper {
  text-align: right;
  padding-left: 20px;
}

.footer_title {
  font-size: 1em;
  font-weight: bold;
}

.footer_subtitle {
  font-weight: 400;
  font-size: 0.9em;
}

.footer_section_info {
  text-align: right;
  padding: 5px 5px 5px 20px;
  border-radius: 0 5px 5px 0;
}

.owner_comments {
  font-size: 1.2em;
}

.rpt_photos_title {
  font-size: 1.4em;
  font-weight: bold;
  border-bottom: 1px solid gray;
  text-align: center;
}

.rpt_photos_address {
  font-size: 1.3em;
  text-align: center;
}

.rpt_photos_location {
  font-size: 1.1em;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.photo_comment_table {
  margin-top: 15px;
  margin-bottom: 15px;
}

.photo_comment_table_tr {
  font-size: 0.9em;
  line-height: 1.2;
}

.photo_comment_table_title {
  text-align: right;
  width: -moz-max-content;
  width: max-content;
  border-right: 1px solid gray;
  padding-right: 5px;
}

.photo_comment_table_desc {
  padding-left: 10px;
  vertical-align: top;
  text-align: justify;
}

.rpt_photo_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.rpt_photo_subtitle {
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  padding: 2px 5px;
  font-size: 0.9em;
  text-align: justify;
  line-height: 1.2;
}

.rpt_photo_wrapper {
  width: 45%;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
}

.rpt_photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px auto 7px auto;
  width: 98%;
  max-width: 98%;
  height: 100%;
  max-height: 260px;
  -o-object-fit: contain;
  object-fit: contain;
  background-position: center;
}

.rpt_photo img {
  max-width: 100%;
  height: 195px;
  max-height: 100%;
  display: inline-block;
  margin: 0 auto;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
}

.rpt_comments {
  font-size: 1em;
  text-align: justify;
  line-height: 1.2;
  margin: 0;
}

.rpt_comments p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.rpt_comments_subtitle {
  font-size: 1em;
  font-weight: 700;
  margin: 40px 0 0 0;
  text-align: left;
  margin-bottom: 25px;
}

.rpt_repairs_wrapper {
  margin-top: 35px;
}

.rpt_repairs_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
  padding: 0 5px;
  border-bottom: 1px solid lightgray;
  font-size: 0.9em;
  line-height: 1.2;
}

.rpt_repairs_item_title,
.rpt_repairs_cost {
  font-size: 1.2em;
  font-weight: bold;
}

.rpt_repairs_title_total {
  font-size: 1.1em;
  text-align: center;
}

.rpt_repairs_title_cost {
  font-size: 1.1em;
  font-weight: bold;
}

.rpt_repairs_item {
  margin-top: 30px;
}

.rpt_repairs_item_desc {
  text-align: justify;
  font-size: 1em;
  padding: 0 5px;
}

.rpt_repairs_item_docs {
  text-align: left;
  padding-left: 5px;
  padding-top: 7px;
  border-bottom: 1px solid lightgray;
}

.rpt_repairs_doc_count {
  font-size: 1em;
  font-weight: bold;
}

.rpt_repairs_total {
  font-size: 1.1em;
  text-align: right;
  margin-top: 6px;
}

.rpt_repairs_total_value {
  padding-left: 5px;
  font-size: 1.35em;
  font-weight: bold;
}

.pdf_wrapper {
  font-size: 10pt;
  margin: 0 auto 0 auto;
  padding: 10px;
}

@media print {
  @page {
    margin: 0;
    size: letter;
  }
  * {
    overflow: visible !important;
    background-color: white !important;
  }
  .noPrint {
    display: none;
  }
  .report_wrapper {
    box-shadow: none;
    padding: 40px;
    font-size: 11px;
    border-radius: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
  #report_container {
    box-shadow: none;
    padding: 0px;
    border-radius: 0;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    margin: 0;
  }
  .content_wrapper {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 120px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .evidence-report-details-wrapper {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }
  .evidence-report-details-wrapper .page-highlight {
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
  }
}
.icon_gray {
  color: rgb(172, 172, 172);
}

#topnav {
  background-color: #fafafa;
}

body, main {
  background-color: #f2f2f2 !important;
}

.contained_overscroll {
  overscroll-behavior: contain;
}

body::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar {
  width: 8px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track,
.scrollbar::-webkit-scrollbar-track {
  background: #dfdfdf;
  /* color of the tracking area */
  border-radius: 2px;
}

body::-webkit-scrollbar-thumb,
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #595959;
  /* color of the scroll thumb */
  border: 3px solid #bababa;
  /* creates padding around scroll thumb */
  border-radius: 5px;
  /* roundness of the scroll thumb */
}

.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.bb {
  border-bottom: 1px solid #e6e6e6;
}

.bs,
.bl {
  border-left: 1px solid #e6e6e6;
}

.be,
.br {
  border-right: 1px solid #e6e6e6;
}

.bt {
  border-top: 1px solid #e6e6e6;
}

.lh-1 {
  line-height: 1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.panel-description {
  color: #2b9cd3;
}

.address {
  color: #3482fd;
  text-shadow: 2px 2px 4px #c4c4c4;
}

.deadline {
  font-size: 19px;
  font-weight: 600;
  color: red;
  margin-top: 4px;
}

.header-fit {
  font-size: clamp(12px, 2.75vw, 36px);
}

.btn-sizable {
  width: 45vw;
  height: 100%;
  max-width: 200px;
  padding: 0.45rem;
  font-size: 11px;
}
.btn-sizable .sub-text {
  font-size: 0.8em;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
}

.form-check-input {
  width: 1.4em;
  height: 1.4em;
  margin-top: 0.35em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.2509803922);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.menu-wrapper {
  position: relative;
  width: 88.333%;
  margin-bottom: 15px;
}
.menu-wrapper .img-thumbnail:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.menu-wrapper .menu-item {
  padding: 20px 20px 20px 40px;
  margin-left: 30px;
  background-color: #e7edff;
  border-radius: 8px;
}
.menu-wrapper .menu-item::before {
  --circle-size: 55px;
  text-shadow: 2px 2px 0px rgba(79, 79, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  content: attr(data-item-num);
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  border: 5px solid white;
  border-radius: 50%;
  color: white;
  background-color: #428acb;
  width: var(--circle-size);
  height: var(--circle-size);
}
.menu-wrapper .menu-item-header {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 3px;
}
.menu-wrapper .menu-item-button-wrapper {
  margin: 5px 0;
}
.menu-wrapper .menu-item-button-wrapper button.btn-success {
  padding: 5px 10px;
}
.menu-wrapper .menu-item-info {
  font-size: 15px;
  line-height: 1.3;
  text-align: justify;
  margin-top: 7px;
}

.started-section-title {
  font-size: 1.5em;
  font-weight: 600;
}

.started-section-subtitle {
  font-style: italic;
  line-height: 1.25;
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 5px;
}

.deadline-passed-message {
  padding-top: 3px;
  font-size: 0.9em;
  color: red;
  font-style: italic;
  line-height: 1.2;
}

.resolution-warning {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

/* Show the message only when screen width is less than 1024px */
@media (max-width: 1023px) {
  .resolution-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    font-size: 2em;
    margin: 0;
    background-color: rgba(248, 215, 218, 0.9);
    color: #721c24;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .menu-wrapper {
    margin-bottom: 28px;
  }
  .menu-wrapper .menu-item::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-wrapper .menu-item {
    padding: 25px 10px 10px 10px;
    margin-left: 0px;
  }
  .menu-wrapper .menu-item .menu-item-header {
    text-align: center;
  }
  .menu-wrapper .menu-item .menu-item-button-wrapper {
    text-align: center;
  }
  .header-fit {
    font-size: 4.1vw;
  }
}
@media screen and (min-width: 576px) {
  .btn-sizable {
    width: 45vw;
    max-width: 255px;
    padding: 0.45rem;
    font-size: 15px;
  }
}/*# sourceMappingURL=styles.css.map */