@font-face {
  font-family: "Roboto";
  src: url("/style/fonts/Roboto/Roboto-Regular.woff") format("woff"), url("/style/fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("/style/fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/style/fonts/Roboto/Roboto-Italic.woff") format("woff"), url("/style/fonts/Roboto/Roboto-Italic.woff2") format("woff2"), url("/style/fonts/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("/style/fonts/Roboto/Roboto-Bold.woff") format("woff"), url("/style/fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("/style/fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
.agregate {
  color: #212745;
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  cursor: pointer;
  align-items: center;
  display: inline-flex;
  border-style: none;
  justify-content: center;
  text-decoration: none;
  position: relative;
}
.agregate--right {
  margin-left: auto;
}

.icon-agregate {
  display: block;
  width: 2rem;
  margin-left: 1rem;
}

.scene-list {
  background: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  overflow-x: hidden;
  overflow-y: scroll;
  margin-left: 2rem;
}
@media (max-width: 40rem) {
  .scene-list {
    justify-content: space-around;
  }
}

.department-list {
  background: #FFFFFF;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  overflow-x: hidden;
  margin-left: 2rem;
}
@media (max-width: 40rem) {
  .department-list {
    justify-content: space-around;
  }
}

.department-list .incident-target {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.department-list .incident-target__editor {
  background-image: url(../../../../../../style/images/file.png);
}
.department-list .incident-target__external {
  background-image: url(../../../../../../style/images/file_purple2.png);
}

.target {
  width: 300px;
  margin: 15px;
  height: 200px;
  box-shadow: 0 0 1rem #2d2d2d;
  font-size: 0.9em;
  border-radius: 0.4rem;
  cursor: pointer;
}
.target .severityCircle {
  width: 25px;
  height: 25px;
  -moz-border-radius: 12.5px;
  -webkit-border-radius: 12.5px;
  border-radius: 12.5px;
  margin-left: 4px;
}

.target_department {
  width: 300px;
  margin: 15px;
  height: 200px;
  font-size: 0.9em;
  border-radius: 0.4rem;
  cursor: pointer;
}
.target_department .severityCircle {
  width: 25px;
  height: 25px;
  -moz-border-radius: 12.5px;
  -webkit-border-radius: 12.5px;
  border-radius: 12.5px;
  margin-left: 4px;
}

.target_content.header {
  height: 15%;
  background: #894360;
  display: flex;
  align-items: center;
  padding: 1%;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  cursor: default;
}
.target_content.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 2fr;
  position: relative;
  background: #FFFFFF;
  height: 75%;
  padding: 2%;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.target_content__title {
  margin-left: 5px;
  margin-right: 5px;
  text-align: left;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #FFFFFF;
}
.target_content__delete {
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 5px;
}
.target_content__userName {
  grid-row: 1;
  grid-column: 1;
  margin: 4px 7px 4px 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 15px;
}
.target_content__createDate {
  grid-row: 1;
  grid-column: 2;
  margin: 4px 7px 4px 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 15px;
  color: gray;
  text-align: end;
}
.target_content__count {
  margin-top: 0.5rem;
}
.target_content__count__AR {
  grid-row: 2;
  grid-column: 1;
  border-right: 1px solid rgba(137, 67, 96, 0.7);
}
.target_content__count__simple {
  grid-row: 2;
  grid-column: 2;
}
.target_content__count__titleCount {
  text-align: center;
}
.target_content__count__number {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  background: #894360;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  color: white;
  opacity: 0.7;
  margin: 15px auto 0 auto;
}
.target_content .project-info-popover__popover {
  border: 0px;
  background: transparent;
  cursor: pointer;
}
.target_content .project-info-popover__popover__img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

.target_content_department.header {
  height: 15%;
  display: flex;
  align-items: center;
  padding: 1%;
  border-top-left-radius: 0.4rem;
  border-top-right-radius: 0.4rem;
  cursor: default;
}
.target_content_department.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0.5fr 2fr;
  position: relative;
  height: 75%;
  padding: 2%;
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.target_content_department__title {
  margin-right: 5px;
  display: flex;
  grid-column: 1/span 2;
  color: #FFFFFF;
  width: 75%;
  margin-top: 5px;
  font-size: large;
  margin-left: 42px;
}
.target_content_department__title__text {
  width: 80%;
  text-align: left;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.target_content_department__delete {
  width: 15px;
  height: 15px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 5px;
}
.target_content_department__userName {
  grid-row: 1;
  grid-column: 1;
  margin: 4px 7px 4px 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 15px;
}
.target_content_department__createDate {
  grid-row: 1;
  grid-column: 2;
  margin: 4px 7px 4px 7px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 15px;
  color: gray;
  text-align: end;
}
.target_content_department__count {
  margin-top: 0.5rem;
}
.target_content_department__count__AR {
  grid-row: 2;
  grid-column: 1;
  border-right: 1px solid #894360;
}
.target_content_department__count__simple {
  grid-row: 2;
  grid-column: 2;
}
.target_content_department__count__titleCount {
  text-align: center;
  color: white;
}
.target_content_department__count__img {
  height: 60px;
  width: 60px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  margin: 15px auto 0 auto;
  background-image: url(../../../../../../style/images/file_white.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.target_content_department__count__number {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  color: brown;
  opacity: 0.7;
  margin-top: 5px;
}
.target_content_department .project-info-popover__popover {
  border: 0px;
  background: transparent;
  cursor: pointer;
}
.target_content_department .project-info-popover__popover__img {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

.project-info-popover__container {
  background: white;
  padding: 1rem;
  border: 1px solid #894360;
  border-radius: 0.5rem;
  max-width: 25rem;
}

.box_second_header {
  display: flex;
  align-items: center;
  height: 3rem;
  width: 100%;
  justify-content: flex-end;
}
.box_second_header .options {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.box_second_header .btn-new-scene {
  cursor: pointer;
  margin-right: 1rem;
}
.box_second_header .btn-new-scene img {
  width: 24px;
}

.new-scene__container {
  display: flex;
  padding: 1rem;
}
.new-scene__container__right {
  width: 50%;
  padding: 0.5rem;
}
.new-scene__container__left {
  width: 50%;
  padding: 0.5rem;
}
.new-scene__container .text_input {
  display: flex;
  margin: 0.5rem 0;
}
.new-scene__container .text_input__text {
  width: 40%;
}
.new-scene__container .text_input__input {
  width: 60%;
}
.new-scene__container .text_input__textarea {
  width: 60%;
  height: 5rem;
  max-height: 10rem;
}
.new-scene__container .text_input__select {
  width: 60%;
}

.new-structure__container {
  display: flex;
  padding: 1rem;
  flex-direction: column;
}
.new-structure__container__block {
  margin: 0.5rem 0px;
}
.new-structure__container__block__title {
  color: #894360;
  font-weight: bold;
  font-size: large;
}
.new-structure__container__block__data {
  display: flex;
}
.new-structure__container__block__data__right {
  width: 50%;
  padding: 0.5rem;
}
.new-structure__container__block__data__left {
  width: 50%;
  padding: 0.5rem;
}
.new-structure__container .text_input {
  display: flex;
  margin: 0.5rem 0;
}
.new-structure__container .text_input__text {
  width: 40%;
}
.new-structure__container .text_input__input {
  width: 60%;
}
.new-structure__container .text_input__textarea {
  width: 60%;
  height: 5rem;
  max-height: 10rem;
}
.new-structure__container .text_input__select {
  width: 60%;
}

.breadcrumbs_buttons {
  display: flex;
  justify-content: space-between;
  margin: 0rem 1rem 1rem 1rem;
}
.breadcrumbs_buttons .breadcrumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  color: #894360;
}
.breadcrumbs_buttons .clickable {
  cursor: pointer;
}

/*# sourceMappingURL=styles.css.map */
