﻿.ezIcon {
  height: var(--icon);
  width: var(--icon);
  min-width: var(--icon);
  min-height: var(--icon);
  display: inline-flex;
  vertical-align: middle;
  background: var(--icon-color);
  mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  -webkit-mask: var(--icon-url) no-repeat center / var(--icon-inner, cover);
  margin-inline-start: var(--icon-ms, 0);
  margin-inline-end: var(--icon-me, 0);
  margin-block: var(--icon-mt, 0) var(--icon-mb, 0);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  rotate: calc(var(--icon-rotate, 0deg) * var(--direction-num, 1));
  transform: var(--icon-transform, none);
}

.width-48 {
  width: 48px;
}
#clearsearch {
  display: none;
}
.line-height {
  line-height: 1rem;
}

.tuition {
  display: flex;
  gap: 24px;
  margin-block: 144px;
}

.tuition_Debt_Card {
  grid-area: 2 / 1 / 3 / 2;
}
.tuition_Info_Card {
  grid-area: 1 / 1 / 2 / 2;
}
.tuition_User {
  grid-area: 1 / 2 / 3 / 3;
}

.tuition_Body {
  flex: 1;
}

.tuition_Sidebar {
  flex: 0.25;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  background: #fff;
  box-shadow: 0 4px 64px 0 rgba(18, 18, 18, 0.05);
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  max-height: 700px;
}

.tuition_Sidebar_Header {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 38px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e4e4e4;
}

.tuition_Sidebar_Img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.tuition_Sidebar_Name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tuition_Sidebar_Name h4 {
  color: #0f1d71;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.tuition_Sidebar_Name p {
  color: #626262;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tuition_Sidebar_List {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tuition_Sidebar_Tab {
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  transition: 0.3s;
  color: #4f4f4f !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}

.tuition_Sidebar_Tab::before {
  content: "";
  display: block;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  border-radius: 0;
  background: #1931bd;
  opacity: 0;
  transition: 0.3s;
}

.tuition_Sidebar_Tab.active::before {
  opacity: 1;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.tuition_Sidebar_Tab .ezIcon {
  --icon: 24px;
  --icon-color: #959595;
}

.tuition_Sidebar_Tab:hover {
  background: #e8eaf8;
}

.tuition_Sidebar_Tab:hover .ezIcon {
  --icon-color: #3b50c7;
}

.tuition_Sidebar_Tab.active .ezIcon {
  --icon-color: #3b50c7;
}

.tuition_Sidebar_Logout {
  margin-top: auto;
}

.tuition_Sidebar_Logout a {
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  transition: 0.3s;
  color: #4f4f4f;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Sidebar_Logout .ezIcon {
  --icon: 24px;
  --icon-color: #eb3131;
}

.tuition_Card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  background: #fff;
  box-shadow: 0 4px 64px 0 rgba(18, 18, 18, 0.05);
  padding: 1.5rem;
  height: 100%;
}

.tuition_Card_Ttl {
  color: #0f1d71;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_Info_List {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.tuition_Info_Item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tuition_Info_Item:not(:last-child) {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f2f2f2;
}

.tuition_Info_Item_Ttl {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7a7a7a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Info_Item_Ttl .ezIcon {
  --icon: 20px;
  --icon-color: #7a7a7a;
}

.tuition_Info_Item_Value {
  color: #4f4f4f;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_Debt_Card {
  background: #fdeeee;
}

.tuition_Debt_Card_Content {
  margin-top: 2rem;
}

.tuition_Debt_Ttl {
  color: #a62b15;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_Debt_Price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 1.5rem 2.5rem;
}

.tuition_Debt_Price_Ttl {
  color: #7a7a7a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Debt_Price_Val {
  color: #4f4f4f;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tuition_Debt_Price_Val span {
  color: #7a7a7a;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Btn {
  border: none !important;
  box-shadow: unset !important;
  outline: unset !important;
  border-radius: 8px;
  background: #1931bd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  color: #fff;
  font-family: inherit !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_User .tuition_Card {
  padding-bottom: 0;
}

.tuition_User_List {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  margin-bottom: 38px;
}

.tuition_Card_Itm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tuition_Card_Itm:not(:last-child) {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f2f2f2;
}

.tuition_Card_Itm_Ttl {
  color: #7a7a7a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Card_Itm_Val {
  color: #4f4f4f;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_User_Edit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.tuition_User_Img {
  display: flex;
  justify-content: center;
}

.tuition_User_Img img {
  width: auto;
  height: 100%;
}

.EduManage p,
.EduManage h1,
.EduManage h2,
.EduManage h3,
.EduManage h4,
.EduManage h5,
.EduManage h6 {
  font-family: inherit !important;
  margin: 0 !important;
}

.tuition_Table {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #f2f2f2;
  box-shadow: 0 4px 64px 0 rgba(18, 18, 18, 0.05);
}

.tuition_Table_Header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tuition_Table_Header h2 {
  color: #0f1d71;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_Table_Status {
  display: flex;
  align-items: center;
  gap: 68px;
}

.tuition_Table_Stat {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.tuition_Table_Stat p {
  color: #4f4f4f;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.tuition_Table_Stat span {
  color: #959595;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Table_Wrap {
  border-radius: 16px;
  border: 1px solid #bdbdbd;
  background: #fff;
  box-shadow: 0 4px 56px 0 rgba(18, 18, 18, 0.05);
}

.tuition_Table_Wrap .table {
  margin-bottom: 0;
}

.tuition_Table_Wrap .table .thead-mc th {
  color: #fff;
  background-color: #0b1655 !important;
  border-color: transparent !important;
}

.tuition_Table_Wrap .table .thead-mc th:first-child {
  border-top-right-radius: 1rem !important;
}

.tuition_Table_Wrap .table .thead-mc th:last-child {
  border-top-left-radius: 1rem !important;
}

.tuition_Table_Wrap .table-striped tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9 !important;
}

.tuition_Table_Wrap .table-striped tbody tr:last-child td:first-child {
  border-bottom-right-radius: 1rem !important;
}

.tuition_Table_Wrap .table-striped tbody tr:last-child td:last-child {
  border-bottom-left-radius: 1rem !important;
}

.tuition_Table_Wrap .table thead th {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Table_Wrap .table thead th span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Table_Wrap .table td,
.tuition_Table_Wrap .table th {
  border-color: #e4e4e4 !important;
}

.tuition_Table_Wrap .table tbody th:first-child {
  color: #3d3d3d !important;
  font-size: 12px !important;
}

.tuition_Table_Wrap .table td {
  color: #4f4f4f;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Table_Wrap .table .tc-blue {
  color: #1931bd !important;
}

.tuition_Table_Wrap .table .tc-red {
  color: #bd1919 !important;
}

.tuition_Table_Wrap .tuition_Btn {
  padding: 4px 1rem !important;
}

.detail_Btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #152aa1 !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.detail_Btn .ezIcon {
  --icon: 20px;
  --icon-color: #152aa1;
}

.tuition_Table_Btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.tuition_Body_Tab {
  transition: 0.3s;
  display: none;
}

.tuition_Body_Tab.active {
  display: block !important;
}

.tuition_Body_Tab.active:first-child {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 24px;
}

.tuition_Form_Grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 24px;
  margin-top: 24px;
}

.tuition_Form_Wrap:not(:last-child) {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f2f2f2;
}

.tuition_Form_Inp label {
  color: #959595;
  text-align: right;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Form_Inp input,.tuition_Form_Inp select {
  border-radius: 6px !important;
  border: 1px solid #e4e4e4 !important;
  background: #fff !important;
  padding: 6px 8px !important;
  color: #3d3d3d;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

.tuition_Form_Inp input:focus,
.tuition_Form_Inp input:focus-visible {
  border-color: #959595 !important;
}

.tuition_Form_Btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2rem;
  margin-top: 1rem;
  grid-column: 1 / span 4;
}

.tuition_Btn_Outline {
  background: #fff;
  color: #152aa1;
  border: 1px solid transparent !important;
}

.tuition_Form_Alert {
  color: #626262;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tuition_Form_Alert span {
  color: #1931bd;
}

.address_Inp {
  grid-column: 1 / span 3;
}

@media (max-width: 1200px) {
  .container-fluid{
    padding-inline: 0 !important;
  }
    
  .tuition {
    flex-direction: column;
    margin-block: 72px;
  }

  .tuition_Sidebar {
    max-height: unset;
    flex: none;
    margin-bottom: 2rem;
  }

  .tuition_Body_Tab.active:first-child {
    display: flex !important;
    flex-direction: column;
  }

  .tuition_Sidebar_Logout{
    margin-top: 24px;
  }

  .tuition_Form_Grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .address_Inp {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 768px) {
  .tuition {
    margin-block: 48px;
  }

  /* .tuition_Sidebar_Header {
    flex-direction: column;
    align-items: flex-start;
  } */

  .tuition_Sidebar_Img {
    width: 60px;
    height: 60px;
  }

  .tuition_Table_Header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .tuition_Table_Status {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .tuition_Form_Grid {
    grid-template-columns: 1fr;
  }

  .tuition_Form_Btn {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    grid-column: 1 / -1;
  }

  .address_Inp {
    grid-column: 1 / -1;
  }

  .tuition_User_Edit {
    flex-direction: column;
  }

  .tuition_Table_Wrap {
    overflow-x: auto;
  }

  .tuition_Table_Wrap .table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  .tuition_Sidebar_Name h4,
  .tuition_Sidebar_Name p {
    font-size: 12px;
  }

  .tuition_Btn {
    font-size: 12px;
    padding: 0.5rem 0.75rem;
  }

  .tuition_Info_Item_Value,
  .tuition_Card_Itm_Val {
    font-size: 14px;
  }

  .tuition_Info_Item_Ttl,
  .tuition_Card_Itm_Ttl {
    font-size: 12px;
  }
}
