@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai+Looped:wght@400;500;600;700&display=swap");
.container-web-login {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.bg-main-login {
  background: url("../images/main-bg-login.png") no-repeat center;
  background-size: cover;
}

.logo {
  width: 100px;
  height: 100px;
  text-align: center;
  margin-right: auto;
  margin-top: 100px;
  margin-left: 20px;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 425px) {
  .logo {
    margin-top: 50px;
  }
}

.backdrop-login {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100%;
  transform: translateX(-50%);
  height: 445px;
  opacity: 0;
}
.backdrop-login img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media screen and (max-width: 600px) {
  .backdrop-login {
    padding: 0;
    height: 60vh;
    opacity: 1;
  }
}

.title-login {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  padding: 20px;
}

.content-login {
  margin: 0 auto;
  width: 100%;
  border-radius: 40px;
  background: #FFFFFF;
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.content-login h1 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #269E7D;
}
.content-login label {
  color: #272727;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .content-login {
    border-radius: 40px 40px 0 0;
    height: 55vmax;
    max-width: 100%;
    min-height: auto;
    position: fixed;
    bottom: 0;
  }
}

.content-main {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  border-radius: 40px;
  min-height: 600px;
  background: #FFFFFF;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-main.use-other-page {
  border-radius: 0;
  min-height: calc(100vh - 55px);
  margin-top: 55px;
}
.content-main.use-other-page.has-search {
  min-height: calc(100vh - 180px);
  margin-top: 180px;
}
.content-main h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}
.content-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
.content-main label {
  color: #272727;
  font-weight: 500;
  margin-bottom: 10px;
  margin-right: auto;
}
@media screen and (max-width: 500px) {
  .content-main {
    border-radius: 40px 40px 0 0;
    min-height: 70vmax;
    max-width: 100%;
  }
  .content-main h1 {
    font-size: 18px;
    text-align: center;
  }
  .content-main h3 {
    font-size: 13px;
    text-align: center;
  }
}

.btn-web {
  border-radius: 25px;
  height: 50px;
  max-width: 315px;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  transition: ease 0.3s;
}
.btn-web.primary {
  background: #269E7D;
}
.btn-web.primary:hover {
  background: #1f8166;
}

a.btn-web {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}
a.btn-web:hover {
  color: #FFFFFF;
}
a.btn-web.success {
  background: #3872E1;
}
a.btn-web.success:hover {
  background: #205ed5;
}
a.btn-web.outline-success {
  background: #FFFFFF;
  border: 1px solid #3872E1;
  color: #3872E1;
}
a.btn-web.outline-success:hover {
  background: #ededed;
}
a.btn-web.disabled {
  pointer-events: none;
  background: #EDEDED;
  color: #979898;
}
a.btn-web.disabled:hover {
  background: #E5E5E5;
}

.input-custom {
  background-color: #F3F5FA;
  border: none !important;
  color: #272727;
  border-radius: 10px;
  padding: 11px 15px;
  margin: 0 auto;
  font-size: 18px;
  width: 100%;
  height: 50px;
  outline: none;
  margin-bottom: 15px;
}
.input-custom::-moz-placeholder {
  color: #272727;
}
.input-custom::placeholder {
  color: #272727;
}
.input-custom:focus {
  border: none !important;
  padding: 11px 15px;
}
.input-custom:-webkit-autofill, .input-custom:-webkit-autofill:hover, .input-custom:-webkit-autofill:focus {
  border: 1px solid transparent;
  -webkit-text-fill-color: #272727;
  font-size: 18px;
  box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.input-custom::-webkit-outer-spin-button, .input-custom::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.title-user {
  margin: 50px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-user h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0;
  color: #269E7D;
}
@media screen and (max-width: 500px) {
  .title-user {
    padding: 0 15px;
  }
  .title-user h1 {
    font-size: 24px;
  }
}

.btn-logout {
  background: #FFFFFF;
  border-radius: 10px;
  height: 40px;
  width: 40px;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  transition: ease 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-logout:hover {
  background: #db0000;
}
.btn-logout:hover svg * {
  fill: #ffffff;
}

.title-detail {
  margin-bottom: 30px;
}
.title-detail .list-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.title-detail .list-detail .list {
  color: #272727;
  font-size: 24px;
}
.title-detail .list-detail .detail {
  color: #272727;
  font-weight: 600;
  font-size: 26px;
}
@media screen and (max-width: 500px) {
  .title-detail {
    padding: 0 15px;
  }
  .title-detail .list-detail {
    justify-content: space-between;
  }
  .title-detail .list-detail .list {
    font-size: 16px;
  }
  .title-detail .list-detail .detail {
    font-size: 18px;
  }
}

.link-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 10px;
  color: #272727 !important;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  max-width: 315px;
  width: 100%;
  height: 50px;
  transition: ease 0.3s;
}
.link-bar .icon {
  width: 15px;
  height: 15px;
  border-radius: 5px;
  margin-right: 10px;
}
.link-bar .text.w-calc {
  width: calc(100% - 25px);
}
.link-bar .arrow {
  height: 15px;
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.link-bar .arrow svg {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.link-bar .arrow svg * {
  fill: #272727;
}
.link-bar.search {
  background-color: #E2F5F0;
}
.link-bar.search .icon {
  width: 25px;
  height: 25px;
  border-radius: 0;
  margin-top: -5px;
}
.link-bar.search .icon svg {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.link-bar.search .arrow svg * {
  fill: #686A6E;
}
.link-bar.search:hover {
  background-color: #c7ece2;
}
.link-bar.info {
  background-color: #F4F5F5;
  color: #676A6F !important;
}
.link-bar.info .icon {
  background-color: #676A6F;
}
.link-bar.info .arrow svg * {
  fill: #676A6F;
}
.link-bar.info:hover {
  background-color: #e1e4e4;
}
.link-bar.danger {
  background-color: #FDEBEA;
  color: #ED4234 !important;
}
.link-bar.danger .icon {
  background-color: #ED4234;
}
.link-bar.danger .arrow svg * {
  fill: #ED4234;
}
.link-bar.danger:hover {
  background-color: #faccc9;
}
.link-bar.success {
  background-color: #E8F6E5;
  color: #1FA700 !important;
}
.link-bar.success .icon {
  background-color: #1FA700;
}
.link-bar.success .arrow svg * {
  fill: #1FA700;
}
.link-bar.success:hover {
  background-color: #d1edca;
}
.link-bar.detail {
  background-color: #ffffff;
  color: #676A6F;
}
.link-bar.detail .arrow svg * {
  fill: #686A6E;
}
.link-bar.detail:hover {
  background-color: #ededed;
}

.content-chart {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 250px;
  width: 100%;
}
.content-chart #chartdiv {
  height: 100%;
  width: 100%;
}

.container-top-bar {
  position: fixed;
  max-width: 738px;
  width: 100%;
  top: 0;
  height: 55px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-bottom: 5px solid #F3F5FA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}
.container-top-bar .btn-back-page {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-top-bar .title-top-bar {
  font-size: 16px;
  color: #272727;
  font-weight: 500;
}
.container-top-bar .btn-home {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-top-bar-search {
  position: fixed;
  max-width: 738px;
  width: 100%;
  top: 0;
  height: 180px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-bottom: 5px solid #F3F5FA;
  z-index: 99;
}
.container-top-bar-search .top-bar {
  display: flex;
  justify-content: space-between;
  height: 50px;
  align-items: center;
}
.container-top-bar-search .btn-back-page {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-top-bar-search .title-top-bar {
  font-size: 16px;
  color: #272727;
}
.container-top-bar-search .btn-home {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-search {
  background: #E2F5F0;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.card-search .list-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-search .list-detail .title {
  color: #272727;
  font-size: 18px;
  font-weight: 500;
}
.card-search .list-detail .list {
  color: #272727;
  font-size: 16px;
}
.card-search .list-detail .detail {
  color: #686A6E;
  font-size: 18px;
  font-weight: 500;
}
.card-search .list-detail a {
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  .card-search .list-detail .detail {
    max-width: 185px;
    text-align: right;
  }
  .card-search .list-detail .detail.w-100 {
    max-width: 100%;
    text-align: left;
  }
}

.content-user {
  width: 100%;
}
.content-user .list-detail-user {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content-user .list-detail-user .list {
  color: #272727;
  font-size: 16px;
}
.content-user .list-detail-user .detail {
  color: #686A6E;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .content-user .list-detail-user {
    align-items: flex-start;
  }
  .content-user .list-detail-user .detail {
    max-width: 185px;
    text-align: right;
  }
}

hr.color-bg-5px {
  border: 0;
  border-top: 5px solid #F3F5FA;
  margin: 20px -30px;
}

.table-web-custom th {
  color: #272727;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 0;
}
.table-web-custom td {
  font-size: 16px;
  font-weight: 500;
  color: #272727;
  padding: 15px 0;
}
.table-web-custom tfoot td {
  border: 0;
}

.alert-bar {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #E1F1FF;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-bar.danger {
  background-color: #FDEBEA;
  color: #ED4234;
}
.alert-bar.success {
  background-color: #E8F6E5;
  color: #1FA700;
}

.text-blue-50 {
  color: #686A6E;
}

.button-bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 12px 15px;
  border-radius: 20px;
  color: #272727 !important;
  background-color: #F3F5FA;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  width: 100%;
  border: 0;
  transition: ease 0.3s;
}
.button-bar .icon {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 15px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-bar .icon svg {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.button-bar .arrow {
  height: 15px;
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.button-bar .arrow svg {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.button-bar .arrow svg * {
  fill: #686A6E;
}
.button-bar:hover {
  background-color: #bde0ff;
}

.text-success {
  color: #269E7D !important;
}

.text-green {
  color: #1FA700 !important;
}

.qrcode-image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: relative;
}
.qrcode-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a.btn-web.outline-primary, div.btn-web.outline-primary {
  background: #FFFFFF;
  border: 1px solid #3872E1;
  color: #3872E1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
a.btn-web.outline-primary svg path, div.btn-web.outline-primary svg path {
  transition: all 0.3s;
}
a.btn-web.outline-primary:hover, div.btn-web.outline-primary:hover {
  color: #fff;
  background: #205ed5;
}
a.btn-web.outline-primary:hover svg path, div.btn-web.outline-primary:hover svg path {
  fill: #fff;
}
a.btn-web.outline-success, div.btn-web.outline-success {
  background: #FFFFFF;
  border: 1px solid #269E7D;
  color: #269E7D;
}
a.btn-web.outline-success:hover, div.btn-web.outline-success:hover {
  background: #ededed;
}

.upload-image {
  position: relative;
  width: 100%;
  max-width: 315px;
  height: 315px;
  border-radius: 10px;
  background-color: #F1F5FD;
  cursor: pointer;
  overflow: hidden;
}
.upload-image .delete-upload-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #FFE4E2;
  border-bottom-left-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.upload-image .delete-upload-image:hover {
  filter: brightness(0.95);
}
.upload-image input {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
}
.upload-image .no-upload-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.upload-image .no-upload-image svg {
  width: 100%;
  height: 100%;
}
.upload-image .show-upload-image {
  width: 100%;
  display: none;
}
.upload-image .show-upload-image img {
  width: 100%;
}
.upload-image[data-status="1"] {
  height: auto;
  cursor: default;
}
.upload-image[data-status="1"] .no-upload-image {
  display: none;
}
.upload-image[data-status="1"] .show-upload-image {
  display: block;
}
.upload-image[data-status="1"] .delete-upload-image {
  display: flex;
}

hr.color-bg-1px {
  border: 0;
  border-top: 1px solid #b3b4b6;
  margin: 0;
  width: 100%;
}

.no-payment-data {
  width: calc(100% + 60px);
  height: calc(100svh - 55px);
  margin: -30px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.no-payment-data .no-data-icon {
  margin: -10svh 0 30px 0;
}
.no-payment-data .no-data-text {
  font-size: 20px;
  color: #979898;
  text-align: center;
}

.checkbox-group.checkbox-success input[type=checkbox]:checked + label, .checkbox-group input[type=radio]:checked + label {
  background-color: #269E7D;
  border: 1px solid #269E7D;
}

.content-main.use-other-page.min-h-100 {
  min-height: 100vh;
}

.receipt-page {
  margin-top: 0;
  border-radius: 0;
  min-height: 100svh;
}
.receipt-page .receipt-content-list {
  padding: 10px 15px;
  width: 100%;
}
.receipt-page .receipt-content-list .receipt-topic {
  font-size: 20px;
  font-weight: 600;
  width: 80%;
  min-width: 320px;
  max-width: 500px;
  text-align: center;
  margin: 0 auto 20px;
}
.receipt-page .receipt-content-list .receipt-content {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.receipt-page .receipt-content-list .receipt-content .receipt-content-topic {
  font-weight: 500;
  margin-right: 15px;
}
@media print {
  .container-web {
    display: none;
  }
  .print-content {
    display: block;
    background-color: white;
    padding: 10px 15px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans Thai Looped", sans-serif;
  font-size: 16px;
  color: #272727;
  background-color: #E2F5F0;
  font-weight: 400;
}

.container-web {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 738px) {
  .container-web {
    padding: 0;
  }
}

.fill-danger svg * {
  fill: #ED4234 !important;
}/*# sourceMappingURL=main.css.map */