.page {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  width: 1200px;
}

.page-fluid {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
  width: 100%;
}

.page__header {
  display: flex;
  width: 100%;
}

.page__header__left {
  display: flex;
  min-width: 70%;
  justify-content: start;
}

.page__header__right {
  display: flex;
  min-width: 30%;
  justify-content: end;
}

.page__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.detail-page {
  width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 8px 0;
}

.detail-page-vertical {
  width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;

  gap: 10px 0;
}

.detail-page-subtitle {
  width: 896px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}

.page-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-back {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--third-color-400);
  transition-property: all;
  transition-duration: var(--transition-duration-primary);
  transition-timing-function: var(--transition-timing-function-primary);
  cursor: pointer;
}

.page-back:hover {
  color: var(--third-color-500);
}

.page-back .material-symbols-outlined {
  font-size: 30px;
  font-weight: 700;
}

.page-back__text {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .page {
    width: 100%;
  }

  .page__header__left .searchbar {
    display: none;
    width: 0;
  }

  .page__header__left .btn-searchbar {
    display: none;
    width: 0;
  }

  .detail-page {
    max-width: 100%;
    width: 100%;
  }

  .page-form-container {
    max-width: 100%;
    width: 100%;
  }
}
