@charset "utf-8";

html {
  background-color: #eaedf5;
}
#wrap,
#container {
  height: 100%;
}

.main_logo {
  width: 150px;
}

#contents {
  height: 100%;
}

#container {
  max-width: 500px;
  margin: 0px auto;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container_wrap {
  height: 440px;
}

.back-button {
  position: relative;
  width: 80px;
  height: 30px;
  background: #c9cadc;
  top: 0;
  left: 0;
  border-radius: 30px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 30px;
  text-indent: 8px;
}

.back-button:before {
  content: "";
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  width: 6px;
  top: 50%;
  left: 14px;
  transform: rotate(-135deg);
  margin-top: -3px;
}

.list_container {
  width: 320px;
  margin: 45px auto 30px;
}

.employee_sub_list.on li {
  opacity: 0;
}

.employee_sub_list.on li {
  animation: 1s fadeIn forwards;
  will-change: transform, opacity;
}
.employee_sub_list.on li:nth-of-type(2) {
  animation-delay: 0.1s;
}
.employee_sub_list.on li:nth-of-type(3) {
  animation-delay: 0.2s;
}
.employee_sub_list.on li:nth-of-type(4) {
  animation-delay: 0.3s;
}
.employee_sub_list.on li:nth-of-type(5) {
  animation-delay: 0.4s;
}

.list_container ul li + li {
  margin-top: 15px;
}

.list_container .item {
  display: flex;
  border-radius: 45px;
  text-align: left;
  padding: 0 30px;
  box-sizing: border-box;
  height: 58px;
  background: #747cb5;
  color: #fff;
  align-items: center;
  position: relative;
  transition: 0.4s;
  width: 100%;
}

.list_container .employee_sub_list .item {
  background: #777ca0;
}

.list_container .item:hover {
  opacity: 0.8;
  box-shadow: 2px 2px 15px rgb(79 85 123 / 60%);
}

.list_container li h2 {
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.2px;
  font-weight: 500;
}

.list_container li span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: -0.3px;
  font-size: 10px;
  margin-bottom: 3px;
}
.list_container .text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  justify-content: center;
}

.list_container .icon {
  display: flex;
  align-items: center;
  transition: 0.4s;
  margin-right: 20px;
  width: 40px;
  background: #a4a7ce;
  justify-content: center;
  border-radius: 50%;
  height: 40px;
}

.list_container .employee_sub_list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list_container .employee_sub_list li {
  width: calc(50% - 5px);
}

.list_container .employee_sub_list li + li {
  margin: 0;
}

.list_container .employee_sub_list .item {
  height: 110px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.list_container .employee_sub_list .icon {
  margin-right: 0;
}

.list_container .employee_sub_list .text span {
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.list_container .employee_sub_list .item:after {
  display: none;
}

.list_container .employee_sub_list .icon {
  background: #777ca0;
}

.list_container .icon img {
  width: 20px;
}
.list_container .cloud-icon img {
  width: 24px;
}

.list_container .user-icon img {
  width: 19px;
}

.list_container .item:after {
  content: "";
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  width: 8px;
  top: 50%;
  right: 30px;
  transform: rotate(45deg);
  margin-top: -4px;
}

.employee_sub_list {
  display: none;
}

.back-button {
  display: none;
  margin-top: 30px;
}

small.copy {
  opacity: 0.8;
}

@-webkit-keyframes fadeIn {
  0% {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
