body {
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
}

:where(html, body) {
  min-height: 100dvh;
}

:where(:lang(ko)) {
  word-break: keep-all;
}

:where(body) {
  margin: 0;
  overflow-wrap: break-word;
}

:where(img) {
  max-width: 100%;
  height: auto;
}

:where([class]) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([class])::before,
:where([class])::after {
  box-sizing: border-box;
  pointer-events: none;
}

:where(ol[class], ul[class]) {
  list-style: none;
}

:where(hr[class], button[class], fieldset[class], iframe[class], input[class], select[class], textarea[class]) {
  border: 0;
}

:where(button[class], dialog[class], input[class], mark[class], meter[class], progress[class]) {
  background-color: transparent;
}

:where(table[class]) {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

:where(button[class], input[class], meter[class], progress[class], select[class], textarea[class]) {
  appearance: none;
}

label {
  font-size: 18px;
  font-weight: 500;
  color: rgba(32, 34, 36, 0.8);
}

input {
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  background-color: #F1F4F9;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
}
input::placeholder {
  color: #A6A6A6;
}

.loginWrap {
  width: 100%;
  height: 100vh;
  background: url(../img/login_bg.png) no-repeat center center/cover;
  position: relative;
}
.loginWrap__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 630px;
  height: 686px;
  margin: -343px 0 0 -320px;
  background-color: #fff;
  border-radius: 24px;
  padding: 90px 57px 115px;
}
.loginWrap__h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #202224;
}
.loginWrap__p {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(32, 34, 36, 0.8);
}
.loginWrap__form {
  margin-top: 37px;
}
.loginWrap__form div {
  display: flex;
  flex-direction: column;
}
.loginWrap__form div + div {
  margin-top: 40px;
}
.loginWrap__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 418px;
  height: 56px;
  background-color: #DF00C5;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 72px auto 0;
  border-radius: 8px;
  cursor: pointer;
}
.loginWrap__btn:hover {
  background-color: #A5008F;
}

.snap {
  display: flex;
}
.snap__header {
  width: 240px;
  padding-top: 24px;
}
.snap__logo {
  width: 129px;
  margin: 0 auto;
}
.snapNav {
  margin-top: 30px;
  padding-bottom: 75px;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
}
.snapNav__link {
  display: flex;
  width: 100%;
  padding-left: 24px;
  height: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #202224;
  position: relative;
  cursor: pointer;
}
.snapNav__link span {
  display: flex;
  width: 100%;
  align-items: center;
  height: 100%;
  padding-left: 54px;
  border-radius: 6px;
}
.snapNav__link span::before {
  content: "";
  position: absolute;
  left: 41px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0%) invert(0);
}
.snapNav__link:hover span {
  background-color: #F1F4F9;
}
.snapNav__link.picture span::before {
  background-image: url(../img/ico_menu_picture.svg);
}
.snapNav__link.income span::before {
  background-image: url(../img/ico_menu_income.svg);
}
.snapNav__link.withdraw span::before {
  background-image: url(../img/ico_menu_withdraw.svg);
}
.snapNav__link.profile span::before {
  background-image: url(../img/ico_menu_profile.svg);
}
.snapNav__link.logout span::before {
  background-image: url(../img/ico_menu_logout.svg);
}
.snapNav__link[data-active=true] span {
  background-color: #E31ACB;
  color: #fff;
}
.snapNav__link[data-active=true] span:before {
  filter: brightness(0%) invert(1);
}
.snapNav__link[data-active=true] span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 50px;
  background-color: #E31ACB;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.snapNav__link.logout {
  padding-left: 0;
}
.snapNav__link.logout span {
  padding-left: 78px;
}
.snapNav__link.logout:hover span {
  background-color: #fff;
}
.snapMain {
  width: calc(100% - 240px);
  padding: 108px 30px;
}
.snapMain__h1 {
  font-size: 32px;
}
.snap__aside {
  position: absolute;
  inset: 0;
  background: rgba(32, 34, 36, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}
.snap__aside .aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 567px;
  height: 529px;
  background: #fff;
}
.snap__aside .aside__tit {
  font-size: 18px;
  margin-block: 40px 27px;
}
.snap__aside .aside__select {
  width: 376px;
  height: 48px;
  border: 1px solid #202224;
  font-size: 16px;
  border-radius: 12px;
  padding-inline: 16px;
  background: url("../img/icon_arrow_prev.svg") no-repeat right 16px top 50%;
}
.snap__aside .aside__select.active {
  background: url("../img/icon_arrow_active.svg") no-repeat right 16px top 50%;
}
.snap__aside .aside__imgBox {
  width: 338px;
  height: 259px;
  margin-block: 25px;
}
.snap__aside .aside__imgBox img {
  width: 100%;
}
.snap__aside .aside__btn {
  width: 103px;
  height: 56px;
  background-color: #151515;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.mainProfile {
  margin-top: 37px;
  border-radius: 14px;
  border: 1px solid #E0E0E0;
  padding-top: 60px;
  min-height: 744px;
}
.mainProfile__upload {
  width: 94px;
  margin: 0 auto;
}
.mainProfile__upload__image {
  border-radius: 50%;
  background: #ECECEE url(../img/ico_pic.svg) no-repeat center/26px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.mainProfile__upload__image img {
  width: 100%;
}
.mainProfile__upload label {
  color: #4379EE;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
  cursor: pointer;
  display: block;
}
.mainProfile__upload__input {
  display: none;
}
.mainProfile__share {
  width: max-content;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
}
.mainProfile__share p {
  font-size: 20px;
  margin: 0;
}
.mainProfile__share__btn {
  margin-left: 30px;
  width: 20px;
  height: 20px;
  background: url(../img/ico_share.svg) no-repeat center/20px;
  cursor: pointer;
}
.mainProfile__hash {
  margin-top: 100px;
  margin-inline: auto;
  width: max-content;
}
.mainProfile__hash div {
  margin-top: 10px;
  display: flex;
}
.mainProfile__hash__input {
  width: 507px;
}
.mainProfile__hash__save {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding-inline: 20px;
  background-color: #151515;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 23px;
  cursor: pointer;
}

.mainPicture {
  position: relative;
}
.mainPicture__addBtn {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: 20px;
  background-color: #151515;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-left: 23px;
  cursor: pointer;
  top: -77px;
}
.mainPicture__fileInput {
  display: none;
}
.mainPicture__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 32px;
  gap: 2vw 2%;
}
.mainPicture__item {
  width: 32%;
}
.mainPicture__item img {
  width: 100%;
}

.mainIncome {
  position: relative;
}
.mainIncome__total {
  position: absolute;
  display: flex;
  top: -70px;
  left: 200px;
  font-size: 20px;
  font-weight: 800;
  gap: 20px;
}

.snapTbl {
  border: 1px solid #D8D8D8;
  border-radius: 10px;
  overflow-x: auto;
  margin-top: 38px;
}
.snapTbl table {
  width: 100%;
  min-width: 1000px;
  table-layout: fixed;
  collapse: collapse;
  border-collapse: collapse;
}
.snapTbl table th {
  height: 48px;
}
.snapTbl table td {
  text-align: center;
  border-top: 1px solid #D8D8D8;
  padding-block: 20px;
}

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