#summary-drawer,
.summary-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--mid-color-1);
  z-index: 9990;
  overflow-y: auto;
  transition: 0.4s;
}
#summary-drawer .summary-drawer-container,
.summary-drawer .summary-drawer-container {
  width: 97%;
  margin: 0 auto;
  position: relative;
}
#summary-drawer .summary-drawer-container .summary-drawer-header,
.summary-drawer .summary-drawer-container .summary-drawer-header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--mid-color-1);
  border-bottom: 1px solid rgb(226, 226, 226);
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-header-title p,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-header-title p {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--mid-color-2);
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close {
  position: absolute;
  top: 15px;
  right: 0;
  cursor: pointer;
  transition: 0.3s;
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close p,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close p {
  display: inline-block;
  margin-right: 10px;
  font-size: 0.8rem;
  font-weight: bold;
  transition: 0.3s;
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close .icon,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: 0.3s;
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close .icon i,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close .icon i {
  color: var(--dull-black);
  transform: translateY(2px);
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover p,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover p {
  color: var(--secondary-color);
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover .icon,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover .icon {
  background-color: rgb(211, 211, 255);
}
#summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover .icon i,
.summary-drawer .summary-drawer-container .summary-drawer-header .summary-drawer-close:hover .icon i {
  color: var(--pure-blue);
}
#summary-drawer table thead,
.summary-drawer table thead {
  position: sticky;
  top: 84px;
  z-index: 2;
  background-color: var(--mid-color-1);
}
#summary-drawer table thead td,
.summary-drawer table thead td {
  padding: 10px 0;
}

.list {
  background-color: var(--mid-color-1);
  border-radius: 10px;
  padding: 5px;
}
.list table {
  width: 100%;
  border-collapse: separate;
}
.list table thead {
  font-size: 0.8rem;
  color: var(--dull-black);
}
.list table tr {
  font-size: 0.8rem;
}
.list table tr td {
  height: 37px;
}
.list table tr td:not(:first-child) {
  text-align: center;
}
.list table tr td .h-40 {
  height: 40px;
}
.list table tbody tr td {
  background-color: rgb(245, 246, 255);
}
.list table tbody tr .action-icon {
  width: 20px !important;
}
.list table tbody .name .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.list table tbody .name .icon i {
  transform: translateY(2px);
  color: white;
  font-size: 1rem;
}
.list table tbody .action i {
  color: var(--dull-black);
  cursor: pointer;
  transition: 0.4s;
  transform: translateY(2px);
}
.list table tbody .action i:hover {
  color: red;
}
.list table tbody .bordered {
  margin-bottom: 10px;
}
.list table tbody .bordered td {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
.list table tbody .bordered td:first-child {
  border-left: 1px solid #ccc;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0 5px;
}
.list table tbody .bordered td:last-child {
  border-right: 1px solid #ccc;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.left-names tr td:nth-child(2) {
  text-align: left !important;
  padding-left: 20px;
}

.action-icon {
  width: 30px !important;
  text-align: center !important;
}/*# sourceMappingURL=summary_drawer.css.map */