@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --white: #fff;
  --red: #dc3545;
  --main-color: #8e1537;
  --second-color: #977124;
  --text-grey: #495057;
  --text-primary: #333;
  --input-border-color: #cdd0d1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
}

body {
  background-color: #f6f6f6;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

hr {
  margin: 25px 0;
}

.content {
  position: relative;
}

.container {
  max-width: 640px;
  margin: auto;
  padding: 0 8px;
}

input.form__input,
textarea.form__input,
select.form__input {
  display: block;
  width: 100%;
  height: auto;
  font-family: inherit;
  font-size: 14px;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  outline: none;
  color: var(--text-grey);
  border: 1px solid var(--input-border-color);
  -webkit-appearance: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all ease-in-out 200ms;
}
input:active, input:focus,
textarea:active,
textarea:focus,
select:active,
select:focus {
  border-color: var(--main-color);
}

.input__group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input__group input {
  position: relative;
  flex: 1 1 auto;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid var(--input-border-color);
  border-radius: 5px 0 0 5px;
  outline: none;
}
.input__group button {
  padding: 0.5rem !important;
  width: fit-content !important;
  border-radius: 0 5px 5px 0 !important;
  box-shadow: none !important;
}

textarea {
  resize: none;
}

.btn-main {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--main-color);
  color: var(--white);
  border-color: transparent;
  padding: 1em;
  border-radius: 15px;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 10px rgba(0, 79, 182, 0.25);
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.btn-main:hover,
.btn-main :focus,
.btn-main :active {
  background-color: var(--second-color);
}
.btn-main.disabled {
  pointer-events: none;
  background-color: #cccc;
  color: #6666;
  box-shadow: none;
}

.text-primary {
  color: var(--main-color);
}

.text-error {
  color: var(--red);
}

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

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

.error__message {
  font-size: 13px;
  font-weight: 600;
  margin: 3px 0;
  color: var(--red);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row .col {
  flex: 1 1 0px;
  flex-basis: 0;
  flex-shrink: 0;
  padding: 0 15px;
  margin-bottom: 15px;
}

.form__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.form__group label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-grey);
  margin-bottom: 3px;
}
.form__group label small {
  font-weight: 400;
}
.form__group .input__wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.form__group .input__wrapper.input__inline {
  flex-direction: row;
  gap: 1rem;
  flex: auto;
}
.form__group.form__error input,
.form__group.form__error textarea {
  border-color: var(--red);
}
.form__group.inline {
  flex-direction: column !important;
}
.form__group.inline label {
  width: 100%;
}

.form__check,
.form__radio {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  min-height: 1.5rem;
  margin-bottom: 0.125rem;
}
.form__check input[type=checkbox],
.form__check input[type=radio],
.form__radio input[type=checkbox],
.form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  outline: none;
  flex-shrink: 0;
}
.form__check input[type=checkbox]:checked,
.form__check input[type=radio]:checked,
.form__radio input[type=checkbox]:checked,
.form__radio input[type=radio]:checked {
  accent-color: var(--red);
}
.form__check label,
.form__radio label {
  display: inline-flex;
  align-items: center;
  flex: 1;
  width: 100% !important;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-grey);
  cursor: pointer;
  user-select: none;
  /* standard syntax */
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
}

.form__radio {
  min-height: 2rem;
  flex: 1;
  align-items: center;
}
.form__radio input[type=radio] {
  margin: 0;
  pointer-events: none;
}
.form__radio label {
  font-size: 16px;
}

.card {
  margin: 35px 0;
  background: var(--white);
  box-shadow: 0 8px 10px #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
}
.card .page__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.card .page__header .corp__logo {
  max-width: 100px;
}
.card .card__wrapper {
  display: flex;
  flex-direction: column;
}
.card .card__wrapper .card__title {
  padding: 15px;
  background: var(--red);
}
.card .card__wrapper .card__title h2 {
  font-weight: 800;
  font-size: 42px;
  letter-spacing: 5px;
  line-height: 1.5;
  color: var(--white);
}
.card .card__wrapper .card__title p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.card .card__wrapper .card__content {
  padding: 15px;
}
.card .card__wrapper .card__content .lptrack__wrapper {
  margin-bottom: 35px;
}
.card .card__wrapper .card__content .form__content .form__intro {
  margin-bottom: 15px;
}
.card .card__wrapper .card__content .form__content .form__intro p {
  font-size: 13px;
}
.card .card__wrapper .card__content .form__content .identity__opt {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item {
  flex: 1 1 0px;
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  padding: 25px 15px;
  cursor: pointer;
  border-bottom: 1px solid #dcdcdc;
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item:last-child {
  border: 0;
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item .item__title {
  font-weight: 600;
  font-size: 16px;
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item .item__subtitle {
  font-size: 13px;
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item:hover, .card .card__wrapper .card__content .form__content .identity__opt .identity__item.active {
  background: var(--red);
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item:hover .item__title, .card .card__wrapper .card__content .form__content .identity__opt .identity__item.active .item__title {
  color: var(--white);
}
.card .card__wrapper .card__content .form__content .identity__opt .identity__item:hover .item__subtitle, .card .card__wrapper .card__content .form__content .identity__opt .identity__item.active .item__subtitle {
  color: var(--white);
}
.card .card__wrapper .card__content .form__content .incident__input {
  flex-wrap: wrap;
  gap: 8px;
}
.card .card__wrapper .card__content .form__content .incident__input .form__radio {
  flex: auto;
  flex-grow: 0;
  padding: 8px 10px;
  border: 1px solid var(--input-border-color);
  border-radius: 8px;
}
.card .card__wrapper .card__content .form__content .incident__input .form__radio label {
  font-size: 13px;
}
.card .card__wrapper .card__content .form__action {
  margin: 25px 25px;
}
.card .card__wrapper.card__reply .card__replyby {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 15px 0;
}
.card .card__wrapper.card__reply .card__replyby .replyby__img {
  max-width: 25px;
  max-height: 25px;
}
.card .card__wrapper.card__reply .card__replyby .replyby__name {
  color: var(--text-grey);
}
.card .card__wrapper.card__reply .card__title {
  background: inherit;
  padding: 10px 15px;
  margin-top: 10px;
}
.card .card__wrapper.card__reply .card__title p {
  color: var(--text-primary);
}
.card .card__wrapper.card__reply.admin {
  background-color: #ffedeb !important;
}
.card .card__wrapper.reply__box {
  background-color: #f6f6f6;
}
.card .card__wrapper.reply__box .card__title {
  background-color: inherit;
  padding: 35px 15px 0;
}
.card .card__wrapper.reply__box .card__title p {
  color: var(--text-primary);
}
.card .card__wrapper.reply__box .card__content .card__input {
  margin-bottom: 10px;
}
.card .card__wrapper.reply__box .card__content .card__action .btn-main {
  float: right;
  max-width: 175px;
  padding: 10px;
}

.detail__laporan .detail__item p.title {
  font-size: 13px;
  font-weight: 600;
  color: #666;
}
.detail__laporan .detail__item p.content {
  font-size: 14px;
  font-weight: 300;
  overflow-wrap: anywhere;
}
.detail__laporan .detail__item .content__time {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  color: #666;
}

.disclamer {
  margin: 10px 0;
  font-size: 12px;
  font-weight: inherit;
  line-height: inherit;
  text-align: justify;
  color: var(--text-grey);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.loader .loader__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: auto;
}
.loader .loader__container .loader-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 8px;
}
.loader .loader__container .loader-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--main-color);
  border-radius: 50%;
  animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--main-color) transparent transparent transparent;
}
.loader .loader__container .loader-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loader .loader__container .loader-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loader .loader__container .loader-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loader-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}
.modal.modal__hide {
  display: none;
}
.modal .modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.modal .modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.modal .modal__wrapper .modal__container {
  position: relative;
  z-index: 2;
  min-width: 320px;
  max-width: 380px;
  padding: 25px;
  background: #ffff;
  border-radius: 15px;
}
.modal .modal__wrapper .modal__container .modal__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1;
  line-height: 1;
}
.modal .modal__wrapper .modal__container .modal__body {
  font-size: 14px;
  margin-bottom: 35px;
}
.modal .modal__wrapper .modal__container .modal__body .icon,
.modal .modal__wrapper .modal__container .modal__body .message {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}
.modal .modal__wrapper .modal__container .modal__body .icon {
  text-align: center;
}
.modal .modal__wrapper .modal__container .modal__body ul {
  list-style: none;
  margin: 10px 0;
}
.modal .modal__wrapper .modal__container .modal__check {
  font-size: 13px;
  color: var(--text-grey);
  margin: 15px 0;
}
.modal .modal__wrapper .modal__container .modal__check a {
  text-decoration: none;
  color: var(--main-color);
}

.terms__page .container {
  max-width: 1024px;
}
.terms__page .card {
  padding: 25px;
}
.terms__page .terms__section {
  margin-bottom: 55px;
}
.terms__page .terms__section .title {
  font-size: 28px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 10px;
}
.terms__page .terms__section .content {
  color: var(--text-grey);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}
.terms__page .terms__section .content ol {
  margin: 10px 0 10px 25px;
  list-style: disc;
}
.terms__page .terms__section .content ol li {
  padding-left: 10px;
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .card .card__wrapper .form__content .identity__opt {
    flex-direction: row !important;
  }
  .card .card__wrapper .form__content .identity__opt .identity__item {
    border-bottom: 0;
    border-right: 1px solid #dcdcdc;
  }

  .form__group {
    flex-direction: row;
  }
  .form__group label {
    width: 250px;
  }
}
.back_button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  display: block;
  background: var(--white);
  padding: 10px;
  border-radius: 30px;
  display: block;
  width: 50px;
  height: 50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.back_button svg {
  width: 100%;
  height: 100%;
}

/*# sourceMappingURL=style.css.map */
