#body-project,
.project-container,
#body-project_add {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.body-project-container {
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

#body-project {
  width: 70%;
}

#body-project_add > p,
#body-project > img {
  max-width: 940px;
}

#body-project_add > p:not(.subtitles-view, #no-body) {
  font-family: 'Cascadia Code';	
  font-size: 1rem;
  color: var(--text-color-two);
}

#body-project_add > ul,
#info-body > ul {
  list-style: disc;
  margin-left: 40px;
}

#body-project_add > ul > li {
  font-family: 'Cascadia Code';	
  font-size: 1rem;
  color: var(--text-color-two);
}

#body-project_add > img {
  background-position: center;
}

#body-project_add > a {
  transition: 0.15s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--text-color-one);
  font-family: 'Hardino';	
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

#body-project_add > a:hover {
  opacity: .5;
}

#gallery-container {
  display: flex;
  position: sticky;
  top: 85px;
  flex-direction: column;
  width: 20%;
  height: calc(100vh - 100px);
  gap: 1rem;
}

#gallery {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
  gap: .5rem;
}

#gallery::-webkit-scrollbar {
  display: none;
}

#gallery > div {
  position: relative;
  margin-right: 6px;
}

#gallery > div > img {
  width: 100%;
  border: 1px solid var(--border-color-one);
}
#gallery > div > p {
  transition: 0.3s;
  position: absolute;
  bottom: 5px;
  color: var(--text-color-two);
  background-color: var(--background-color-one);
  opacity: 0;
  width: 100%;
  border: 1px solid var(--border-color-one);
  text-align: center;
  font-family: 'Cascadia Code';	
  font-family: 'Cascadia Code';	
  font-size: 12px;
  cursor: default;
}
#gallery > div:hover > p {
  transition: 0.3s;
  opacity: 0.8;
}

#status-container {
  display: flex;
  position: sticky;
  top: 85px;
  width: 100%;
  justify-content: center;
  background-color: transparent;
  gap: 15px;
}

#status-container > div:not(#github-link, #more-info) {
  display: flex;
  height: 32px;
  align-items: center;
  border: 1px solid var(--border-color-one);
  border-radius: 25px;
  background-color: transparent;
  overflow: hidden;
}

#status-container > div > div:not(#github-link) {
  display: flex;
  height: 100%;
  gap: 10px;
}

#status-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  background-color: var(--background-color-two);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#status-label > p {
  font-family: 'Cascadia Code';	
  font-size: .8rem;
}

#status {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
}

#status > p {
  font-family: 'Cascadia Code';	
  font-size: .8rem;
  cursor: default;
  width: 70%;
  text-align: center;
}

#status > div:not(.plus-minus_button) {
  transition: 0.3s;
  opacity: 0;
  display: none;
}

#status > i:hover ~ div:not(.plus-minus_button) {
  transition: 0.3s;
  opacity: 1;
  display: flex;
}

.plus-minus_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background-color: var(--background-color-one);
  border-radius: 10px;
}

.plus-minus_icon {
  display: flex;
  position: relative;
  background-color: var(--background-color-three);
  width: 50%;
  height: 2px;
  border-radius: 3px;
}

.plus-minus_icon::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--background-color-three);
  transform: rotate(90deg);
  border-radius: 3px;
}

.plus-minus_button.minus_active .plus-minus_icon::after {
  transform: rotate(0deg);
}

#github-link {
  display: flex;
  transition: all 0.3s;
  width: 32px;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color-one);
  border: 1px solid var(--border-color-one);
  border-radius: 30px;
}

#github-link:hover {
  opacity: .75;
}

#github-link > a > i {
  font-size: 1.5rem;
}

#github-link > a > i:hover {
  color: var(--text-color-one);
}

#more-info {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Cascadia Code';	
  font-size: .8rem;
  gap: 10px;
}

#more-info.show_more-info {
  display: inline-flex;
  animation-duration: 0.3s;
  animation-name: fade-in;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#dates-project {
  display: flex;
  flex-direction: column;
}

#dates-project > div:not(:last-child) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#dates-project > div:not(:last-child) > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

#dates-project > div:not(:last-child) > div,
#dates-project > div:not(:first-child),
#info-body {
  background-color: transparent;
  border: 1px solid var(--border-color-one);
  overflow: hidden;
}

#dates-project
  > div:not(:last-child)
  > div:not(:last-child)
  > div:not(:last-child) {
  background-color: var(--background-color-ten);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px;
  width: 30%;
}

#dates-project
  > div:not(:last-child)
  > div:not(:first-child)
  > div:not(:last-child) {
  background-color: var(--background-color-fourteen);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px;
  width: 30%;
}

#dates-project > div:not(:last-child) > div > div {
  display: flex;
  background-color: var(--background-color-two);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px;
  justify-content: center;
  width: 70%;
}

#dates-project > div:not(:first-child) > div:not(:first-child) {
  display: flex;
  background-color: var(--background-color-two);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px;
  justify-content: center;
}

#dates-project > div:not(:first-child) {
  border-radius: 0px;
}

#dates-project > div:not(:first-child) > div:not(:last-child) {
  display: flex;
  background-color: var(--background-color-eleven);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px;
  justify-content: center;
}

#info-body {
  display: flex;
  flex-direction: column;
  background-color: var(--background-color-two);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px;
  width: 300px;
}

#viewer {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 25px;
  flex-direction: column;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: var(--background-color-two);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

#viewer > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 70px;
  max-height: calc(100vh - 25%);
  max-width: calc(1290px - 5%);
  overflow: hidden;
  border: 1px solid var(--border-color-one);
}

#viewer > div > img {
  display: flex;
  width: 100%;
}

#viewer > div > i {
  transition: 0.3s;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-color-one);
  width: 26px;
  height: 26px;
  background-color: var(--background-color-fifteen);
  border-radius: 100%;
}

#viewer > div > i:hover {
  opacity: .5;
}

.header-project {
  position: relative;
}

#title,
.text-description-view {
  text-align: center;
}

.image-project {
  width: 100%;
  border: 1px solid var(--border-color-one);
  object-fit: cover;
}

#technologies {
  display: flex;
  position: absolute;
  top: calc(100% - 30px);
  right: 25px;
  flex-direction: row-reverse;
  gap: 12px;
}

.technologies-block {
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1 / 1;
}

.technologies-block:hover > .technologies-text {
  transition: 0.3s ease;
  transform: translateY(-40px);
  z-index: 1;
  opacity: 1;
  width: auto;
  height: auto;
}

.technologies-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--background-color-three);
  border-radius: 50%;
}

.technologies-item > img {
  width: 65%;
  aspect-ratio: 1 / 1;
}

.technologies-text {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  position: absolute;
  font-family: 'Cascadia Code';
  color: var(--text-color-nine);
  width: 10px;
  height: 10px;
  font-size: .8rem;
  font-weight: bold;
  background-color: var(--background-color-three);
  padding: 5px;
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .body-project-container {
    flex-direction: column;
    gap: 25px;
  }

  #body-project {
    width: 100%;
  }

  #status-container {
    top: 68px;
  }

  #gallery-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: auto;
  }

  #gallery {
    width: 100%;
    height: fit-content;
    overflow: none;
  }

  #gallery > div {
    margin-left: 0px;
  }

  #gallery > div > p {
    display: none;
  }

  #github-project {
    left: calc(50% - 152px);
  }

  #technologies {
    top: calc(100% - 22px);
    right: 15px;
    gap: 6px;
  }

  .technologies-block {
    width: 32px;
    height: 32px;
  }
}
