:root {
  font-family: Noto Sans JP, sans-serif;
  line-height: 1.5;
  color-scheme: light dark;
  background-color: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}

body {
  margin: 0;
  font-family: Noto Sans JP, sans-serif;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  min-height: 100svh;
  min-width: 1400px;
  color: #191919;
}

a:hover {
  color: #535bf2;
}

#app {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.main-content {
  padding-top: 123px;
  flex: 1;
  background: #fff;
  padding-bottom: 120px;
}

.main-container {
  width: 978px;
  margin: 110px auto 130px;
  padding: 0;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: .6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color .25s;
}

button:hover {
  border-color: #646cff;
}

button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.card {
  padding: 2em;
}

#app {
  width: 100%;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #fff;
  }

  a:hover {
    color: #747bff;
  }

  button {
    background-color: #f9f9f9;
  }
}

.container {
  width: 980px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.col {
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  flex: 1 0 0;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-item {
  flex: 0 0 20%;
  max-width: 20%;
}

.dropdown-container {
  position: relative;
  width: 274px;
}

/* Search */
.search-input {
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: #3a3a3a;
  height: 36px;
  font-size: 14px;
  border-radius: 5px;
  width: 234px;
  border: 0 !important;
  background: #f9f9f9 url('/assets/front/images/icon-search.png') no-repeat right 20px center;
}

.search-input ::placeholder {
  color: #9b9b9b;
  font-size: 14px;
  font-family: Noto Sans JP, sans-serif;
  opacity: 1;
}

.search-input:focus {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.search-input:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.search-input:active {
  outline: none;
  box-shadow: none;
  border-color: transparent;
}

.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  border: 0;
  border-top: none;
  max-height: 200px;
  z-index: 10;
  background: #f9f9f9;
  margin-top: 6px;
  color: #3a3a3a;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d0d0d0 transparent;
}

.dropdown-list.active {
  display: block;
}

.dropdown-list::-webkit-scrollbar {
  width: 4px;
}

.dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-list::-webkit-scrollbar-thumb {
  background-color: #d0d0d0;
  border-radius: 2px;
}

.dropdown-item {
  padding: 8px 12px;
  cursor: pointer;

  a {
    text-decoration: none;
    color: inherit;
  }
}

.dropdown-item:hover {
  background-color: #f9f9f9;
}

.dropdown-item.hidden {
  display: none;
}

/* End Search */

/* Header menu */
.menu-wrapper {
  position: relative;
  display: inline-block;
}

.menu-wrapper .menu-label {
  cursor: pointer;
  color: #000;
  font-size: 19px;
  padding-left: 0;
  white-space: nowrap;
  max-width: 125px;
}

@media only screen and (max-width: 1600px) {
  .menu-wrapper .menu-label {
    font-size: 16px;
  }
}

.menu-wrapper .menu-dropdown {
  display: none;
  width: 157px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 0;
  border: 0;
  z-index: 9999;
  color: #000;
  background: #f9f9f9;
  /* margin-top: 8px; */
  font-size: 13px;
  font-weight: 400;
}

.menu-wrapper.active .menu-dropdown {
  display: block;
}

.menu-wrapper .menu-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-wrapper .menu-dropdown li {
  line-height: 20px;
}

.menu-wrapper .menu-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.menu-wrapper .menu-item:hover {
  background-color: #f8f8f8;
}

/* End Header menu */

/* Header */
.header {
  background: #fff;
  padding: 20px 30px 20px 25px;
  border-bottom: 3px solid #ddd;
}

@media only screen and (max-width: 1600px) {
  .header {
    padding-right: 25px;
  }
}

.header .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.header .header__top>div {
  display: flex;
  justify-content: flex-start;
}

.header .logo {
  height: 40px;
}

.header .btn {
  border-radius: 20px;
  height: 45px;
  display: flex;
  align-items: center;
}

.header .btn.login {
  background: #2fa41f;
  color: #fff;
  border-radius: 20px;
  font-size: 19px;
  font-weight: 700;
  padding: 0 20px;
}

.header .search {
  margin-left: 144px;

  .dropdown-list {
    .dropdown-item {
      padding: 0;

      a {
        width: 100%;
        height: 100%;
        display: block;
        padding: 8px 12px;
      }
    }
  }
}

@media only screen and (max-width: 1600px) {
  .header .search {
    margin-left: 30px;
  }
}

.header .company {
  margin-right: 41px;
}

@media only screen and (max-width: 1600px) {
  .header .company {
    margin-right: 25px;
  }
}

.header .main-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-right: 166px;
}

@media only screen and (max-width: 1600px) {
  .header .main-item {
    margin-right: 30px;
  }
}

.header .flex-center {
  display: flex;
  align-items: center;
}

/* End Header */

.login-area {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 11px;
}

.login-area .mypage {
  background: #2fa41f;
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  border-radius: 20px;
  width: auto;
  padding: 0 16px;
  white-space: nowrap;
}

@media only screen and (max-width: 1600px) {
  .login-area .mypage {
    font-size: 16px;
  }
}

.login-area .mypage img {
  margin-right: 14px;
}

.login-area .logout {
  height: 35px;
  background: #a5a5a5;
  display: flex;
  align-items: center;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
}

/* Footer */
.footer {
  color: #fff;
  background: #242426;
}

.footer .footer__top {
  width: 822px;
  margin: 0 auto;
  background: #242426;
  padding-top: 30px;
  padding-bottom: 42px;
}

.footer .footer__top-line1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 17px;
}

.footer .footer__top-line1 a {
  color: #fff;
}

.footer .footer__top-line1 a:first-child {
  margin-right: 53px;
}

.footer .footer__top-line1 a:nth-child(2) {
  margin-right: 41px;
}

.footer .footer__top-line2 {
  margin-top: 43px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .footer__top-line2>div {
  font-weight: 400;
  line-height: 27px;

  a {
    font-weight: 400;
  }
}

.footer .footer__bottom {
  background: #000;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

/* End Footer */


/* Side Menu */
.side-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  right: 0;
  bottom: 340px;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  z-index: 999;
}

.side-menu.close {
  width: 56px;
  height: 38px;
  background: transparent url('/assets/front/images/icon-talk-open.png') no-repeat center center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-menu.close .menu-list {
  display: none;
}

.side-menu.open {
  width: 255px;
  height: 105px;
  background: transparent url('/assets/front/images/icon-talk-close.png') no-repeat center center;
  background-size: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-menu.open .menu-list {
  width: calc(100% - 35px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: transparent;
}

.side-menu>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-menu .toggle-button {
  width: 16px;
  height: 100%;
  padding: 0;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.side-menu .toggle-button:focus-visible {
  background: transparent !important;
  outline: unset;
}

.side-menu .toggle-button:focus {
  background: transparent !important;
  outline: unset;
}

.side-menu .close-talk {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.side-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  height: 35px;
  font-size: 15px;
  color: #333;
  padding-left: 14px;

  a {
    width: 100%;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.side-menu .menu-item img {
  margin-right: 7px;
}

.side-menu .slide-fade-enter-active,
.side-menu .slide-fade-leave-active {
  transition: all .2s ease;
}

.side-menu .slide-fade-enter-from,
.side-menu .slide-fade-leave-to {
  opacity: 0;
  transform: translate(10px);
}

/* End Side Menu */

.input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.input::placeholder {
  color: #b7b7b7;
}

.input:focus {
  border-color: #d3d3d3;
}

.note {
  color: #6b6b6b;
  font-size: 14px;
  margin-bottom: 27px;
}

.custom-checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #eeeeee;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.custom-checkbox:before {
  content: "";
  inset: 0;
  background: #eeeeee;
  border-radius: 3px;
  transition: background 0.2s;
  border: 1px solid #eeeeee;
  width: 18px;
  height: 18px;
}

.custom-checkbox:checked:before {
  background: #00b050;
}

.custom-checkbox:checked {
  border-color: #eeeeee;
}

.custom-checkbox2 {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #fff;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #fff;
}

.custom-checkbox2:before {
  content: "";
  inset: 0;
  background: #f9f9f9;
  border-radius: 3px;
  transition: background 0.2s;
  border: 1px solid #fff;
  width: 18px;
  height: 18px;
}

.custom-checkbox2:checked:before {
  background: #2fa41f;
}

.custom-checkbox2:checked {
  border-color: #2fa41f;
}

.custom-checkbox3 {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.custom-checkbox3:before {
  width: 16px;
  height: 16px;
}

.collapse1 {
  cursor: pointer;
}

.arrow-icon {
  transition: transform 0.2s ease;
  vertical-align: middle;
}

.arrow-icon.active {
  transform: rotate(180deg);
}

/* Collapsible wrapper */
.process-collapsible {
  overflow: hidden;
  transition: max-height 260ms ease, opacity 200ms ease;
  will-change: max-height, opacity;
}

.process-collapsible.is-closed {
  max-height: 0 !important;
  opacity: 0;
}

.tab-title {
  font-size: 26px;
  font-weight: 500;
  border-left: 6px solid #2fa41f;
  padding-left: 20px;
}

.file-input {
  display: none;
}

.file-label {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  background-color: #6e6e6e;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  font-size: 12px;
  font-weight: 400;
  line-height: 25px;
}

.file-label:hover {
  background-color: #555;
}

.btn-add {
  width: 54px;
  height: 54px;
  background: transparent url("/assets/front/images/add.png") no-repeat center center;
  background-size: 100% 100%;

  &:hover,
  &:active,
  &:focus,
  &:focus-visible,
  &:focus-within,
  &:visited {
    border: none;
    outline: none;
  }
}

.btn-member {
  width: 260px;
  height: 60px;
  background: #2fa41f;
  font-size: 19px;
  font-weight: 400;
}

.btn-member {
  font-size: 22px;
  font-weight: bold;
  height: 70px;
  width: 290px;
  background: #2fa41f;
  border-radius: 35px;
  color: #fff;

  &:hover {
    background: #2fa41f;
    border-radius: 35px;
    color: #fff;
  }
}

.btn-change {
  width: 260px;
  height: 60px;
  background: #2fa41f;
  font-size: 19px;
  font-weight: 400;
  color: #fff;
  border-radius: 30px;
  margin: 0 auto;
  margin-top: 50px;
}

.btn-orange {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background: #e58a2e;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

  &:hover,
  &:focus,
  &:active {
    background: #e58a2e !important;
    color: #fff !important;
    border-color: #e58a2e !important;
  }
}

.btn-delete {
  background: #f61c1c;
  height: 20px;
  width: 46px;
  font-size: 11px;
  font-weight: 400;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;

  &:hover,
  &:focus,
  &:active {
    background: #f61c1c !important;
    color: #f1f1f1 !important;
    border-color: #f61c1c !important;
  }
}

.btn-submit {
  background: #2fa41f;
  border-radius: 26px;
  width: 200px;
  height: 52px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  font-weight: 500;

  &:hover,
  &:focus,
  &:active {
    background: #2fa41f !important;
    color: #fff !important;
    border-color: #2fa41f !important;
  }
}

.btn-back {
  background: #2fa41f;
  border-radius: 20px;
  width: 171px;
  height: 44px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;

  &:hover,
  &:focus,
  &:active {
    background: #2fa41f !important;
    color: #fff !important;
    border-color: #2fa41f !important;
  }
}

.btn-order {
  width: fit-content;
  height: 35px;
  background: #2fa41f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;

  &:hover,
  &:focus,
  &:active {
    background: #2fa41f !important;
    color: #fff !important;
    border-color: #2fa41f !important;
  }
}

.btn-cancel {
  width: 129px;
  height: 35px;
  background: #6e6e6e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 500;
}

.form-control {
  &.small {
    width: 60px;
    border-radius: 0;
    border-color: #414141;
    margin-right: 8px;
    font-weight: bold;
    font-size: 15px;
    height: 42px;
  }

  &.normal {
    width: 100%;
    flex: 0 0 100%;
    border-color: #6e6e6e;
    border-radius: 10px;
    height: 42px;
    font-size: 14px;

    ~.btn {
      height: 42px;
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
    }

    &::placeholder {
      color: #d4d4d4;
      font-size: 14px;
    }
  }

  &.is-invalid {
    border-color: #e71615;
  }
}

.input-group {
  .form-control {
    width: auto;
    flex: 1 1 auto;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1111;
  display: none;

  /* Spinner styles */
  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* semi-transparent overlay */
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }

  &:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border: 5px solid #fff;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
    z-index: 2;
  }
}

@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mb-27 {
  margin-bottom: 27px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-53 {
  margin-bottom: 53px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-114 {
  margin-bottom: 114px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mt-11 {
  margin-top: 11px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-43 {
  margin-top: 43px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

.mt-84 {
  margin-top: 84px !important;
}

.ml-30 {
  margin-left: 30px;
}

.pl-49 {
  padding-left: 49px;

  >span {
    padding-right: 20px;
  }
}

.pt-23 {
  padding-top: 23px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-22 {
  padding-bottom: 22px;
}

.p-10px {
  padding: 10px !important;
}

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

.text-normal {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 23px;
}

.text-small {
  font-size: 13px;
  font-weight: 400;
}

.text-535353 {
  color: #535353;
}

.text-pre {
  white-space: pre-line;
}

.large-text {
  font-size: 40px;
  font-weight: 500;
}

.font-9px {
  font-size: 9px;
  display: flex;
  align-items: flex-end;
  font-weight: 300;
  margin-bottom: -4px;
}

.font-10px {
  font-size: 10px;
}

.font-11px {
  font-size: 11px;
}

.font-12px {
  font-size: 12px;
}

.font-13px {
  font-size: 13px !important;
  letter-spacing: 0.07em;
}

.font-14px {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.font-15px {
  font-size: 15px !important;
}

.font-16px {
  font-size: 16px !important;
}

.font-17px {
  font-size: 17px !important;
}

.font-18px {
  font-size: 18px !important;
  letter-spacing: 0.1em !important;
}

.font-19px {
  font-size: 19px;
}

.font-20px {
  font-size: 20px !important;
}

.font-21px {
  font-size: 21px;
}

.font-22px {
  font-size: 22px;
}

.font-23px {
  font-size: 23px;
}

.font-24px {
  font-size: 24px;
}

.font-25px {
  font-size: 25px !important;
  font-weight: 400 !important;
}

.font-26px {
  font-size: 26px;
}

.font-28px {
  font-size: 28px !important;
}

.font-29px {
  font-size: 29px;
}

.font-30px {
  font-size: 30px;
}

.font-34px {
  font-size: 34px;
}

.red {
  color: #e71615;
}

.text-red {
  color: #ff2e2e;
}

.green-text {
  color: #2fa41f;
}

.blue-text {
  color: #285FB5;
}

.light {
  font-weight: 300;
}

.width-100 {
  width: 100%;
}

.w-150 {
  width: 150px !important;
}

.w-288 {
  width: 288px !important;
}

.w-fit-content {
  width: fit-content;
}

.max-w-106 {
  max-width: 106px;
}

.max-w-288 {
  max-width: 288px;
}

.gap-1px {
  gap: 1px !important;
}

.gap-3px {
  gap: 3px !important;
}

.gap-5px {
  gap: 5px !important;
}

.gap-10px {
  gap: 10px !important;
}

.gap-20px {
  gap: 20px !important;
}

.flex-basis-420 {
  flex-basis: 420px !important;
  width: 420px !important;
}

.line-height-normal {
  line-height: 1;
}

.line-height-26 {
  line-height: 26px;
}

.line-height-30 {
  line-height: 30px;
}

.line-height-36 {
  line-height: 36px;
}

.tag-green {
  border-left: 4px solid #2fa41f;
  padding-left: 12px;
  font-size: 20px;
  font-weight: 500;
}

.my-page {
  padding-top: 0;

  .head {
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 400;

    img {
      width: 100%;
    }

    .position-absolute {
      position: absolute;
      left: 50px;
    }
  }

  .head-title {
    font-size: 32px;

    .small {
      font-size: 16px;
    }
  }
}

.my-page-container {
  width: 1230px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;

  .page-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
  }

  .page-content {
    >.row {
      margin-left: -12px;
      margin-right: -12px;

      .col {
        padding-left: 12px;
        padding-right: 12px;

        .total {
          padding: 20px;
          background: #f9f9f9;
          border-radius: 20px;
        }

        hr {
          background: #e0e0e0;
          height: 1px;
          width: 100%;
        }
      }
    }

    &.step2 {
      >.row {
        margin-left: -19px;
        margin-right: -19px;

        .col {
          padding-left: 19px;
          padding-right: 19px;

          &:nth-child(2) {
            flex: 0 0 390px;
            max-width: 390px;
          }

          .total {
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
            border: 1px solid #e0e0e0;
          }

          hr {
            background: #e0e0e0;
            height: 1px;
            width: 100%;
          }
        }
      }
    }
  }

  .checked-button {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    .btn-checked {
      font-size: 16px;
      font-weight: 400;
      border: 1px solid #333333;
      border-radius: 0;
      padding: 0 8px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  .process-content {
    display: flex;
    flex-direction: column;
    gap: 24px;

    .process-item {
      background: #f9f9f9;
      border-radius: 20px;
      padding: 20px 35px
    }

    .process-title {
      padding-left: 10px;
      border-left: 4px solid #2fa41f;
      font-size: 18px;
      font-weight: 500;
    }

    .table {
      background: #f9f9f9;

      thead {
        tr {
          border-top-color: transparent;
          background: #f9f9f9;
          border-bottom-color: #fff;

          th {
            &:nth-child(2) {
              text-align: left;
            }
          }
        }
      }

      th {
        background: #f9f9f9;
        font-size: 13px;
        font-weight: 400;
        border-color: transparent;
        text-align: center;
      }

      td {
        background: #f9f9f9;
        border-color: transparent;
        vertical-align: middle;

        input[type="number"] {
          /* Hide spinners in Chrome, Safari, Edge, Opera */
          -webkit-appearance: none;
          -moz-appearance: textfield;
          appearance: textfield;
          padding-left: 5px;
          padding-right: 5px;
          text-align: center;
        }

        /* Hide spinners in Firefox */
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
          -webkit-appearance: none;
          margin: 0;
        }

        input[type="number"]::-ms-input-spinner {
          display: none;
        }
      }

      tbody {
        tr {
          border-color: #fff;
        }
      }
    }
  }
}
.modal-custom {
  .btn-close {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    transform: translate(0%, -110%);
    opacity: 1;

    img {
      width: 100%;
      height: 100%;
    }
  }

  .modal-body {
    padding: 40px;
  }
}

.url-text {
  color: #0261ff;
  cursor: pointer;
}

.qr-style {
  width: 19%;
  height: auto;
}
