/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
menu, ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
  /* color */
  --color-bg: #eeebe5;
  --color-shadow: #ede8da;
  --colore-orange: #ff5f00;

  /* padding */
  --padding-basic: 0 30px;

  /* box shadow */
  --box-shadow: 0px 0px 10px 0px var(--color-shadow);

  /* border radius*/
  --border-radius-range: 5px;

  /* range margin top */
  --range-margin-top: -11px;
}

/* swiper */

.swiper {
  height: 100vh;
  /* cursor: wait; */
}

/* common */

body,
input,
button {
  font-family: "kakao";
}

* {
  box-sizing: border-box;
  user-select: none;
}

.inner {
  padding: var(--padding-basic);
}

.empty {
  visibility: hidden;
}

.white {
  color: white;
}

.btn {
  border: 0px solid transparent;
  background-color: white;
  cursor: pointer;
}

.off {
  display: none;
  visibility: hidden;
}

.statusbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
}

.statusbar.open {
  background-color: white;
}

.statusbar .inner {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  height: 44px;
}

/* input text & number */

input[type="text"],
input[type="number"] {
  border: 1px solid transparent;
  border-bottom: 2px solid gray;
  padding: 3px;
  outline: none;
  transition: 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="number"]:focus {
  transform: scale(1.1);
  border-bottom: 2px solid transparent;
}

/* input range */

/* webkit input range */

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--colore-orange);
  cursor: pointer;
  border: 3px solid white;
  height: 30px;
  width: 15px;
  margin-top: var(--range-margin-top);
  border-radius: 10px;
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  border-radius: 10px;
  background: yellow;
}

/* moz input range */

input[type="range"]::-moz-range-thumb {
  background: var(--colore-orange);
  cursor: pointer;
  border: 3px solid white;
  height: 30px;
  width: 15px;
  margin-top: var(--range-margin-top);
  border-radius: 10px;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  border-radius: 10px;
}

input[type="range"]::-moz-range-progress {
  height: 7px;
  background: yellow;
  border-radius: var(--border-radius-range);
}

input[type="range"]::-moz-range-track {
  height: 7px;
  background: gray;
  border-radius: var(--border-radius-range);
}

/* ms input range */

input[type="range"]::-ms-thumb {
  background: var(--colore-orange);
  cursor: pointer;
  border: 3px solid white;
  height: 30px;
  width: 11px;
  margin-top: var(--range-margin-top);
  border-radius: 10px;
}

input[type="range"]::-ms-track {
  background: var(--colore-orange);
  cursor: pointer;
  border: 3px solid white;
  height: 36px;
  width: 16px;
  margin-top: var(--range-margin-top);
  border-radius: 10px;
}

input[type="range"]::-ms-fill-lower {
  background: yellow;
  border-radius: var(--border-radius-range);
}
input[type="range"]::-ms-fill-upper {
  background: gray;
  border-radius: var(--border-radius-range);
}

/* main page */

.main-page {
  position: absolute;
  top: 44px;
  right: 0;
  bottom: 58px;
  left: 0;
  background-color: var(--color-bg);
}

.main-page header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.main-page header .inner {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  height: 43px;
}

.main-page header .avatar.icon {
  display: block;
}

.main-page header .title {
  margin-left: 20px;
}

.main-page header .search {
  padding-left: 15px;
}

.main-page main {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  bottom: 0;
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

main.open {
  -ms-grid-rows: 0 100%;
  grid-template-rows: 0 100%;
}

.total {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  align-items: center;
  flex: 4;
}

.total.open {
  display: none;
}

.total .card {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 75%;
  padding: 18px;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  background-color: white;
}

.total .top {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.total .top .account-number {
  color: gray;
  font-size: 14px;
}

.total .middle {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0;
}

.middle .totalPrice .amount {
  font-size: 18px;
  letter-spacing: 2px;
}

.middle .totalPrice .unit {
  font-size: 10px;
}

.total .bottom {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.total .bottom .slider {
  width: 100%;
}

.total .ad {
  font-size: 14px;
}

.details {
  background-color: white;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  overflow: hidden;
  flex: 6;
}

.details.open {
  animation: openBar 0.3s ease-in-out;
}

.details .inner {
  position: relative;
  height: 100%;
}

.details .bar.btn {
  display: block;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 5px;
}

.details .savingBox {
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.details .savingBox::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.details .saving.inner {
  padding: 0px;
  display: flex;
  width: 100%;
}

.details .savingBox ul {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  position: relative;
}

.details .savingBox li {
  margin-right: 10px;
}

.details .slide {
  width: 155px;
  height: 45px;
  border-radius: 7px;
  background-color: #cccccc;
  overflow: hidden;
}

.details .slide .gauge {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;

  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;

  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;

  width: 100px;
  height: 45px;
  padding-left: 15px;
  font-size: 12px;
  /* background-color: red; */
}

.details .slide span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 80px;
}

.details .plusBox {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
  width: fit-content;
  height: 45px;
  /* margin-left: 10px; */
  padding: 10px;
  font-size: 12px;
  color: var(--colore-orange);
  cursor: pointer;
}

.details .plusBox .plus_content {
  margin-left: 5px;
  display: block;
  width: 70px;
  text-align: center;
}

.details .days {
  position: absolute;
  top: 90px;
  left: 30px;
  right: 30px;
  height: 70%;
}

.details.open .days {
  height: 85%;
}

.details .days .inner {
  padding: 0;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.details .days .inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.details .day {
  margin-bottom: 40px;
}

.details .day:last-child {
  margin-bottom: 20px;
}

.details .day-title {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.details .day-title .amount {
  color: rgb(161, 160, 160);
}

.details .spendings li {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgb(99, 96, 96);
  border-bottom: 1px solid rgb(190, 190, 190);
  padding: 10px 0;
}

.details .spendings .amount.in {
  color: var(--colore-orange);
}

.details .spendings .amount.in::before {
  content: "+ ";
}

/* ----------- */
/* manage page */
/* ----------- */

.manage-page {
  position: fixed;
  top: 44px;
  right: 0;
  left: 0;
  bottom: 58px;
  background-color: white;
  animation: fadeIn 0.5s ease-in-out;
}

.manage-page header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
}

.manage-page header .inner {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-align: end;
  -ms-flex-align: end; */
  align-items: flex-end;
  height: 65px;
}

.manage-page header .inner .page-title {
  font-size: 24px;
  margin-bottom: 3px;
}

.close {
  position: absolute;
  top: 0;
  right: 23px;
}

.manage-page .main {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.manage-page .main::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.standard {
  /* display: -ms-flexbox; */
  /* display: -webkit-box; */
  display: flex;
  /* -webkit-box-orient: vertical; */
  /* -ms-flex-direction: column; */
  flex-direction: column;
  /* -webkit-box-pack: justify; */
  /* -ms-flex-pack: justify; */
  justify-content: space-evenly;
  height: 175px;
}

.standard .info {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-pack: justify;
  -ms-flex-pack: justify; */
  justify-content: space-between;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
}

.standard .info .title {
  font-size: 18px;
}

.standard .info .price {
  font-size: 24px;
  color: var(--colore-orange);
}

.daily-report {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-orient: vertical;
  -ms-flex-direction: column; */
  flex-direction: column;
  margin-bottom: 45px;
}

.daily-report .title {
  margin-bottom: 20px;
}

.daily-report .bargraph {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.month-pattern .title {
  margin-bottom: 20px;
}

.month-pattern .piegraph {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.month-pattern .totalPrice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center; */
  justify-content: center;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
}

.month-pattern .totalPrice .sumAmount {
  font-size: 18px;
  letter-spacing: 2px;
}

.month-pattern .totalPrice .unit {
  font-size: 10px;
}

.month-pattern li {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-pack: justify;
  -ms-flex-pack: justify; */
  justify-content: space-between;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
  margin: 25px 0;
}

.month-pattern li .categorys {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
}

.month-pattern li img {
  width: 30px;
  height: 25px;
  margin-right: 20px;
  object-fit: contain;
}

.month-pattern li .amount {
  color: gray;
}

/* footer */
nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, #00bdb2, #c4e7b8);
}

nav ul {
  /* display: -ms-flexbox;
  display: -webkit-box; */
  display: flex;
  /* -webkit-box-pack: justify;
  -ms-flex-pack: justify; */
  justify-content: space-around;
  /* -webkit-box-align: center;
  -ms-flex-align: center; */
  align-items: center;
  height: 58px;
}

/* modal */

.modal {
  opacity: 0;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0.1, 0.1, 0.1, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal.on {
  opacity: 1;
  z-index: 1;
}

.modal .box {
  position: relative;
  width: 70%;
  height: 50%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.modal .box .title {
  font-size: 20px;
  border-bottom: 3px solid gray;
  padding-bottom: 5px;
  letter-spacing: 5px;
}

.modal .box .inputBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  padding-bottom: 10px;
  font-size: 13px;
}

.modal .box label {
  display: block;
  width: 50%;
}

.modal .box input {
  width: 100%;
}

.modal .box .create.btn {
  width: 100%;
  padding: 10px;
  border-radius: 7px;
  color: white;
  background-color: skyblue;
}

.modal .box .exit.btn {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 6px 9px;
  border: 1px solid black;
  border-radius: 5px;
}

/* reload */

.reloadBox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
}

.reload.text {
  margin-right: 5px;
}

/* animation */

@keyframes openBar {
  0% {
    transform: translateY(200px);
  }
  25% {
    transform: translateY(150px);
  }
  50% {
    transform: translateY(100px);
  }
  75% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(400px);
  }

  to {
    opacity: 3;
    transform: none;
  }
}

/**
 * Swiper 7.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 16, 2021
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, 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");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}
