@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;
}
.project-marker-info {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-column-gap: 0.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0.1rem 1rem;
  height: 10rem;
  border: 1px solid #894360;
  border-radius: 0.5rem;
  margin-top: 5rem;
}
.project-marker-info__name, .project-marker-info__description, .project-marker-info__user-name, .project-marker-info__status, .project-marker-info__date, .project-marker-info__type {
  display: grid;
  margin-top: 0.5rem;
}
.project-marker-info__name__title, .project-marker-info__description__title, .project-marker-info__user-name__title, .project-marker-info__status__title, .project-marker-info__date__title, .project-marker-info__type__title {
  color: #894360;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}
.project-marker-info__projectInfo__name {
  margin-top: 0.5rem;
  grid-row: 1;
  grid-column: 1;
  display: grid;
  overflow: hidden;
}
.project-marker-info__projectInfo__name__title {
  color: #894360;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-marker-info__projectInfo__name__status {
  margin-left: 10px;
  color: #9D9D9D;
  font-weight: bold;
}
.project-marker-info__preview {
  grid-row: 2/4;
  grid-column: 1;
  cursor: pointer;
}
.project-marker-info__preview__img {
  height: 6rem;
  aspect-ratio: auto;
}
.project-marker-info__name {
  grid-column: 2;
  grid-row: 1;
}
.project-marker-info__description {
  grid-column: 2;
  grid-row: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.project-marker-info__user-name {
  grid-column: 3;
  grid-row: 2;
}
.project-marker-info__status {
  grid-column: 2;
  grid-row: 2;
}
.project-marker-info__date {
  grid-column: 3;
  grid-row: 3;
}
.project-marker-info__type {
  grid-column: 3;
  grid-row: 1;
}

.items-list {
  margin-left: 1rem;
  margin-top: 1rem;
  margin-right: 1rem;
}
.items-list__title {
  margin-top: 1rem;
  margin-left: 1rem;
  color: #894360;
  text-transform: uppercase;
  font-weight: bold;
}

.add-item-button {
  background: transparent;
  border: 0px;
  right: 0;
  bottom: 0;
  position: fixed;
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.add-item-button__img {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16), 0 10px 10px rgba(0, 0, 0, 0.23);
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  right: 0;
  bottom: 0;
  position: fixed;
  margin-right: 2rem;
  margin-bottom: 2rem;
  border: none;
  outline: none;
  color: #FFF;
  font-size: 36px;
  cursor: pointer;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.16), 0 10px 10px rgba(0, 0, 0, 0.23);
  transition: 0.3s;
}

.typebuttons-items {
  min-height: 5rem;
  width: 100%;
}
.typebuttons-items__tab {
  cursor: pointer;
  width: 100%;
  padding: 0.2rem;
  text-align: center;
  vertical-align: middle;
  color: #894360;
  border-bottom: 1px solid #894360;
  align-items: center;
}
.typebuttons-items__tab__name {
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 5px;
}
.typebuttons-items__tab__img {
  width: 24px;
  height: 24px;
}
.typebuttons-items__tab__active {
  background: #894360;
  color: white;
  font-weight: bold;
}
.typebuttons-items__tab__active__dark {
  background-color: #7b3854;
}
.typebuttons-items__tabContainer {
  display: flex;
  padding: 1.5rem;
}
.typebuttons-items__tabContainer__right {
  width: 50%;
  float: right;
}
.typebuttons-items__tabContainer__right .itemControls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.typebuttons-items__tabContainer__left {
  width: 50%;
  float: left;
}
.typebuttons-items__tabContainer__video, .typebuttons-items__tabContainer__document, .typebuttons-items__tabContainer__audio, .typebuttons-items__tabContainer__3d, .typebuttons-items__tabContainer__img {
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.typebuttons-items__tabContainer__video__text, .typebuttons-items__tabContainer__document__text, .typebuttons-items__tabContainer__audio__text, .typebuttons-items__tabContainer__3d__text, .typebuttons-items__tabContainer__img__text {
  vertical-align: middle;
  margin: auto 0;
  margin-right: 5px;
}
.typebuttons-items__tabContainer__video__upload, .typebuttons-items__tabContainer__document__upload, .typebuttons-items__tabContainer__audio__upload, .typebuttons-items__tabContainer__3d__upload, .typebuttons-items__tabContainer__img__upload {
  grid-column: 1;
  background-color: #894360;
  border: 0px;
  align-items: center;
  border-radius: 50px;
  height: 2.5rem;
  width: 15rem;
  margin: 0.5rem;
  cursor: pointer;
}
.typebuttons-items__tabContainer__video__upload__text, .typebuttons-items__tabContainer__document__upload__text, .typebuttons-items__tabContainer__audio__upload__text, .typebuttons-items__tabContainer__3d__upload__text, .typebuttons-items__tabContainer__img__upload__text {
  cursor: pointer;
  font-size: medium;
  color: white;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.typebuttons-items__tabContainer__video__upload img, .typebuttons-items__tabContainer__document__upload img, .typebuttons-items__tabContainer__audio__upload img, .typebuttons-items__tabContainer__3d__upload img, .typebuttons-items__tabContainer__img__upload img {
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin: 5px;
}
.typebuttons-items__tabContainer__video__file, .typebuttons-items__tabContainer__document__file, .typebuttons-items__tabContainer__audio__file, .typebuttons-items__tabContainer__3d__file, .typebuttons-items__tabContainer__img__file {
  grid-column: 2;
  justify-content: center;
  display: flex;
  align-items: center;
}
.typebuttons-items__tabContainer__video .text_input, .typebuttons-items__tabContainer__document .text_input, .typebuttons-items__tabContainer__audio .text_input, .typebuttons-items__tabContainer__3d .text_input, .typebuttons-items__tabContainer__img .text_input {
  display: flex;
  align-items: center;
}
.typebuttons-items__tabContainer__video .text_input__position, .typebuttons-items__tabContainer__document .text_input__position, .typebuttons-items__tabContainer__audio .text_input__position, .typebuttons-items__tabContainer__3d .text_input__position, .typebuttons-items__tabContainer__img .text_input__position {
  font-size: small;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 3rem;
  margin-right: 0.5rem;
  padding: 0.25rem;
  border: 1px #894360;
  background-color: #ffffff;
  border-style: double;
  border-radius: 0.2rem;
}
.typebuttons-items__tabContainer__video .text_input__name, .typebuttons-items__tabContainer__document .text_input__name, .typebuttons-items__tabContainer__audio .text_input__name, .typebuttons-items__tabContainer__3d .text_input__name, .typebuttons-items__tabContainer__img .text_input__name {
  font-size: small;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0.5rem;
  padding: 0.25rem;
  height: 1.5rem;
  width: 100%;
}
.typebuttons-items__tabContainer__3d__animation {
  grid-column: 2;
  display: flex;
}

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