@charset "UTF-8";
/** 버튼 기본 ****************************************/
/** 버튼 border-radius 타입 ****************************************/
/** 버튼 배경 유무 ****************************************/
/** 텍스트 + 아이콘 버튼 ****************************************/
/**  자주 사용하는 버튼 ****************************************/
.guest-order-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 16px;
}
@media screen and (max-width: 720px) {
  .guest-order-container {
    padding: 40px 16px;
  }
}
.guest-order-container .order-lookup-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.guest-order-container .order-lookup-title p {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--Neutrals-0);
}
@media screen and (max-width: 720px) {
  .guest-order-container .order-lookup-title {
    margin-bottom: 20px;
  }
  .guest-order-container .order-lookup-title p {
    font-size: 22px;
  }
}
.guest-order-container .guest-order-wrap {
  width: 100%;
  max-width: 400px;
}
.guest-order-container .guest-order-form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: var(--Coolgray-500);
  border: 1px solid var(--Neutrals-500);
  border-radius: 24px;
}
@media screen and (max-width: 720px) {
  .guest-order-container .guest-order-form-section {
    padding: 24px 20px;
    border-radius: 16px;
  }
}
.guest-order-container .guest-order-form-section .notice {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--Neutrals-200);
  text-align: center;
}
.guest-order-container .guest-order-form-section .form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  border: none;
  padding: 0;
  margin: 0;
}
.guest-order-container .guest-order-form-section .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.guest-order-container .guest-order-form-section .form-field label {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--Neutrals-0);
}
.guest-order-container .guest-order-form-section .form-field label b {
  color: #f44336;
}
.guest-order-container .guest-order-form-section .form-field .field-error {
  font-size: 12px;
  color: #f44336;
  margin-top: 4px;
}
.guest-order-container .guest-order-form-section .form-field .field-message {
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.4;
}
.guest-order-container .guest-order-form-section .form-field .field-message.success {
  color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .field-message.error {
  color: #f44336;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 1px solid var(--Neutrals-400);
  -webkit-transition: border-bottom-color 150ms ease;
  transition: border-bottom-color 150ms ease;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper:focus-within {
  border-bottom-color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text],
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email],
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  height: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--Neutrals-0);
  background-color: transparent;
  border: none;
  outline: transparent;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]::-webkit-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]::-webkit-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]::-webkit-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]::-moz-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]::-moz-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]::-moz-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]:-ms-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]:-ms-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]:-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]::-ms-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]::-ms-input-placeholder, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]::-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]::placeholder,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]::placeholder,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]::placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]:-webkit-autofill, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]:-webkit-autofill:hover, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]:-webkit-autofill:focus, .guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=text]:-webkit-autofill:active,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]:-webkit-autofill,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]:-webkit-autofill:hover,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]:-webkit-autofill:focus,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=email]:-webkit-autofill:active,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]:-webkit-autofill,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]:-webkit-autofill:hover,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]:-webkit-autofill:focus,
.guest-order-container .guest-order-form-section .form-field .input-wrapper input[type=tel]:-webkit-autofill:active {
  caret-color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: text !important;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group {
  padding-left: 0;
  padding-right: 0;
  border-bottom: none;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--Neutrals-400);
  padding: 10px 0;
  -webkit-transition: border-bottom-color 150ms ease;
  transition: border-bottom-color 150ms ease;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti:focus-within {
  border-bottom-color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti.iti--allow-dropdown .iti__flag-container {
  position: static;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti.iti--allow-dropdown input {
  padding-left: 0 !important;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__flag-container {
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__flag-container .iti__selected-flag {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  padding: 0 6px 0 0;
  height: auto;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__flag-container .iti__selected-flag .iti__arrow {
  border-top-color: var(--Neutrals-0);
  margin-left: 4px;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list {
  position: fixed;
  top: auto;
  left: auto;
  max-height: 200px;
  overflow-y: auto;
  background-color: var(--Coolgray-400);
  border: 1px solid var(--Neutrals-400);
  border-radius: 8px;
  z-index: 10002;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__country {
  padding: 8px 10px;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__country:hover, .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__country.iti__highlight {
  background-color: var(--Coolgray-200);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__country-name,
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__dial-code {
  color: var(--Neutrals-0);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti .iti__country-list .iti__divider {
  border-color: var(--Neutrals-400);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100% !important;
  height: 24px;
  padding: 0 !important;
  border: none;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--Neutrals-0);
  outline: transparent;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input::-webkit-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input::-moz-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input:-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input::-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input::placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input:-webkit-autofill, .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input:-webkit-autofill:hover, .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input:-webkit-autofill:focus, .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .iti input:-webkit-autofill:active {
  caret-color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: text !important;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-send-code,
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-change-phone {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 8px;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--Neutrals-0);
  cursor: pointer;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  white-space: nowrap;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-send-code:hover,
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-change-phone:hover {
  border-color: var(--Primary-500);
  color: var(--Primary-500);
}
@media screen and (max-width: 480px) {
  .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-send-code,
  .guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-change-phone {
    padding: 0 10px;
    font-size: 12px;
  }
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.phone-input-group .btn-change-phone:hover {
  border-color: var(--Neutrals-200);
  color: var(--Neutrals-0);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group {
  gap: 6px;
  border-bottom: none;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--Neutrals-400);
  padding: 10px 0;
  -webkit-transition: border-bottom-color 150ms ease;
  transition: border-bottom-color 150ms ease;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap:focus-within {
  border-bottom-color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--Neutrals-0);
  background-color: transparent;
  border: none;
  outline: transparent;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input::-webkit-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input::-moz-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input:-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input::-ms-input-placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap input::placeholder {
  font: inherit;
  font-weight: 400;
  color: var(--Neutrals-300);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap .timer-display {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .verify-input-wrap .timer-display.expired {
  color: #f44336;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 8px;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--Neutrals-0);
  cursor: pointer;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  white-space: nowrap;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code:hover {
  border-color: var(--Primary-500);
  color: var(--Primary-500);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code.verified {
  border-color: var(--Primary-500);
  background-color: var(--Primary-500);
  color: var(--Neutrals-0);
  cursor: default;
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code.verified:hover {
  border-color: var(--Primary-500);
  background-color: var(--Primary-500);
  color: var(--Neutrals-0);
}
.guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .guest-order-container .guest-order-form-section .form-field .input-wrapper.verify-input-group .btn-verify-code {
    padding: 0 10px;
    font-size: 12px;
  }
}
.guest-order-container .guest-order-form-section .verify-code-group {
  display: none;
}
.guest-order-container .guest-order-form-section .verify-code-group[style*="display: block"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.guest-order-container .guest-order-form-section .btn-lookup {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 10px;
  background-color: var(--Primary-600);
  font-size: 15px;
  font-weight: 500;
  color: var(--Neutrals-0);
  cursor: pointer;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  opacity: 1;
}
.guest-order-container .guest-order-form-section .btn-lookup:hover {
  background-color: var(--Primary-700);
}
.guest-order-container .guest-order-form-section .btn-lookup:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.guest-order-container .guest-order-form-section .btn-lookup:disabled:hover {
  background-color: var(--Primary-600);
}

.guest-order-list-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--b1-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px 100px;
}
@media screen and (max-width: 1024px) {
  .guest-order-list-container {
    padding: 0 20px 100px;
  }
}
@media screen and (max-width: 720px) {
  .guest-order-list-container {
    padding: 0;
  }
}
.guest-order-list-container h2 {
  padding: 60px 0 40px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container h2 {
    display: none;
  }
}
.guest-order-list-container .order-status-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding-bottom: 30px;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .order-status-tabs {
    padding: 16px;
    gap: 6px;
    overflow-x: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .guest-order-list-container .order-status-tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .guest-order-list-container .order-status-tabs::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
  }
  .guest-order-list-container .order-status-tabs::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 999px;
  }
}
.guest-order-list-container .order-status-tabs .tab-item {
  padding: 10px 20px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--Neutrals-200);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.guest-order-list-container .order-status-tabs .tab-item:hover {
  border-color: var(--Neutrals-200);
  color: var(--Neutrals-0);
}
.guest-order-list-container .order-status-tabs .tab-item.active {
  border-color: var(--Primary-500);
  background-color: rgba(10, 216, 129, 0.1);
  color: var(--Primary-500);
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .order-status-tabs .tab-item {
    padding: 8px 16px;
    font-size: 13px;
  }
}
.guest-order-list-container .order-list-wrap {
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .order-list-wrap {
    gap: 6px;
  }
}
.guest-order-list-container .no-orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 20px;
  background-color: var(--b0-color);
  border-radius: 24px;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .no-orders {
    border-radius: 0;
  }
}
.guest-order-list-container .no-orders .no-orders-icon {
  width: 80px;
  height: 80px;
  background: url("/public/img/icons/empty_order.svg") no-repeat center;
  background-size: contain;
  opacity: 0.5;
  margin-bottom: 20px;
}
.guest-order-list-container .no-orders p {
  font-size: 16px;
  color: var(--Neutrals-300);
}
.guest-order-list-container .order-date-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.guest-order-list-container .order-date-group .date-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 0 4px;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .order-date-group .date-header {
    padding: 0 16px;
  }
}
.guest-order-list-container .order-date-group .date-header .date-icon {
  width: 20px;
  height: 20px;
  background: url("/public/img/icons/calendar_grey.svg") no-repeat center;
  background-size: contain;
}
.guest-order-list-container .order-date-group .date-header .date-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--Neutrals-200);
}
.guest-order-list-container .order-item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: var(--b0-color);
  border-radius: 16px;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .order-item-card {
    padding: 20px 16px;
    border-radius: 0;
  }
}
.guest-order-list-container .order-item-card .order-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guest-order-list-container .order-item-card .order-item-header .order-status {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-paid {
  background-color: rgba(10, 216, 129, 0.1);
  color: var(--Primary-500);
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-preparing {
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-shipping {
  background-color: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-delivered {
  background-color: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-canceled, .guest-order-list-container .order-item-card .order-item-header .order-status.status-returned, .guest-order-list-container .order-item-card .order-item-header .order-status.status-exchanged {
  background-color: rgba(244, 67, 54, 0.1);
  color: #f44336;
}
.guest-order-list-container .order-item-card .order-item-header .order-status.status-default {
  background-color: var(--Coolgray-400);
  color: var(--Neutrals-200);
}
.guest-order-list-container .order-item-card .order-item-header .btn-detail {
  font-size: 14px;
  color: var(--Primary-500);
  text-decoration: none;
}
.guest-order-list-container .order-item-card .order-item-header .btn-detail:hover {
  text-decoration: underline;
}
.guest-order-list-container .order-item-card .order-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 480px) {
  .guest-order-list-container .order-item-card .order-item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.guest-order-list-container .order-item-card .order-item-content .order-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.guest-order-list-container .order-item-card .order-item-content .order-info .order-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--Neutrals-0);
  line-height: 1.4;
}
.guest-order-list-container .order-item-card .order-item-content .order-info .order-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--Primary-500);
}
.guest-order-list-container .order-item-card .order-item-content .order-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 480px) {
  .guest-order-list-container .order-item-card .order-item-content .order-actions {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.guest-order-list-container .order-item-card .order-item-content .order-actions .btn-tracking {
  padding: 10px 16px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 8px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--Neutrals-0);
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.guest-order-list-container .order-item-card .order-item-content .order-actions .btn-tracking:hover {
  border-color: var(--Primary-500);
  color: var(--Primary-500);
}
.guest-order-list-container .guest-order-footer {
  width: 100%;
  max-width: 800px;
  padding: 30px 0;
}
@media screen and (max-width: 720px) {
  .guest-order-list-container .guest-order-footer {
    padding: 20px 16px;
  }
}
.guest-order-list-container .guest-order-footer .btn-new-lookup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--Neutrals-0);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.guest-order-list-container .guest-order-footer .btn-new-lookup:hover {
  border-color: var(--Primary-500);
  color: var(--Primary-500);
}

.no-order-modal {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.no-order-modal .modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.no-order-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--Coolgray-500);
  border: 1px solid var(--Neutrals-700);
  width: 380px;
  max-width: 90%;
  border-radius: 20px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.no-order-modal .modal-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px 16px 10px;
  background-color: var(--Coolgray-500);
  border-radius: 20px 20px 0 0;
}
.no-order-modal .modal-header .modal-title-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
}
.no-order-modal .modal-header .modal-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--Neutrals-0);
}
.no-order-modal .modal-header .modal-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--Neutrals-100);
  word-break: keep-all;
}
.no-order-modal .modal-header .btn-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: url("/public/img/icons/close_white.svg") no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
  padding: 0;
}
.no-order-modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  background-color: var(--Coolgray-500);
  border-radius: 0 0 20px 20px;
}
.no-order-modal .modal-footer .btn-close-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--Neutrals-400);
  border-radius: 10px;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--Neutrals-0);
  cursor: pointer;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
}
.no-order-modal .modal-footer .btn-close-modal:hover {
  border-color: var(--Neutrals-200);
}

body > .iti.iti--container {
  z-index: 10002;
}
@media screen and (min-width: 768px) {
  body > .iti.iti--container {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
body > .iti.iti--container .iti__country-list {
  max-height: 250px;
  overflow-y: auto;
  background-color: var(--Coolgray-400);
  border: 1px solid var(--Neutrals-400);
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
body > .iti.iti--container .iti__country-list .iti__country {
  padding: 8px 10px;
}
body > .iti.iti--container .iti__country-list .iti__country:hover, body > .iti.iti--container .iti__country-list .iti__country.iti__highlight {
  background-color: var(--Coolgray-200);
}
body > .iti.iti--container .iti__country-list .iti__country-name,
body > .iti.iti--container .iti__country-list .iti__dial-code {
  color: var(--Neutrals-0);
}
body > .iti.iti--container .iti__country-list .iti__divider {
  border-color: var(--Neutrals-400);
}