/* [project]/app/globals.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-border-style: solid;
      --tw-outline-style: solid;
    }
  }
}

.collapse {
  visibility: collapse;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.container {
  width: 100%;
}

.mx-auto {
  margin-inline: auto;
}

.ml-auto {
  margin-left: auto;
}

.block {
  display: block;
}

.contents {
  display: contents;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.min-h-screen {
  min-height: 100vh;
}

.flex-1 {
  flex: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-inside {
  list-style-position: inside;
}

.list-disc {
  list-style-type: disc;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}

.border-t-4 {
  border-top-style: var(--tw-border-style);
  border-top-width: 4px;
}

.bg-gradient-to-b {
  --tw-gradient-position: to bottom in oklab;
  background-image: linear-gradient(var(--tw-gradient-stops));
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.line-through {
  text-decoration-line: line-through;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.outline {
  outline-style: var(--tw-outline-style);
  outline-width: 1px;
}

.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

@media (hover: hover) {
  .hover\:underline:hover {
    text-decoration-line: underline;
  }
}

:root {
  --taishin-red: #e40001;
  --taishin-red-dark: #d70c18;
  --taishin-red-darker: #d20708;
  --background: #f5f5f5;
  --background-light: #efefef;
  --foreground: #505050;
  --text-primary: #505050;
}

body {
  color: var(--foreground);
  background-color: var(--background);
  margin: 0;
  padding: 0;
  font-family: 微軟正黑體, Microsoft JhengHei, PingFang TC, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
}

h1, h2, h3, p, ul, ol, li, a, form, table, label {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a, a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.whitebg {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  width: 520px;
  overflow: visible;
  box-shadow: 0 3px 6px #00000029;
}

.whitebg .top-block {
  text-align: center;
  background-color: #e40001;
  border-radius: 10px 10px 0 0;
  padding: 30px 0;
}

.whitebg .top-block .login-logo {
  width: 300px;
  margin: auto;
}

.whitebg .bottom-block {
  box-sizing: border-box;
  width: 100%;
  padding: 0 40px 35px;
}

.s-title {
  text-align: center;
  margin: 35px 0;
  font-weight: 600;
  line-height: 1.3;
}

.s-title .s-txt {
  color: #d70c18;
  font-size: 26px;
  font-weight: 900;
  display: block;
  position: relative;
}

.s-title span:before, .s-title span:after {
  content: "";
  background: #d70c18;
  width: 22%;
  height: 2px;
  position: absolute;
  top: 50%;
}

.s-title span:before {
  left: 0;
}

.s-title span:after {
  right: 0;
}

.inputblock {
  box-sizing: border-box;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  margin: 18px 0;
  display: flex;
}

.inputblock label {
  flex-shrink: 0;
  width: 110px;
  min-width: 110px;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.whitebg .top-block .login-logo img {
  width: 100%;
  height: auto;
}

.inputblock > input, .inputblock .ant-input, .inputblock .ant-input-password, .inputblock .ant-input-affix-wrapper {
  box-sizing: border-box;
  border-radius: 5px;
  flex: 1;
  width: calc(100% - 110px);
  min-width: 0;
  margin: 0;
  text-align: center !important;
  background-color: #fff !important;
  border: 0 !important;
  height: 44px !important;
  padding: 0 !important;
  font-size: 16px !important;
  box-shadow: 0 3px 6px #00000029 !important;
}

.inputblock .ant-input-password .ant-input, .inputblock .ant-input-affix-wrapper .ant-input {
  width: 100% !important;
  box-shadow: none !important;
  text-align: center !important;
  background-color: #fff !important;
  border: none !important;
  border-radius: 5px !important;
  height: 100% !important;
  padding: 0 35px 0 0 !important;
}

.inputblock .ant-input-password .ant-input:focus, .inputblock .ant-input-affix-wrapper .ant-input:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

.inputblock .ant-input-password .ant-input-suffix, .inputblock .ant-input-affix-wrapper .ant-input-suffix {
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.inputblock > input:focus, .inputblock .ant-input:focus, .inputblock .ant-input-password:focus-within {
  border: 2px solid #e6000061 !important;
  box-shadow: 0 3px 6px #00000029 !important;
}

.inputblock input.inputcode, .inputblock .ant-input.inputcode {
  text-align: center;
  flex: none !important;
  width: 170px !important;
  min-width: 170px !important;
}

.inputblock .codeimg {
  width: 150px;
  margin: 0 10px;
}

.inputblock .codeimg img {
  width: 100%;
  height: auto;
}

.inputblock i {
  cursor: pointer;
  font-size: 20px;
}

.showctrl {
  flex-shrink: 0;
  align-items: center;
  margin-left: 8px;
  display: flex;
}

.login-form .ant-form-item {
  margin-bottom: 0;
}

.login-form .ant-form-item-label {
  display: none !important;
}

.inputblock .ant-select {
  flex: 1;
  min-width: 0;
  width: calc(100% - 100px) !important;
}

.inputblock .ant-select-selector {
  width: 100% !important;
}

.inputblock .ant-select .ant-select-selector {
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #fff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 5px !important;
  height: 40px !important;
  padding-left: 0 !important;
  box-shadow: 0 3px 6px #00000029 !important;
}

.inputblock .ant-select .ant-select-selection-item, .inputblock .ant-select .ant-select-selection-placeholder {
  background: none !important;
  border: none !important;
}

.inputblock .ant-select .ant-select-selection-search {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset-inline: 0 !important;
}

.inputblock .ant-select .ant-select-selection-search-input {
  width: 0 !important;
  height: 0 !important;
  box-shadow: none !important;
  opacity: 0 !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute !important;
}

.inputblock .ant-select .ant-select-selection-placeholder, .inputblock .ant-select .ant-select-selection-item {
  text-align: center !important;
  flex: none !important;
  padding-inline-end: 0 !important;
}

.inputblock .ant-select-focused .ant-select-selector {
  border: 2px solid #e6000061 !important;
  box-shadow: 0 3px 6px #00000029 !important;
}

.checkbook {
  justify-content: center;
  align-items: center;
  margin: 25px 0;
  font-weight: 900;
  display: flex;
}

.checkbook input[type="checkbox"] {
  accent-color: #d70c18;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.checkbook a {
  font-size: 16px;
  font-weight: 900;
  text-decoration: underline;
}

.checkbook i {
  color: #dc5a61;
  margin-left: 5px;
}

.checkbook .ant-checkbox-wrapper {
  font-weight: 900;
  text-decoration: underline;
}

.error {
  text-align: center;
  color: red;
  margin-bottom: 20px;
  font-weight: 900;
}

.loginbtn {
  justify-content: space-between;
  margin-top: 10px;
  display: flex;
}

.loginbtn .btn, .loginbtn .ant-btn {
  color: #fff;
  letter-spacing: 8px;
  background-color: #d70c19;
  border: 0;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  padding-left: 8px;
  font-size: 22px;
  font-weight: 900;
  display: flex;
}

.loginbtn .btn:hover, .loginbtn .ant-btn:hover {
  opacity: .9;
  color: #fff;
  background-color: #d70c19;
}

.login-form .ant-form-item-explain-error {
  margin-top: 4px;
  margin-left: 110px;
  font-size: 13px;
}

@media screen and (max-width: 560px) {
  .whitebg {
    width: 90%;
    min-width: 320px;
    max-width: 520px;
  }

  .whitebg .top-block .login-logo {
    width: 80%;
    max-width: 260px;
  }

  .whitebg .bottom-block {
    padding: 0 20px 25px;
  }
}

@media screen and (max-width: 430px) {
  .whitebg {
    width: 95%;
    min-width: 300px;
  }

  .inputblock {
    flex-wrap: wrap;
  }

  .inputblock label {
    width: 100%;
    min-width: 100%;
    margin-bottom: 8px;
  }

  .inputblock input, .inputblock .ant-input, .inputblock .ant-input-password, .inputblock .ant-select {
    width: 100% !important;
  }

  .whitebg .bottom-block {
    padding: 15px;
  }

  .inputblock input.inputcode, .inputblock .ant-input.inputcode {
    flex: none;
    width: 150px !important;
    min-width: 150px !important;
  }

  .login-form .ant-form-item-explain-error {
    margin-left: 0;
  }

  .loginbtn .btn, .loginbtn .ant-btn {
    letter-spacing: 4px;
    height: 45px;
    padding-left: 4px;
    font-size: 18px;
  }
}

@layer utilities {
  .text-balance {
    text-wrap: balance;
  }
}

.wrapper {
  min-height: 100vh;
  position: relative;
}

.main-header {
  z-index: 1000;
  box-sizing: border-box;
  background-color: #d20708;
  border-bottom: 0;
  justify-content: space-between;
  align-items: center;
  margin-left: 250px;
  padding: 0 15px;
  transition: margin-left .3s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 57px !important;
}

.main-header .navbar-nav {
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.main-header .nav-link {
  cursor: pointer;
  align-items: center;
  padding: 8px 12px;
  display: flex;
  color: #fff !important;
}

.main-header .nav-link:hover {
  opacity: .9;
}

.nav-title {
  text-shadow: 0 3px 6px #00000063;
  font-size: 22px;
  font-weight: 600;
  line-height: 22px;
  color: #fff !important;
}

.member-block {
  margin-right: 15px;
}

.member-block .member {
  color: #505050;
  background-color: #fff;
  border-radius: 3px;
  align-items: center;
  height: 30px;
  padding: 0 15px;
  font-weight: 900;
  display: flex;
  box-shadow: inset 0 2px 3px #00000029;
}

.member-block .member i {
  color: #d20708;
  margin-right: 5px;
  font-size: 14px;
}

.home {
  color: #d20708;
  background-color: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  display: flex;
}

.home:hover {
  color: #aa0606;
  background-color: #fff;
}

.elevation-1 {
  box-shadow: 0 1px 3px #0000001f, 0 1px 2px #0000003d !important;
}

.elevation-2 {
  box-shadow: 0 3px 6px #00000029, 0 3px 6px #0000003b !important;
}

.elevation-3 {
  box-shadow: none !important;
}

.elevation-4 {
  box-shadow: 0 14px 28px #00000040, 0 10px 10px #00000038 !important;
}

.main-sidebar {
  z-index: 1001;
  background-color: #fff;
  width: 250px;
  transition: width .3s, transform .3s;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden auto;
  box-shadow: 2px 0 5px #0000001a;
}

@media screen and (min-width: 992px) {
  .sidebar-collapse .main-sidebar {
    width: 73px;
    transform: none;
  }

  .sidebar-collapse .content-wrapper, .sidebar-collapse .main-footer, .sidebar-collapse .main-header {
    margin-left: 73px;
  }

  .sidebar-collapse .navbarLogo .logoimg {
    clip: rect(0px, 45px, 50px, 0px);
    width: 170px;
    height: auto;
    position: absolute;
    top: 6px;
    left: 14px;
  }

  .sidebar-collapse .nav-sidebar .nav-link p, .sidebar-collapse .nav-sidebar .nav-link .right {
    display: none !important;
  }

  .sidebar-collapse .nav-sidebar .nav-item > .nav-link.main {
    justify-content: center;
    padding: 13px 0;
  }

  .sidebar-collapse .nav-sidebar .nav-item > .nav-link.main i.nav-icon {
    width: auto;
    margin-right: 0;
    font-size: 20px;
  }

  .sidebar-collapse .nav-treeview {
    display: none !important;
  }
}

.navbarLogo {
  box-sizing: border-box;
  background-color: #e40001;
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
  height: 57px !important;
}

.navbarLogo .logoimg {
  width: 170px;
  height: auto;
  transition: all .3s;
}

.sidebar {
  padding: 10px 0;
}

.nav-sidebar {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-sidebar li {
  border-bottom: 1px dashed #e1e1e1;
}

.nav-sidebar li ul li {
  border-bottom: 0;
}

.nav-sidebar .nav-item > .nav-link.main {
  color: #505050;
  align-items: center;
  margin: 5px 0;
  padding: 13px 1rem;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.nav-sidebar .nav-item > .nav-link.main:hover {
  background-color: #f5f5f5;
}

.nav-sidebar .nav-item > .nav-link.main i.nav-icon {
  color: #f97478;
  text-align: center;
  width: 20px;
  margin-right: 10px;
}

.nav-sidebar .nav-item > .nav-link.main p {
  white-space: nowrap;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  display: flex;
}

.nav-sidebar .nav-item > .nav-link.main p i.right {
  font-size: 12px;
  transition: transform .3s;
}

.nav-treeview {
  background-color: #0000;
  max-height: 0;
  padding-left: 15px;
  list-style: none;
  transition: max-height .3s ease-in-out;
  overflow: hidden;
}

.menu-open > .nav-treeview {
  max-height: 1000px;
}

.nav-treeview .nav-item .nav-link {
  color: #505050;
  align-items: center;
  padding: 8px 1rem;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.nav-treeview .nav-item .nav-link:hover {
  background-color: #e7e7e7;
}

.nav-treeview .nav-item .nav-link .navlisticon {
  margin-right: 10px;
}

.nav-treeview .nav-item .nav-link .nav-icon {
  color: #f97478;
  font-size: 8px;
}

.nav-treeview .nav-item .nav-link p {
  white-space: nowrap;
  margin: 0;
}

.nav-treeview .nav-item .nav-link.active {
  background-color: #e7e7e7;
  font-weight: 600;
}

.menu-open > .nav-link.main p i.right:before {
  content: "";
}

.content-wrapper {
  background-color: #f6f6f6;
  min-height: calc(100vh - 94px);
  margin-top: 57px;
  margin-left: 250px;
  transition: margin-left .3s;
  padding: 10px !important;
}

.main-content {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  height: calc(100vh - 110px);
  padding: 15px;
  overflow: auto;
  box-shadow: 0 3px 6px #00000029;
}

.main-content .main-title {
  align-items: center;
  margin-bottom: 25px;
  display: flex;
}

.main-content .main-title .color-block {
  background-color: #e60012;
  width: 10px;
  height: 35px;
  margin-right: 5px;
  display: block;
}

.main-content .main-title .title-text {
  font-size: 28px;
  font-weight: 600;
}

.scrollbar::-webkit-scrollbar {
  display: none;
}

.scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-sidebar::-webkit-scrollbar {
  display: none;
}

.main-sidebar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.main-footer {
  background-color: #4a4a4a;
  margin-left: 250px;
  padding: 5px 25px 5px 5px;
  transition: margin-left .3s;
}

.main-footer .footer-text {
  color: #fff;
  text-align: right;
  font-size: 14px;
}

.btn {
  cursor: pointer;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 2px 18px;
  font-weight: 600;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 3px 6px #00000029;
}

.btn:focus {
  color: #fff;
}

.btn i {
  color: #fff;
  margin-right: 5px;
}

.newbtn-blue {
  color: #fff !important;
  background-color: #149dcc !important;
  border: 2px solid #1380a5 !important;
}

.newbtn-blue:hover {
  color: #fff !important;
  background-color: #70a9c8 !important;
  border-color: #1380a5 !important;
}

.newbtn-qua {
  color: #fff;
  background-color: #13b7a6;
  border: 2px solid #4e8781;
}

.newbtn-qua:hover {
  color: #fff;
  background-color: #8ac2bc;
}

.newbtn-red {
  color: #fff !important;
  background-color: #e13d48 !important;
  border: 2px solid #ae0c16 !important;
}

.newbtn-red:hover {
  color: #fff !important;
  background-color: #e2525c !important;
  border-color: #ae0c16 !important;
}

.newbtn-yellow {
  color: #fff;
  background-color: #f8a603;
  border: 2px solid #e29908;
}

.newbtn-yellow:hover {
  color: #fff;
  background-color: #ffbc37;
}

.newbtn-gray {
  color: #484848;
  background-color: #fff;
  border: 2px solid #c1c1c1;
}

.newbtn-gray:hover {
  color: #484848;
  opacity: .8;
  background-color: #fff;
}

.btn.searchbtn {
  width: 90px;
}

.btn.minibtn {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
}

.minibtn.newbtn-gray i {
  color: #505050;
}

.btn.minibtn i {
  margin: 0;
}

.btn.lg {
  padding: 5px 20px;
  font-size: 18px;
}

.search-block {
  background-color: #f5f5f5;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px 15px;
}

.search-result {
  margin-top: 3px;
}

.search-result span {
  color: red;
  margin: 0 5px;
  display: inline-block;
}

.searchToggle .searchicon:before {
  content: "";
  color: #505050;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.searchToggle .searchicon.off:before {
  content: "";
  color: #505050;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.search-block .search-block-line {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.search-block .search-block-line .block-line {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px 0 0;
  display: flex;
}

.search-block .search-block-line .text {
  white-space: nowrap;
  margin-right: 8px;
  font-weight: 600;
}

.search-block input, .search-block select {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  outline: 0;
  margin-right: 5px;
  padding: .375rem .75rem;
}

.search-block input:focus, .search-block select:focus {
  border: 2px solid #e6000061;
}

.search-bottom-line {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.search-text {
  width: 500px;
}

.search-block-line.btn-line {
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .search-text, .block-line.btnw, .block-line.btnw .searchbtn {
    width: 100%;
  }
}

input {
  padding: .375rem .75rem .375rem 10px;
}

select {
  padding: .375rem 1.75rem .375rem .75rem;
}

input, select {
  height: calc(1.5em + .75rem + 2px);
  font-family: 微軟正黑體, Microsoft JhengHei, PingFang TC, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
}

input[type="button"], input[type="submit"] {
  height: auto;
}

input[type="submit"] {
  margin-right: 0;
}

input[type="radio"], input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

input[type="file"] {
  border: 0;
}

textarea {
  padding: 10px;
  font-family: 微軟正黑體, Microsoft JhengHei, PingFang TC, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
}

input[type="text"]:disabled, input[type="email"]:disabled, input[type="date"]:disabled {
  background: #f5f5f5;
}

input, select, textarea {
  box-sizing: border-box;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  outline: 0;
  margin-right: 5px;
}

input:focus, textarea:focus, select:focus {
  border: 2px solid #e6000061;
  outline: 0;
}

select {
  background: #fff url("data:image/svg+xml,<svg height='10px' width='10px' viewBox='0 0 16 16' fill='%23000000' xmlns='http://www.w3.org/2000/svg'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>") no-repeat;
  appearance: none !important;
  background-position: calc(100% - .75rem) !important;
  padding-right: 30px !important;
}

label {
  align-items: center;
  font-size: 16px;
  display: inline-flex;
}

.WebTable {
  border-collapse: collapse;
  width: 100%;
}

.WebTable thead {
  text-align: center;
  color: #fff;
  background-color: #848484;
  height: 45px;
  font-weight: 600;
}

.WebTable thead tr th {
  padding: 10px;
}

.WebTable .ant-table-thead > tr > th {
  color: #fff;
  background-color: #848484;
}

.WebTable .ant-table-thead > tr > th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.WebTable .ant-table-thead > tr > th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.WebTable thead tr th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.WebTable thead tr th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.WebTable.Notification tbody tr td:nth-of-type(4) {
  text-align: left;
  width: 45%;
  padding: 5px;
}

.WebTable tbody {
  text-align: center;
}

.WebTable tbody tr {
  border-bottom: 1px solid #ccc;
  height: 45px;
}

.WebTable tbody tr td {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
  min-width: 80px;
  padding: 10px;
}

.WebTable tbody tr td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.WebTable tbody tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.WebTable thead tr th {
  white-space: nowrap;
  min-width: 80px;
}

.whitebgblock.SMS-Templates .WebTable tbody tr {
  height: auto;
  min-height: 55px;
}

.whitebgblock.SMS-Templates .WebTable tbody tr td:first-child {
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  padding: 12px;
  line-height: 1.6;
}

.whitebgblock.SMS-Templates .WebTable tbody tr td:not(:first-child) {
  text-align: center;
  vertical-align: middle;
  padding: 12px;
}

.group-block {
  border: 1px solid;
  width: 100%;
}

.main-content .group-block .group-grid {
  border-bottom: 1px solid;
  flex-wrap: nowrap;
  display: flex;
}

.main-content .group-block .group-grid:last-child {
  border-bottom: 0;
}

.main-content .group-grid .grid {
  box-sizing: border-box;
  flex-wrap: nowrap;
  width: 100%;
  display: flex;
}

.main-content .group-grid .grid.two {
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  width: 50%;
}

.main-content .group-grid .grid.two:first-of-type {
  border-right: 1px solid;
}

.main-content .group-grid .grid .grid-title {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 200px;
  min-width: 200px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

.main-content .group-grid .grid .grid-cont {
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 200px);
  min-height: 68px;
  padding: 15px 20px;
  font-size: 16px;
  display: flex;
}

.main-content .group-grid .grid .grid-cont ul, .main-content .group-grid .grid .grid-cont ol {
  margin-left: 15px;
}

.main-content .group-block.blue {
  border-color: #1a73b2;
}

.main-content .group-block.blue .group-grid {
  border-bottom-color: #1a73b2;
}

.main-content .group-block.blue .group-grid .grid.two:first-of-type {
  border-right-color: #1a73b2;
}

.main-content .group-block.blue .group-grid .grid .grid-title {
  background-color: #eff8ff;
  border-right: 1px solid #1a73b2;
}

.main-content .group-block.yellow {
  border-color: #cfa312;
}

.main-content .group-block.yellow .group-grid {
  border-bottom-color: #cfa312;
}

.main-content .group-block.yellow .group-grid .grid.two:first-of-type {
  border-right-color: #cfa312;
}

.main-content .group-block.yellow .group-grid .grid .grid-title {
  background-color: #fffcef;
  border-right: 1px solid #cfa312;
}

.main-content .group-block.green {
  border-color: #9bb367;
}

.main-content .group-block.green .group-grid {
  border-bottom-color: #9bb367;
}

.main-content .group-block.green .group-grid .grid.two:first-of-type {
  border-right-color: #9bb367;
}

.main-content .group-block.green .group-grid .grid .grid-title {
  background-color: #f4f9f7;
  border-right: 1px solid #9bb367;
}

.main-content .group-block.red {
  border-color: #ff4646;
}

.main-content .group-block.red .group-grid {
  border-bottom-color: #ff4646;
}

.main-content .group-block.red .group-grid .grid.two:first-of-type {
  border-right-color: #ff4646;
}

.main-content .group-block.red .group-grid .grid .grid-title {
  background-color: #ffefef;
  border-right: 1px solid #ff4646;
}

.main-content .group-block.gray {
  border-color: #b2b2b2;
}

.main-content .group-block.gray .group-grid {
  border-bottom-color: #b2b2b2;
}

.main-content .group-block.gray .group-grid .grid.two:first-of-type {
  border-right-color: #b2b2b2;
}

.main-content .group-block.gray .group-grid .grid .grid-title {
  background-color: #f8f8f8;
  border-right: 1px solid #b2b2b2;
}

.pagebtns {
  color: #848484;
  cursor: pointer;
  border: .5px solid #d5d5d5;
  justify-content: center;
  align-items: center;
  padding: 5px 17px;
  font-size: 16px;
  font-weight: 400;
  transition: all .3s;
  display: flex;
}

.red {
  color: red;
}

.mh {
  min-height: 200px;
}

hr {
  border: none;
  border-top: 1px solid #e1e1e1;
  margin: 25px 0;
}

.addbtn-block {
  justify-content: flex-end;
  align-items: center;
  margin: 50px 0 5px;
  display: flex;
}

.addbtn-block.plural {
  justify-content: space-between;
}

.whitebgblock {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 6px #00000029;
}

.w-100, .w100 {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.w80 {
  width: 80%;
}

.w50 {
  width: 50%;
}

.timeicon {
  cursor: pointer;
  display: table;
  position: relative;
}

.timeicon .datepickerTW {
  width: 155px;
}

.timeicon:after {
  content: "";
  color: #696969;
  pointer-events: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.timeicon .ant-picker {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  padding: 4px 11px;
  box-shadow: 0 3px 6px #00000029;
  width: 155px !important;
}

.timeicon .ant-picker-input > input {
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.pagebtn .btn {
  margin: 0 10px;
}

.tapsGroup {
  border-bottom: 2px solid #3692af;
  align-items: center;
  display: flex;
}

.tapsGroup .tapsbtn {
  width: 135px;
  height: 45px;
  color: inherit;
  background-color: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 10px 10px 0 0;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.tapsGroup .tapsbtn:hover {
  color: #fff;
  background-color: #3692af;
  border-color: #3692af;
}

.tapsGroup .tapsbtn:after {
  content: "";
  border: 15px solid #0000;
  border-top-color: #3692af;
  border-bottom-width: 0;
  width: 0;
  height: 0;
  display: none;
  position: absolute;
  bottom: -17px;
}

.tapsGroup .tapsbtn.active {
  color: #fff;
  background-color: #3692af;
  border: 1px solid #3692af;
}

.tapsGroup .tapsbtn.active:after {
  display: block;
}

.tapsGroup.Group2 {
  background-color: #3692af;
  border-bottom: 0;
  border-radius: 0 0 10px 10px;
  margin-bottom: 50px;
  padding-top: 15px;
  padding-left: 30px;
}

.tapsGroup.Group2 .tapsbtn {
  color: #fff;
  background-color: #3692af;
  border-color: #3692af;
}

.tapsGroup.Group2 .tapsbtn.active {
  color: #27829e;
  background-color: #fff;
  border-color: #fff #fff #0000;
}

.tapsGroup.Group2 .tapsbtn.active:after {
  display: none;
}

.tapsGroup.Group2 .tapsbtn i {
  color: #f90;
  margin-right: 5px;
  font-size: 8px;
}

.tapsGroup.Group2 .tapsbtn i.error {
  color: red;
}

.tapsGroup.Group2 .tapsbtn span {
  border-bottom: .5px solid #ffffffb5;
}

.groupt-title {
  font-size: 20px;
  font-weight: 900;
}

.groupt-title.plural {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.show {
  display: block;
}

.show[style*="display: none"] {
  display: none !important;
}

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

.twofillin ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.twofillin ul li {
  padding: 10px 0;
}

.twofillin .left {
  width: 150px;
}

.twofillin .right ul li {
  border-bottom: 1px solid #ccc;
}

.twofillin .right ul li:last-child {
  border-bottom: 0;
}

.fixlablewidth label {
  width: 165px;
  margin-bottom: 10px;
  margin-right: 2px;
}

.fixlablewidth.lg label {
  width: 200px;
  margin-right: 5px;
}

.fixlablewidth.xl label {
  width: 260px;
  margin-right: 5px;
}

.w60p {
  width: 60px;
}

.w120p {
  width: 120px;
}

.w70 {
  width: 70%;
}

.w120 {
  width: 120px;
}

.Mainimg {
  width: 200px;
}

.bannerctrl {
  width: 100%;
}

.totallist {
  margin-left: 10px;
  display: inline-block;
}

.minwidth {
  width: 100%;
  overflow: auto;
}

.modal {
  z-index: 1050;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}

.modal.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.modal.fade.show {
  opacity: 1;
}

.modal-backdrop {
  z-index: 1040;
  cursor: pointer;
  background-color: #00000080;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.modal-backdrop.fade.show {
  opacity: 1;
}

.modal-dialog {
  pointer-events: none;
  width: auto;
  max-width: 500px;
  margin: 1.75rem auto;
  position: relative;
}

.modal-dialog-centered {
  align-items: center;
  min-height: calc(100% - 3.5rem);
  display: flex;
}

.modal-dialog-centered:before {
  content: "";
  height: calc(100vh - 3.5rem);
  display: block;
}

.modal-dialog.modal-lg {
  max-width: 800px;
}

.modal-content {
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #0003;
  border-radius: .3rem;
  outline: 0;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
  box-shadow: 0 .25rem .5rem #00000080;
}

.modal-header {
  color: #fff;
  background-color: #d20708;
  border-bottom: 0;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
  justify-content: center;
  align-items: center;
  padding: 7px 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.modal-body {
  flex: auto;
  padding: 1rem;
  position: relative;
}

.modal-footer {
  border-top: 0;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  display: flex;
}

.modal-footer .btn {
  margin: 0 20px;
}

.modal-body .modal-line {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.modal-body .modal-line.dash {
  border-bottom: 1px dashed #dcdcdc;
  flex-wrap: wrap;
  margin: 0;
  padding: 15px 0;
}

.modal-body .modal-text {
  white-space: nowrap;
  font-weight: 600;
}

.modal-body .modal-line.dash .address {
  margin-top: 5px;
  margin-left: 80px;
}

.modal-body ul.modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-body ul.modal-list li {
  border-bottom: 1px dashed #dcdcdc;
  padding: 10px 0;
}

.modal-body ul.modal-list li .mode-listtitle {
  width: 80px;
  font-weight: 900;
  display: inline-block;
}

.modal-body ul.modal-list li input[type="text"], .modal-body ul.modal-list li select, .modal-body ul.modal-list li input[type="file"] {
  width: calc(100% - 90px);
}

.modal-password-form {
  flex-direction: column;
  gap: 16px;
  padding: 8px 0;
  display: flex;
}

.modal-password-row {
  border-bottom: 1px dashed #dcdcdc;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  display: flex;
}

.modal-password-row:last-child {
  border-bottom: none;
}

.modal-password-row .mode-listtitle {
  width: 90px;
  min-width: 90px;
  padding-top: 5px;
  font-weight: 900;
}

.modal-password-field {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.modal-password-hint {
  color: #999;
  font-size: 12px;
}

@media (max-width: 1000px) {
  .modal-dialog {
    max-width: 95%;
  }
}

@media screen and (max-width: 1599px) {
  .minwidth {
    width: 100%;
    overflow: auto;
  }

  .WebTable {
    width: 1600px;
  }
}

.pagebtnblock {
  margin-top: 30px;
  margin-bottom: 10px;
  display: inline-flex;
}

.pagebtns {
  color: #848484;
  cursor: pointer;
  border: .5px solid #d5d5d5;
  justify-content: center;
  align-items: center;
  padding: 5px 17px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.pagebtns:hover {
  color: #fff;
  background-color: #e40001;
}

.pagebtns:first-child {
  border-radius: 5px 0 0 5px;
}

.pagebtns:last-child {
  border-radius: 0 5px 5px 0;
}

.pagebtns.none {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagebtns.pageinput {
  border-left: .5px solid #d5d5d5;
  border-right: .5px solid #d5d5d5;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  display: flex;
}

.pagebtns.pageinput input {
  text-align: center;
  border: .5px solid #d5d5d5;
  width: 40px;
  padding: 2px 5px;
}

.pagebtn {
  justify-content: center;
  margin: 40px auto;
  display: flex;
}

.btn.bg {
  border: 0;
  margin: 0 10px;
  padding: 12px 22px;
  font-size: 20px;
}

.btn.bg.newbtn-gray {
  border: 1px solid #b3b3b3;
}

.changbtn {
  color: #fff;
  text-shadow: 0 3px 6px #00000029;
  cursor: pointer;
  border-radius: 50px;
  justify-content: space-around;
  align-items: center;
  width: 70px;
  margin: auto;
  padding: 5px;
  font-weight: 600;
  display: flex;
}

.changbtn.on {
  background-color: #27b799;
}

.changbtn.off {
  background-color: #b8b8b8;
}

.addicon, .delicon {
  cursor: pointer;
  font-size: 30px;
}

.addicon {
  color: #149dcc;
}

.delicon {
  color: #cc4014;
}

@media screen and (max-width: 991px) {
  .main-header {
    width: 100%;
    margin-left: 0;
  }

  .main-sidebar {
    z-index: 1050;
    height: 100vh;
    top: 0;
    transform: translateX(-250px);
  }

  .wrapper:not(.sidebar-collapse) .main-sidebar {
    transform: translateX(0);
  }

  .content-wrapper, .main-footer {
    margin-left: 0;
  }

  .sidebar-collapse .main-sidebar {
    transform: translateX(-250px);
  }
}

@media screen and (max-width: 1299px) {
  .main-content .group-grid .grid.two {
    width: 100%;
  }

  .main-content .group-block .group-grid .grid.two:first-of-type {
    border-right: 0;
  }

  .main-content .group-block.blue .group-grid .grid.two:first-of-type {
    border-bottom: 1px solid #1a73b2;
  }

  .main-content .group-block.green .group-grid .grid.two:first-of-type {
    border-bottom: 1px solid #9bb367;
  }

  .main-content .group-block.yellow .group-grid .grid.two:first-of-type {
    border-bottom: 1px solid #cfa312;
  }

  .main-content .group-block.red .group-grid .grid.two:first-of-type {
    border-bottom: 1px solid #ff4646;
  }

  .main-content .group-block.gray .group-grid .grid.two:first-of-type {
    border-bottom: 1px solid #b2b2b2;
  }
}

@media screen and (max-width: 767px) {
  .member-block {
    margin-right: 10px;
  }

  .member-block .member {
    justify-content: center;
    width: 30px;
    padding: 0;
  }

  .member-block .member span {
    display: none;
  }

  .member-block .member i {
    margin: 0;
  }

  .main-content .group-block .group-grid .grid.two:first-of-type {
    border-bottom: 0 !important;
  }

  .main-content .group-grid .grid.two, .main-content .group-grid .grid .grid-title, .main-content .group-grid .grid .grid-cont {
    width: 100%;
  }

  .main-content .group-block .group-grid .grid .grid-title {
    border-right: 0;
    padding: 15px 0;
  }

  .main-content .group-block .group-grid .grid.two:first-of-type {
    border-right: 0;
  }

  .main-content .group-grid .grid .grid-cont {
    justify-content: center;
  }

  .main-content .group-block.blue .group-grid .grid .grid-title, .main-content .group-block.green .group-grid .grid .grid-title, .main-content .group-block.gray .group-grid .grid .grid-title, .main-content .group-block.yellow .group-grid .grid .grid-title, .main-content .group-block.red .group-grid .grid .grid-title {
    border-right: 0;
  }

  .main-content .group-block.blue .group-grid .grid .grid-title {
    border-bottom: 1px solid #1a73b2;
  }

  .main-content .group-block.green .group-grid .grid .grid-title {
    border-bottom: 1px solid #9bb367;
  }

  .main-content .group-block.yellow .group-grid .grid .grid-title {
    border-bottom: 1px solid #cfa312;
  }

  .main-content .group-block.red .group-grid .grid .grid-title {
    border-bottom: 1px solid #ff4646;
  }

  .main-content .group-block.gray .group-grid .grid .grid-title {
    border-bottom: 1px solid #b2b2b2;
  }

  .main-content .group-block.blue .group-grid .grid.two:last-child .grid-title {
    border-top: 1px solid #1a73b2;
  }

  .main-content .group-block.green .group-grid .grid.two:last-child .grid-title {
    border-top: 1px solid #9bb367;
  }

  .main-content .group-block.yellow .group-grid .grid.two:last-child .grid-title {
    border-top: 1px solid #cfa312;
  }

  .main-content .group-block.red .group-grid .grid.two:last-child .grid-title {
    border-top: 1px solid #ff4646;
  }

  .main-content .group-block.gray .group-grid .grid.two:last-child .grid-title {
    border-top: 1px solid #b2b2b2;
  }

  .main-content .group-grid .grid {
    flex-wrap: wrap;
  }
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/