* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body:has(.opening_box.active) {
  overflow: hidden;
}

nav {
  display: flex;
  align-items: center;
  width: 100vw;
  position: sticky;
  height: 3.5rem;
  top: 0;
  left: 0;
  border-bottom: 1px solid #055751;
  background-color: #faffff;
  padding: 0.5rem 1rem;
  justify-content: space-between;
  z-index: 2;
}
nav > svg {
  width: 8rem;
}
nav a {
  background-color: #055751;
  color: #faffff;
  padding: 0.5rem 1.5rem;
  padding-left: 2rem;
  border-radius: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 0%;
  font-size: 0.88rem;
}
nav a svg {
  width: 1.1rem;
}

.main_header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  color: #055751;
  padding: 1rem;
}
.main_header button {
  background-color: #055751;
  color: #faffff;
  padding: 0.5rem 2rem;
  border: none;
  border-radius: 2rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  gap: 0.5rem;
  padding: 1rem;
  padding-bottom: 5rem;
}
.container .box {
  border: 2px dashed #055751;
  width: calc(20% - 0.4rem);
  aspect-ratio: 1;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faffff;
  opacity: 0.8;
  transition: 0.2s all !important;
}
.container .box > svg {
  opacity: 0;
  color: #faffff;
  display: none;
}
.container .box > span {
  color: #a7c7c5;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .box > span > svg {
  stroke-width: 2px;
}
.container .box.done {
  background-color: #055751;
  opacity: 1;
  animation: doneanimation 0.3s forwards;
}
@keyframes doneanimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.container .box.done > span {
  display: none;
}
.container .box.done svg {
  display: flex;
  opacity: 1;
  stroke-width: 2px;
}

.progressbar {
  background-color: #055751;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3.5rem;
  padding: 0.5rem 1rem;
  color: #faffff;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #faffff;
}
.progressbar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.progressbar .bar {
  width: 100%;
  height: 1rem;
  background-color: #5c8582;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.progressbar .bar .line {
  display: inline-block;
  background-color: #faffff;
  height: 100%;
  width: unset;
  transition: 0.5s all !important;
}

.opening_box {
  position: fixed;
  top: 3.5rem;
  left: -100%;
  opacity: 0;
  background-color: #055751;
  color: #faffff;
  width: 100%;
  height: calc(100% - 7rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: 0.2s all ease-out !important;
  overflow: auto;
}
.opening_box > .header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.25rem;
  position: sticky;
  background-color: #055751;
  top: -1px;
  padding: 1rem;
  padding-right: 2rem;
}
.opening_box > .header > div:nth-last-child(1) {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opening_box > .header > div:nth-last-child(1) svg {
  width: 30px;
  height: 30px;
}
.opening_box > .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}
.opening_box > .content > .item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.opening_box > .content > .item > h2 {
  font-size: 1.2rem;
  font-weight: 500;
}
.opening_box > .content > .item > p {
  font-size: 0.9rem;
  color: #cacfcf;
}
.opening_box > .content > .item:nth-child(1) > p {
  padding: 0.5rem;
  background-color: #3d6d6a;
  border-radius: 0.6rem;
  color: #faffff;
}
.opening_box > .content > .item > .item_item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.opening_box > .content > .item > .item_item:nth-of-type(1) {
  margin-top: 0.5rem;
}
.opening_box > .content > .item > .item_item p {
  font-weight: 600;
  color: #cacfcf;
}
.opening_box > .content > .item > .item_item ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #cacfcf;
}
.opening_box.active {
  left: 0;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */