/* [project]/src/app/dashboard/dashboard.module.css [app-client] (css) */
.dashboard-module__XABe8G__container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.dashboard-module__XABe8G__profile {
  background: var(--primary-color);
  border-radius: 5px;
  width: 70%;
  margin-top: 10vh;
  padding: 30px;
  display: flex;
  box-shadow: inset 0 -5px rgba(0, 0, 0, .2), 0 0 10px rgba(0, 0, 0, .15);
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details {
  flex-direction: column;
  width: auto;
  max-width: 50%;
  margin-left: 30px;
  display: flex;
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__wrapper {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.dashboard-module__XABe8G__profile img {
  aspect-ratio: 800 / 921;
  width: auto;
  height: 148px;
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details p {
  flex-direction: column;
  margin: 0;
  font-family: TitanOne;
  font-size: 2.5em;
  font-weight: 100;
  display: flex;
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details p span {
  color: #646464;
  font-family: Nunito;
  font-size: .5em;
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details p span a {
  color: #787878;
  font-weight: bold;
  text-decoration: none;
}

.dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details > span {
  color: #c8c8c8;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  display: -webkit-box;
  overflow: hidden;
}

.dashboard-module__XABe8G__noDesc {
  font-style: italic;
  color: #787878 !important;
}

.dashboard-module__XABe8G__optionsContainer {
  flex-direction: column;
  gap: 1em;
  width: max-content;
  display: flex;
}

.dashboard-module__XABe8G__flexOptions {
  justify-content: space-between;
  display: flex;
}

.dashboard-module__XABe8G__flexOptions a:first-child, .dashboard-module__XABe8G__flexOptions a:first-child button {
  width: 100%;
}

.dashboard-module__XABe8G__flexOptions a:last-child i {
  padding-right: 0 !important;
}

.dashboard-module__XABe8G__flexOptions a:last-child span {
  font-family: TitanOne;
  font-size: 1.25em;
  font-weight: 100;
  line-height: 1.3ch;
}

.dashboard-module__XABe8G__flexOptions a:last-child {
  margin-left: 1ch;
}

.dashboard-module__XABe8G__stats {
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  width: calc(70% + 55px + 2vh);
  margin-top: 2vh;
  display: grid;
}

@media (max-width: 768px) {
  .dashboard-module__XABe8G__profile {
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 10px;
    display: flex;
  }

  .dashboard-module__XABe8G__profile .dashboard-module__XABe8G__wrapper {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .dashboard-module__XABe8G__stats {
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .dashboard-module__XABe8G__profile .dashboard-module__XABe8G__details {
    text-align: center;
    align-items: center;
    width: auto;
    margin-top: 1ch;
    margin-left: 0;
    display: flex;
  }

  .dashboard-module__XABe8G__details > span {
    width: 80% !important;
  }

  .dashboard-module__XABe8G__optionsContainer {
    width: 80%;
    margin-top: 3ch;
  }

  .dashboard-module__XABe8G__flexOptions a:first-child, .dashboard-module__XABe8G__flexOptions a:first-child button {
    width: -webkit-fill-available;
  }
}

/* [project]/src/components/Button/Button.module.css [app-client] (css) */
.Button-module__e7WGRa__button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 2vh;
  text-decoration: none;
  transition: all .25s;
  position: relative;
}

.Button-module__e7WGRa__button:hover .Button-module__e7WGRa__buttonInside {
  background: #5e5e5e;
}

.Button-module__e7WGRa__button:hover .Button-module__e7WGRa__buttonEdge {
  filter: brightness();
  background: #424242;
}

.Button-module__e7WGRa__button:hover .Button-module__e7WGRa__buttonInside {
  transition: transform .25s cubic-bezier(.3, .7, .4, 1.5);
  transform: translateY(-6px);
}

.Button-module__e7WGRa__button .Button-module__e7WGRa__buttonEdge {
  background-color: var(--secondary-color);
  filter: brightness(.7);
  border-radius: .5vh;
  width: 100%;
  height: 100%;
  position: absolute;
}

.Button-module__e7WGRa__button .Button-module__e7WGRa__buttonInside {
  background-color: var(--secondary-color);
  border-radius: .7vh;
  align-items: center;
  height: 1.35em;
  padding: .75vh 1.5vh;
  transition: transform .6s cubic-bezier(.3, .7, .4, 1);
  display: flex;
  transform: translateY(-.4vh);
}

.Button-module__e7WGRa__buttonInside span {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.Button-module__e7WGRa__button .Button-module__e7WGRa__buttonInside i {
  padding-right: 1ch;
}

.Button-module__e7WGRa__link {
  color: var(--accent-color);
  text-decoration: none;
}

/* [project]/src/app/dashboard/components/Card/Card.module.css [app-client] (css) */
.Card-module__vbnGXa__card {
  background: var(--primary-color);
  border-radius: 5px;
  flex-direction: column;
  margin-bottom: 2vh;
  margin-left: 1vh;
  margin-right: 1vh;
  padding: 20px;
  display: flex;
  box-shadow: inset 0 -5px rgba(0, 0, 0, .2), 0 0 10px rgba(0, 0, 0, .15);
}

.Card-module__vbnGXa__card .Card-module__vbnGXa__key {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.Card-module__vbnGXa__card .Card-module__vbnGXa__key > span {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-right: 1ch;
  font-size: 1.25em;
  font-weight: bold;
  display: -webkit-box;
  overflow: hidden;
}

.Card-module__vbnGXa__card .Card-module__vbnGXa__key i {
  color: #b4b4b4;
}

.Card-module__vbnGXa__card .Card-module__vbnGXa__value {
  border-top: 1.5px solid var(--secondary-color);
  margin: 10px 0 0;
  padding-top: 10px;
  font-family: TitanOne;
  font-size: 2em;
  font-weight: 100;
}

.Card-module__vbnGXa__unitIndicator {
  color: #c8c8c8;
  margin-right: .25ch;
  font-family: Inter;
  font-size: .75em;
}

.Card-module__vbnGXa__centIndicator {
  font-size: .9em;
}

.Card-module__vbnGXa__trendUp {
  color: #dcffdc;
  padding-right: 1ch;
}

.Card-module__vbnGXa__trendDown {
  color: #ffdcdc;
  padding-right: 1ch;
}

.Card-module__vbnGXa__trendNoData {
  color: #dcdcdc;
  padding-right: 1ch;
}

.Card-module__vbnGXa__moreInfomation {
  color: #969696;
  font-size: .6em;
}

.Card-module__vbnGXa__flexbox {
  justify-content: space-between;
  align-items: center;
  height: 1em;
  display: flex;
}

/* [project]/src/components/Loading/Loading.module.css [app-client] (css) */
.Loading-module__J-bl4a__loadingModal {
  z-index: 999;
  background: rgba(0, 0, 0, .6);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  overflow: hidden;
}

.Loading-module__J-bl4a__loaderMessage {
  color: var(--accent-color);
  margin-top: 80px;
  font-size: 25px;
}

.Loading-module__J-bl4a__loader {
  justify-content: center;
  align-items: center;
  display: flex;
  transform: scale(2);
}

.Loading-module__J-bl4a__loader img {
  transform-origin: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  object-fit: contain;
  width: 50px;
  height: 50px;
  animation: 3s linear infinite Loading-module__J-bl4a__loaderBlook;
  position: absolute;
}

@keyframes Loading-module__J-bl4a__loaderBlook {
  0% {
    transform: translateY(0)rotate(0);
  }

  100% {
    transform: translateY(0)rotate(360deg);
  }
}

/* [project]/src/components/Modal/Modal.module.css [app-client] (css) */
.Modal-module__GKiJOG__modal {
  z-index: 999;
  background: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  overflow: hidden;
}

.Modal-module__GKiJOG__modalContainer {
  background-color: var(--primary-color);
  text-align: center;
  box-sizing: border-box;
  border-radius: 7px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 420px;
  height: 30vh;
  padding-bottom: 7px;
  box-shadow: inset 0 -7px rgba(0, 0, 0, .2), 0 0 4px rgba(0, 0, 0, .15);
}

.Modal-module__GKiJOG__header {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 15px 20px 13px;
  font-family: TitanOne;
  font-size: 30px;
  font-weight: 100;
  display: flex;
}

.Modal-module__GKiJOG__divider {
  background-color: var(--accent-color);
  opacity: .1;
  width: 100%;
  height: 5px;
  margin-bottom: 10px;
}

.Modal-module__GKiJOG__modal[data-animated="true"] {
  animation: .15s linear forwards Modal-module__GKiJOG__modal;
}

.Modal-module__GKiJOG__modal[data-animated="true"] .Modal-module__GKiJOG__modalContainer {
  animation: .3s forwards Modal-module__GKiJOG__modalContainer;
}

.Modal-module__GKiJOG__modal[data-animated="true"].Modal-module__GKiJOG__closing, .Modal-module__GKiJOG__modal[data-animated="true"].Modal-module__GKiJOG__closing .Modal-module__GKiJOG__modalContainer.Modal-module__GKiJOG__closing {
  background: green;
}

@keyframes Modal-module__GKiJOG__modal {
  0% {
    background: none;
  }

  100% {
    background: rgba(0, 0, 0, .6);
  }
}

@keyframes Modal-module__GKiJOG__modalContainer {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  60% {
    opacity: 1;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=src_4cc47703._.css.map*/