@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:wght@100;300;400;500;600;700&display=swap);
.button-component {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Sarabun", sans-serif;
  font-size: 16px;
  line-height: 20px;
  min-width: 120px;
  outline: none;
  padding: 0 16px;
  transition: all 100ms ease-in-out; }
  .button-component:active, .button-component:focus, .button-component:visited {
    outline: none; }
  .button-component.outline.primary {
    border: 1px solid #009640;
    background-color: transparent;
    color: #009640; }
    .button-component.outline.primary:hover {
      background-color: #edf8f1;
      border: 1px solid #4cb579;
      color: #4cb579; }
    .button-component.outline.primary:disabled {
      background-color: #fafafa;
      border: 1px solid #cccccc;
      color: #cccccc;
      cursor: not-allowed; }
  .button-component.filled.primary {
    background-color: #009640;
    color: #ffffff; }
    .button-component.filled.primary:hover {
      background-color: #4cb579; }
    .button-component.filled.primary:disabled {
      background-color: #e5f4eb;
      color: #99d5b2;
      cursor: not-allowed; }
  .button-component.non-filled.primary {
    background-color: #ffffff;
    color: #009640; }
    .button-component.non-filled.primary:hover {
      color: #4cb579;
      text-decoration: underline; }
    .button-component.non-filled.primary:disabled {
      color: #cccccc;
      cursor: not-allowed;
      text-decoration: none; }
  .button-component.small {
    height: 32px; }
  .button-component.medium {
    height: 40px; }
  .button-component.large {
    height: 48px; }

.collapse-container {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: border 150ms ease-in-out;
  overflow: hidden; }
  .collapse-container.active {
    border: 1px solid #009640; }
    .collapse-container.active .header-section {
      color: #009640; }
    .collapse-container.active .content-section {
      height: auto;
      max-height: 500px;
      padding: 0 20px 20px; }
  .collapse-container .header-section {
    color: #323232;
    font-family: "Sarabun", sans-serif;
    padding: 15px 40px 15px 20px;
    position: relative;
    transition: color 150ms ease-in-out; }
    .collapse-container .header-section .expand-icon {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translate(0, -50%); }
  .collapse-container .content-section {
    color: #323232;
    height: 0;
    max-height: 0;
    padding: 0 20px;
    transition: max-height 150ms ease-in-out, padding 150ms ease-in-out; }

.modal-container {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000; }
  .modal-container .modal-content-container {
    background-color: #ffffff;
    border-radius: 8px;
    left: 50%;
    padding: 32px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 540px;
    z-index: 1000;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25); }
    .modal-container .modal-content-container .modal-header-container {
      font-family: "Prompt", sans-serif;
      font-size: 16px;
      line-height: 18px;
      font-weight: 600;
      position: relative;
      text-align: left; }
      .modal-container .modal-content-container .modal-header-container .close-icon {
        color: #666666;
        cursor: pointer;
        position: absolute;
        font-size: 20px;
        font-weight: 100;
        right: 0px;
        top: -20px; }
    .modal-container .modal-content-container .modal-body-container {
      font-family: "Prompt", sans-serif;
      font-size: 20px;
      line-height: 24px;
      max-height: 70vh;
      padding-bottom: 12px;
      overflow: auto; }
  .modal-container .modal-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 900; }

@media (max-width: 767px) {
  .modal-container .modal-content-container {
    padding: 32px 16px;
    width: 90%; }
    .modal-container .modal-content-container .modal-header-container {
      font-size: 12px; }
      .modal-container .modal-content-container .modal-header-container .close-icon {
        right: -8px;
        top: -24px; } }

.fail-modal-container .modal-content-container {
  text-align: center; }
  .fail-modal-container .modal-content-container .fail-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .fail-modal-container .modal-content-container .fail-modal .fail-icon {
      width: 64px;
      margin-bottom: 15px; }
      .fail-modal-container .modal-content-container .fail-modal .fail-icon img {
        width: 100%; }
    .fail-modal-container .modal-content-container .fail-modal .title {
      color: #000000;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px; }
    .fail-modal-container .modal-content-container .fail-modal .detail {
      font-weight: 400;
      font-size: 16px;
      font-family: "Sarabun", sans-serif;
      margin-bottom: 20px;
      white-space: pre-wrap; }
    .fail-modal-container .modal-content-container .fail-modal .accept-button {
      height: 40px;
      font-family: "Prompt", sans-serif; }

@media (min-width: 992px) {
  .fail-modal-container .modal-content-container {
    width: 25%; } }


.Popup {
  color: #353535; }
  .Popup .ant-modal-content {
    border: 4px solid #00973d;
    padding: 10px; }
    .Popup .ant-modal-content .ant-modal-header {
      border: 0px;
      text-align: center;
      font-family: "Sarabun", sans-serif;
      border-radius: 5px 5px 0px 0px; }
      .Popup .ant-modal-content .ant-modal-header .ant-modal-title {
        font-size: 24px; }
        @media (min-width: 768px) {
          .Popup .ant-modal-content .ant-modal-header .ant-modal-title {
            font-size: 36px; } }
    .Popup .ant-modal-content .ant-modal-body {
      padding-top: 0px; }
    .Popup .ant-modal-content .ant-modal-footer {
      display: none; }

.Loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 340px; }

.page-loading {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1010;
  background-color: #00000063;
  display: none; }
  .page-loading.active {
    display: block; }
  .page-loading .loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    background-color: #ffffffcf;
    transform: translate(-50%, -50%);
    padding: 40px; }

.card {
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin: 10px 15px;
  padding: 30px 10px;
  max-width: 500px; }

@media (min-width: 500px) {
  .card {
    margin: 10px auto; } }

.section {
  max-width: 492px;
  margin: auto;
  padding: 0px 20px; }
  .section.full-width {
    max-width: 100%;
    padding: unset; }
  .section.grey-bg {
    background: #f4f6f9; }
  .section .grey-bg-section {
    background: #f4f6f9;
    padding-bottom: 15px; }
    .section .grey-bg-section .card-bg-container {
      background: #ffffff; }

@media (min-width: 768px) {
  .section {
    max-width: 672px;
    padding: 0 20px; }
    .section .grey-bg-section .card-bg-container .card-container-width {
      max-width: 80%;
      margin: 0 auto; } }

@media (min-width: 992px) {
  .section {
    max-width: 1110px;
    padding: 0; }
    .section .grey-bg-section .card-bg-container .card-container-width {
      max-width: 1110px;
      margin: 0 auto; } }

.videoContainer {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 50px; }

.videoContainer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.Home {
  text-align: center; }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.home-page-container .filter-car-information-section {
  background: #f4f6f9;
  padding: 30px 0; }
  .home-page-container .filter-car-information-section .filter-car-form-container {
    width: 90%;
    margin: 0 auto; }

@media (min-width: 992px) {
  .home-page-container .filter-car-information-section {
    padding: 30px 0; }
    .home-page-container .filter-car-information-section .filter-car-form-container {
      width: 50%;
      max-width: 540px; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.order-container {
  margin: 32px 0; }
  .order-container .page-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600; }
  .order-container .order-info-container {
    display: flex;
    flex-direction: column; }
    .order-container .order-info-container .car-plan-info {
      display: flex;
      flex-direction: column-reverse;
      margin: 0 auto;
      width: 100%; }
      .order-container .order-info-container .car-plan-info .filter-car-plan-info-container {
        margin-top: 24px; }
    .order-container .order-info-container .order-form {
      margin: 0 auto;
      width: 100%; }
      .order-container .order-info-container .order-form .button-section .submit-button {
        width: 100%;
        font-family: "Prompt", sans-serif;
        height: 40px; }
        .order-container .order-info-container .order-form .button-section .submit-button.disabled {
          background-color: #e1e2e7 !important;
          color: #ffffff !important; }

@media (min-width: 768px) {
  .order-container .order-info-container {
    flex-direction: row; }
    .order-container .order-info-container .car-plan-info {
      width: 45%;
      margin-right: 16px;
      position: sticky;
      height: fit-content;
      top: 80px;
      flex-direction: column; }
      .order-container .order-info-container .car-plan-info .filter-car-plan-info-container {
        margin-top: 0;
        margin-bottom: -8px; }
    .order-container .order-info-container .order-form {
      width: 55%; } }

@media (min-width: 992px) {
  .order-container .order-info-container .car-plan-info {
    width: 30%;
    margin-right: 30px; }
  .order-container .order-info-container .order-form {
    width: 70%; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.motor-payment {
  padding: 32px 0; }
  .motor-payment .motor-payment-title {
    color: #000000;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 8px; }
  .motor-payment .motor-detail-container {
    display: flex;
    flex-direction: column; }
    .motor-payment .motor-detail-container .motor-order-summary {
      width: 100%; }
    .motor-payment .motor-detail-container .motor-payment-channel {
      width: 100%; }

@media (min-width: 768px) {
  .motor-payment {
    padding: 40px 0; }
    .motor-payment .motor-payment-title {
      font-size: 32px; }
    .motor-payment .motor-detail-container {
      flex-direction: row; }
      .motor-payment .motor-detail-container .motor-order-summary {
        width: 55%; }
      .motor-payment .motor-detail-container .motor-payment-channel {
        width: 45%;
        padding-left: 24px;
        position: sticky;
        top: 80px;
        height: fit-content; } }

@media (min-width: 992px) {
  .motor-payment {
    padding: 40px 0; }
    .motor-payment .motor-payment-title {
      font-size: 32px; }
    .motor-payment .motor-detail-container {
      flex-direction: row; }
      .motor-payment .motor-detail-container .motor-order-summary {
        width: 60%; }
      .motor-payment .motor-detail-container .motor-payment-channel {
        width: 40%;
        padding-left: 24px; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.result-container {
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .result-container .payment-image {
    width: 148px;
    height: 96px;
    margin-bottom: 15px; }
    .result-container .payment-image img {
      width: 100%; }
  .result-container .payment-status {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px; }
  .result-container .tvi-thankyou {
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    margin-bottom: 30px; }
  .result-container .send-location {
    border: 1px solid #000000;
    position: relative;
    padding: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .result-container .send-location .send-to {
      position: absolute;
      top: -12px;
      background: #ffffff;
      font-size: 14px; }
    .result-container .send-location .send-address {
      font-size: 16px;
      color: #000000;
      background: #ffffff;
      font-weight: 500;
      text-align: center; }

@media (min-width: 768px) {
  .result-container {
    margin: 0;
    height: calc(100vh - 455px); }
    .result-container .send-location {
      width: 70%; } }

@media (min-width: 992px) {
  .result-container {
    margin: 0;
    height: calc(100vh - 379px); }
    .result-container .send-location {
      width: 45%; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.pending-container {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .pending-container .prepare-image {
    width: 64px;
    height: 64px;
    margin-bottom: 15px; }
    .pending-container .prepare-image img {
      width: 100%; }
  .pending-container .prepare-title {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2; }
  .pending-container .prepare-detail {
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    white-space: pre-wrap;
    text-align: center;
    margin-bottom: 32px; }
  .pending-container .recommend .recommend-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center; }
  .pending-container .recommend .recommend-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px; }
    .pending-container .recommend .recommend-container .recommend-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 70%;
      margin: 0 auto;
      margin-bottom: 24px; }
      .pending-container .recommend .recommend-container .recommend-card .recommend-step {
        background: #e6f6ea;
        color: #000000;
        font-size: 12px;
        font-weight: 400;
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-bottom: 8px; }
      .pending-container .recommend .recommend-container .recommend-card .recommend-label {
        font-size: 14px;
        font-weight: 400;
        color: #666666;
        font-family: "Sarabun", sans-serif;
        text-align: center; }
  .pending-container .approve-result {
    border: 1px solid #000000;
    position: relative;
    padding: 26px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px; }
    .pending-container .approve-result .send-to {
      position: absolute;
      top: -12px;
      background: #ffffff;
      font-size: 14px; }
    .pending-container .approve-result .send-address {
      font-size: 16px;
      color: #000000;
      background: #ffffff;
      font-weight: 500;
      text-align: center; }
  .pending-container .approve-detail {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-family: "Sarabun", sans-serif;
    white-space: pre-wrap;
    text-align: center; }

@media (min-width: 768px) {
  .pending-container .approve-result {
    width: 70%; }
  .pending-container .approve-detail {
    width: 70%; } }

@media (min-width: 992px) {
  .pending-container {
    padding: 40px 0; }
    .pending-container .prepare-detail {
      margin-bottom: 56px; }
    .pending-container .recommend .recommend-title {
      margin-bottom: 16px; }
    .pending-container .recommend .recommend-container {
      flex-direction: row;
      margin-bottom: 70px; }
      .pending-container .recommend .recommend-container .recommend-card {
        width: 30%; }
    .pending-container .approve-result {
      width: 45%;
      margin-bottom: 43px; }
    .pending-container .approve-detail {
      width: 45%; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.select-plan-container {
  margin: 32px 0; }
  .select-plan-container .page-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 600; }
  .select-plan-container .select-plan-filter {
    display: flex;
    flex-direction: column; }

.not-found-plan {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  margin-bottom: 150px; }
  .not-found-plan .not-found-image {
    width: 70px;
    margin-bottom: 15px; }
    .not-found-plan .not-found-image img {
      width: 100%; }
  .not-found-plan .not-found-title {
    color: #999999;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px; }
  .not-found-plan .not-found-detail {
    color: #999999;
    font-size: 16px;
    white-space: pre-wrap;
    text-align: center;
    width: 80%; }

@media (min-width: 992px) {
  .select-plan-container .select-plan-filter {
    flex-direction: row; }
  .not-found-plan .not-found-detail {
    width: 50%; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.sms-motor-payment {
  padding: 32px 0; }
  .sms-motor-payment .sms-motor-payment-title {
    color: #000000;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 8px; }
  .sms-motor-payment .sms-motor-detail-container {
    display: flex;
    flex-direction: column; }
    .sms-motor-payment .sms-motor-detail-container .sms-motor-order-summary {
      width: 100%; }
    .sms-motor-payment .sms-motor-detail-container .sms-motor-payment-channel {
      width: 100%; }

@media (min-width: 992px) {
  .sms-motor-payment {
    min-height: calc(100vh - 380px);
    padding: 40px 0; }
    .sms-motor-payment .sms-motor-payment-title {
      font-size: 32px; }
    .sms-motor-payment .sms-motor-detail-container {
      flex-direction: row; }
      .sms-motor-payment .sms-motor-detail-container .sms-motor-order-summary {
        width: 60%; }
      .sms-motor-payment .sms-motor-detail-container .sms-motor-payment-channel {
        width: 40%;
        padding-left: 24px; } }

/* === z-index values ===
 * 1-5 is all components
 * 10 is Banner
 * 500 is Nav bar
 * 890 is Consent Bar
 * 900 is Modal Overlay
 * 1000 is Modal
 * 1010 is Page Loader
 */
.grecaptcha-badge {
  visibility: hidden; }

body {
  font-family: "Prompt", sans-serif; }

.sms-result-container {
  margin: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .sms-result-container .sms-payment-image {
    width: 148px;
    height: 96px;
    margin-bottom: 15px; }
    .sms-result-container .sms-payment-image img {
      width: 100%; }
  .sms-result-container .sms-tvi-thankyou {
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    margin-bottom: 30px; }

@media (min-width: 768px) {
  .sms-result-container {
    margin: 0;
    height: calc(100vh - 455px); } }

@media (min-width: 992px) {
  .sms-result-container {
    margin: 0;
    height: calc(100vh - 379px); } }


.blackground-container {
  min-height: 90vh;
  z-index: 0; }

