@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-moz-placeholder {
  color: #D8D7E0;
  opacity: 1; /* Firefox */
  text-transform: none;
}

::placeholder {
  color: #D8D7E0;
  opacity: 1; /* Firefox */
  text-transform: none;
}

::-ms-input-placeholder { /* Edge 12 -18 */
  text-transform: none;
}

/* width */
::-webkit-scrollbar {
  width: 0.3vw;
  height: 0.3vw;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 50vw;
}

input {
  outline: none;
  border: none;
  background-color: transparent;
}

button {
  outline: none;
  border: none;
  background-color: transparent;
}

textarea {
  outline: none;
  border: none;
  resize: none;
}

a {
  text-decoration: none;
  font-style: unset;
  outline: none;
}

img {
  /* user-drag: none; */
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg_1 {
  background-color: #FFFFFF;
}

.bg_2 {
  background-color: #F5F5FF;
}

.bg_3 {
  background-color: #673DE6;
}

.cl_1 {
  color: #1E1E21;
}

.cl_2 {
  color: #6D7081;
}

.cl_3 {
  color: #673DE6;
}

.cl_4 {
  color: #00B090;
}

.cl_5 {
  color: #B81818;
}

.hori_line {
  width: 100%;
  height: 1px;
  background-color: #D8D7E0;
}

.vert_line {
  height: 100%;
  width: 1px;
  background-color: #D8D7E0;
}

.loading {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 99999999;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.loading .load_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loading .load_wrap .l_svg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.loading .load_wrap .l_svg_1 {
  z-index: 9;
}
.loading .load_wrap .l_svg_2 {
  animation: rot 1s infinite linear;
  z-index: 99;
}

.loading_show {
  display: flex;
}

.section {
  width: 100%;
  height: 100%;
  max-width: 768px;
  display: none;
  flex-direction: column;
  position: relative;
}

.section_show {
  display: flex;
}

.bottom_nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.bottom_nav .nav {
  color: #6D7081;
}
.bottom_nav .active {
  color: #673DE6;
}
.bottom_nav .active .svg_wrap svg .f2 {
  fill: #673DE6;
}
.bottom_nav .active .svg_wrap svg .f1 {
  fill: #FFFFFF;
}
.bottom_nav .active .svg_wrap svg .s2 {
  stroke: #673DE6;
}
.bottom_nav .active .svg_wrap svg .s1 {
  stroke: #FFFFFF;
}

.logo_wrap {
  height: 32px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo_wrap img {
  height: 100%;
}

.log_img {
  display: flex;
  width: 25%;
  align-items: center;
  justify-content: center;
}
.log_img img {
  width: 100%;
}

.header_svg_2 {
  position: absolute;
  right: 16px;
  display: flex;
}

.header_search {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  transform: translateX(calc(100% - 56px));
  background-color: #FFFFFF;
  padding: 0 16px;
  gap: 16px;
  transition: all 0.6s ease-in-out;
}
.header_search .search_svg svg path {
  transition: all 0.6s ease-in-out;
}
.header_search .s_input {
  width: 100%;
  display: flex;
}
.header_search .s_input input {
  width: 100%;
  font-size: 14px;
  color: #1E1E21;
}

.h_search_show {
  transform: translateX(0);
  left: 0;
}
.h_search_show .search_svg svg path {
  stroke: #D8D7E0;
}

.btn_1_s {
  width: -moz-max-content;
  width: max-content;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #673DE6;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0 8px;
}

.btn_1_m {
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #673DE6;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0 12px;
}

.btn_1_l {
  width: -moz-max-content;
  width: max-content;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #673DE6;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 0 16px;
}

.btn_2_s {
  width: -moz-max-content;
  width: max-content;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #8564EB;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #8564EB;
  padding: 0 8px;
}

.btn_2_m {
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #8564EB;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #8564EB;
  padding: 0 12px;
}

.btn_2_l {
  width: -moz-max-content;
  width: max-content;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid #8564EB;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #8564EB;
  padding: 0 16px;
}

.btn_3_l {
  width: -moz-max-content;
  width: max-content;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
}

.cal_nav {
  position: relative;
}
.cal_nav .cal {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #6D7081;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.cal_nav .cal span {
  padding: 0 8px;
}
.cal_nav .cal .line {
  width: 0;
  height: 1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.cal_nav .active {
  color: #673DE6;
}
.cal_nav .active .line {
  width: 100%;
  height: 1px;
  background-color: #673DE6;
}
.cal_nav .hori_line {
  position: absolute;
  bottom: 0px;
  right: 0;
}

.date_start_cont {
  transform: translateX(0);
  transition: all 0.6s ease-in-out;
}

.date_end_cont {
  position: absolute;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
}

.disc_1 {
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

.disc_2 {
  position: absolute;
  transform: translateY(100%);
  transition: all 0.6s ease-in-out;
}

.slide .date_start_cont {
  transform: translateX(-100%);
}
.slide .date_end_cont {
  transform: translateX(0);
}
.slide .disc_1 {
  transform: translateY(-100%);
}
.slide .disc_2 {
  transform: translateY(0);
}

.card {
  width: 100%;
  border: 1px solid #D8D7E0;
  border-radius: 16px;
  background-color: #FFFFFF;
  display: flex;
}
.card .icon_wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.hide {
  display: none;
}

.card_active {
  border: 1px solid #673DE6;
}

.card_s {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #D8D7E0;
  border-radius: 10px;
}

.card_2 {
  width: 100%;
  background-color: #F7F7F7;
  border-radius: 12px;
}

.sel_card {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.sel_card .sel_nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #673DE6;
  font-weight: 600;
  background-color: #F5F5FF;
  height: 40px;
}
.sel_card .sel_nav input {
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: #002CB8;
  font-weight: 600;
}
.sel_card .time_svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.sel_card .abbre_wrap {
  height: 40px;
  display: flex;
  flex-direction: column;
  border: 1px solid #D8DAE0;
  border-radius: 8px;
}
.sel_card .abbre_wrap .abb {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #D8DAE0;
  padding: 0 8px;
  font-weight: 600;
}
.sel_card .abbre_wrap .am {
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sel_card .abbre_wrap .pm {
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.sel_card .abbre_wrap .act {
  color: #673DE6;
  background-color: #F5F5FF;
}
.sel_card .act_1 {
  border: 1px solid #673DE6;
}
.sel_card .v2 {
  border: 1px solid transparent;
}
.sel_card .sel_prev_wrapper {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sel_card .sel_prev_wrapper .sel_prev {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  transition: all 0.6s ease-in-out;
  opacity: 1;
  z-index: 9;
}
.sel_card .sel_prev_wrapper .sel_prev .sel_val {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  color: #D8DAE0;
}
.sel_card .sel_prev_wrapper .sel_prev .sel_val span {
  position: relative;
}
.sel_card .sel_prev_wrapper .sel_prev .act_2 {
  color: #673DE6;
  font-weight: 600;
}
.sel_card .sel_prev_wrapper .sel_prev .act_2 span::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #002CB8;
}
.sel_card .sel_prev_wrapper .r {
  transform: translateX(100%);
  opacity: 0;
  z-index: -9;
}
.sel_card .sel_prev_wrapper .l {
  transform: translateX(-100%);
  opacity: 0;
  z-index: -9;
}

.set_card {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #D8D7E0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
}
.set_card .swiper_cont {
  width: 100%;
  height: 160px;
  display: flex;
  position: relative;
}
.set_card .swiper_cont .swiper {
  width: 100%;
  height: 100%;
}
.set_card .swiper_cont .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
}
.set_card .swiper_cont .swiper-slide span {
  font-size: 12px;
  color: #6D7081;
  transition: all 0.3s ease-in-out;
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.set_card .swiper_cont .swiper-slide span::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  bottom: -2px;
  z-index: 9;
}
.set_card .swiper_cont .swiper-slide-active span {
  font-size: 16px;
  font-weight: 600;
  color: #1E1E21;
}
.set_card .swiper_cont .swiper-slide-active span::before {
  width: 100%;
  background-color: #D8DAE0;
}
.set_card .month_swiper {
  width: unset;
  min-width: 64px;
}
.set_card .month_swiper_v2 {
  width: unset;
  min-width: 120px;
}
.set_card .day_swiper {
  width: unset;
  min-width: 48px;
}
.set_card .week_swiper {
  width: unset;
  min-width: 96px;
}
.set_card .year_swiper {
  width: unset;
  min-width: 64px;
}
.set_card .time_swiper {
  width: unset;
  min-width: 50px;
}
.set_card .disc_swiper {
  width: unset;
  min-width: 120px;
}
.set_card .disc_swiper_2 {
  width: unset;
  width: 100px;
}

.analy_swiper .swiper {
  width: 100%;
  height: 100%;
}
.analy_swiper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.analy_swiper .swiper-slide .card {
  height: 140px;
}

.cash_card .icon_wrap {
  background-color: #D5FFF7;
}
.cash_card .icon_wrap .icons {
  display: none;
}
.cash_card .icon_wrap .icon_1 {
  display: flex;
}
.cash_card .amm_php {
  color: #00A385;
}

.bank_card .icon_wrap {
  background-color: #ECDFFF;
}
.bank_card .icon_wrap .icons {
  display: none;
}
.bank_card .icon_wrap .icon_2 {
  display: flex;
}
.bank_card .amm_php {
  color: #4900B0;
}

.rece_card .icon_wrap {
  background-color: #FEFFD6;
}
.rece_card .icon_wrap .icons {
  display: none;
}
.rece_card .icon_wrap .icon_3 {
  display: flex;
}
.rece_card .amm_php {
  color: #ADB000;
}

.gcash_card .icon_wrap {
  background-color: #F0F7FF;
}
.gcash_card .icon_wrap .icons {
  display: none;
}
.gcash_card .icon_wrap .icon_4 {
  display: flex;
}
.gcash_card .amm_php {
  color: #002CB8;
}

.maya_card .icon_wrap {
  background-color: #E2FFF2;
}
.maya_card .icon_wrap .icons {
  display: none;
}
.maya_card .icon_wrap .icon_5 {
  display: flex;
}
.maya_card .amm_php {
  color: #00C06E;
}

.card_overflow {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}
.card_overflow .card_overflow_child {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.card_overflow .card_overflow_child .items_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: 16px;
  padding: 0 16px;
}
.card_overflow .card_overflow_child .items_wrap .p_card {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #D8DAE0;
  background-color: #FFFFFF;
  padding: 12px;
}
.card_overflow .card_overflow_child .topItm_card {
  display: flex;
}
.card_overflow .card_overflow_child .hide {
  display: none;
}

.auto_overflow {
  height: 100%;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.auto_overflow .auto_overflow_child {
  position: absolute;
  width: 100%;
  max-height: 100%;
  overflow: auto;
}

.overflow_nav {
  width: 100%;
  height: auto;
  overflow: auto;
}
.overflow_nav .menu_btn_v1 .menu_btn {
  height: 40px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  color: #6D7081;
  border-radius: 8px;
  white-space: nowrap;
}
.overflow_nav .menu_btn_v1 .active {
  color: #1E1E21;
  background-color: #FFFFFF;
  border: 1px solid #D8D7E0;
}
.overflow_nav .menu_btn_v2 .menu_btn {
  height: 20px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #6D7081;
  white-space: nowrap;
  padding: 0 4px;
}
.overflow_nav .menu_btn_v2 .active {
  border-bottom: 1px solid #673DE6;
  color: #673DE6;
}

.bar_cont {
  width: 100%;
  height: auto;
  overflow: auto;
}
.bar_cont .bar_wrap {
  display: flex;
  align-items: flex-end;
  width: 8px;
  height: 80px;
  border-radius: 2px;
  background-color: #D8D7E0;
}
.bar_cont .bar_wrap .line {
  width: 100%;
  border-radius: 2px;
  background-color: #673DE6;
}
.bar_cont .same_w {
  flex: 1;
  white-space: nowrap;
}

.num_wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opp_wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.opp_wrap_2 {
  border: 1px solid #00B090;
}

.wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paymethod_wrap .paymethod {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.paymethod_wrap .paymethod .p_svg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.paymethod_wrap .paymethod span {
  font-size: 12px;
  color: #6D7081;
}
.paymethod_wrap .active .p_svg {
  background-color: #673DE6;
}
.paymethod_wrap .active .p_svg svg path {
  stroke: #FFFFFF;
}
.paymethod_wrap .active .p_svg_2 {
  background-color: #673DE6;
}
.paymethod_wrap .active .p_svg_2 svg path {
  fill: #FFFFFF;
  stroke: unset;
}
.paymethod_wrap .active span {
  color: #673DE6;
}

.temp {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}
.temp .wraps {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.temp .wraps .plus {
  color: #6D6C80;
  font-size: 20px;
  font-weight: 500;
}
.temp .wraps .num_wrapp {
  height: 32px;
  width: auto;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #D8D7E0;
  font-weight: 500;
  color: #1E1E21;
}

.svg_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input {
  display: flex;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #D8DAE0;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  gap: 8px;
  position: relative;
}
.input input {
  width: 100%;
  font-size: 14px;
  color: #1E1E21;
}
.input .svg_wrap svg {
  transition: all 0.3s ease-in-out;
}
.input .inp_dropdown {
  position: absolute;
  top: 0;
  width: 100%;
  display: none;
  z-index: 99999;
  padding-bottom: 8px;
  padding-top: 56px;
}
.input .inp_dropdown .child {
  width: 100%;
  display: flex;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
}

.input_m {
  display: flex;
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #D8DAE0;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  gap: 8px;
  position: relative;
}
.input_m input {
  width: 100%;
  font-size: 14px;
  color: #1E1E21;
}

.t_amm input {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #673DE6;
}

.drop .d_svg svg {
  transform: rotate(-180deg);
}
.drop .inp_dropdown {
  display: flex;
}

.t_area {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #D8DAE0;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding: 10px 0;
}
.t_area textarea {
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #1E1E21;
  resize: none; /* Disable resizing */
  background-color: transparent;
  padding: 0 16px;
}

.back_wrap {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x_wrap {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
}

.mh_200 {
  max-height: 200px;
}

.h_200 {
  height: 200px;
}

.slide_up {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  max-width: 768px;
  background-color: #FFFFFF;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 99999;
  display: flex;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

.up {
  transform: translateY(0);
  opacity: 1;
}

.dropdown_1 {
  position: absolute;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  padding: 32px;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  max-width: 768px;
}
.dropdown_1 .d_child {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
  display: flex;
}

.dropdown_2 {
  position: absolute;
  z-index: 99999;
  display: none;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.dropdown_3 {
  position: absolute;
  z-index: 99999;
  display: none;
  width: -moz-max-content;
  width: max-content;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 0px 8px -2px rgba(0, 0, 0, 0.25);
}

.dropdown_show {
  display: flex;
}

.dropdown_2 {
  transform: translateX(-100%);
}

.hider {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  background-color: transparent;
}

.hider_show {
  display: flex;
}

.calendar {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}
.calendar .weekdays {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.calendar .weekdays .dayy {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6D7081;
}
.calendar .days {
  display: flex;
  flex-wrap: wrap;
}
.calendar .days .day {
  width: 14.2857142857%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8px;
}
.calendar .days .day .box {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.calendar .days .day .box .date_num {
  color: #1E1E21;
  font-weight: 600;
  font-size: 12px;
  position: absolute;
}
.calendar .days .day .box .prev {
  color: #D8DAE0;
}
.calendar .days .day .box .next {
  color: #D8DAE0;
}
.calendar .days .day .box:hover {
  border: 1px solid #673DE6;
}
.calendar .days .today .box {
  background-color: #673DE6;
}
.calendar .days .today .box .date_num {
  color: #FFFFFF;
}

.profile_div {
  height: 120px;
  background-color: #673DE6;
}
.profile_div .profile_wrap {
  width: 100px;
  height: 100px;
  border: 4px solid #F5F5FF;
  border-radius: 16px;
  transform: translateY(50%);
  background-color: #F5F5FF;
  display: flex;
}
.profile_div .profile_wrap img {
  width: 100%;
  border-radius: 16px;
}

/* The animation code */
@keyframes rot {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */