.cnt-ttlcomp {
  --ttl-primary: #3caebe;
  --ttl-primary-dark: #007282;
  --ttl-ink: #39364c;
  --ttl-muted: #6f6f6f;
  --ttl-line: #e2e2e2;
  --ttl-ok: #12a17f;
  --ttl-ok-bg: #e6faf5;
  --ttl-no: #d64545;
  --ttl-no-bg: #fdeeee;
  --ttl-ask: #b7791f;
  --ttl-ask-bg: #fff6e5;
  flex-direction: column;
  align-items: center;
  padding: 0 100px 80px;
  display: flex;
}

.rtl-ttlcomp, .rtl-ttlcomp * {
  direction: rtl;
}

.hide-ttlcomp {
  display: none !important;
}

.hero-ttlcomp {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 0 40px;
  display: flex;
}

.chip-row-ttlcomp {
  align-items: center;
  gap: 20px;
  display: flex;
}

.chip-ttlcomp {
  border: 1px solid var(--ttl-primary);
  background-color: #3caebe8c;
  border-radius: 41px;
  width: 27px;
  height: 10px;
}

.title-ttlcomp {
  color: var(--ttl-primary);
  font-size: 40px;
  font-weight: 900;
  line-height: 120%;
}

.sub-title-ttlcomp {
  color: var(--ttl-muted);
  max-width: 620px;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

.section-head-ttlcomp {
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 30px;
  display: flex;
}

.section-title-ttlcomp {
  color: var(--ttl-ink);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

.form-head-ttlcomp {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  display: flex;
}

.form-head-ttlcomp img {
  width: 26px;
  height: 26px;
}

.form-head-ttlcomp h2 {
  color: var(--ttl-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}

.panel-ttlcomp {
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 940px;
  margin-bottom: 40px;
  display: flex;
}

.form-card-ttlcomp {
  border: 3px solid var(--ttl-primary);
  border-radius: 16px;
  padding: 34px 20px;
}

.form-row-ttlcomp {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  display: flex;
}

.field-ttlcomp {
  flex-direction: column;
  display: flex;
  position: relative;
}

.label-ttlcomp {
  color: #414042;
  padding-bottom: 14px;
  font-size: 14px;
}

.input-ttlcomp {
  color: #414042;
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #414042;
  border-radius: 25px;
  width: 230px;
  height: 37px;
  padding: 0 16px;
  font-size: 14px;
}

.input-ttlcomp::placeholder {
  color: #9a9a9a;
}

.select-wrap-ttlcomp {
  z-index: 10;
  position: relative;
}

.select-ttlcomp {
  cursor: pointer;
  user-select: none;
  align-items: center;
  display: flex;
}

.select-ttlcomp:after {
  content: "";
  border: 6px solid #0000;
  border-top-color: #414042;
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 3px);
  right: 14px;
}

.rtl-ttlcomp .select-ttlcomp:after {
  right: unset;
  left: 14px;
}

.select-open-ttlcomp:after {
  border-top-color: #0000;
  border-bottom-color: #414042;
  top: calc(50% - 8px);
}

.options-ttlcomp {
  z-index: -1;
  color: #414042;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  padding-top: 37px;
  position: absolute;
  top: 0;
  overflow: hidden;
  box-shadow: 0 0 10px 2px #0000004d;
}

.option-ttlcomp {
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
}

.option-ttlcomp:hover {
  background-color: #00000014;
}

.option-on-ttlcomp {
  background-color: #0003;
}

.btn-ttlcomp {
  background-color: var(--ttl-primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 37px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.btn-ttlcomp:hover {
  background-color: var(--ttl-primary-dark);
}

.btn-ttlcomp span {
  border: 5px solid #fff;
  border-top: 5px solid var(--ttl-primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: 1s linear infinite spin;
}

.error-ttlcomp {
  color: #e12828;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  bottom: -18px;
}

.result-ttlcomp {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.verdict-ttlcomp {
  border: 1px solid #0000;
  border-radius: 20px;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  display: flex;
}

.verdict-icon-ttlcomp {
  border-radius: 100%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
}

.verdict-icon-ttlcomp img {
  filter: brightness(0) invert();
  width: 26px;
  height: 26px;
}

.verdict-title-ttlcomp {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

.verdict-desc-ttlcomp {
  color: var(--ttl-ink);
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}

.verdict-reported-ttlcomp {
  color: var(--ttl-muted);
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  display: flex;
}

.verdict-reported-ttlcomp b {
  color: var(--ttl-ink);
  font-weight: 700;
}

.verdict-note-ttlcomp {
  color: #bb0c29;
  margin-top: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.rtl-ttlcomp .verdict-note-ttlcomp {
  padding-left: 0;
  padding-right: 12px;
}

.verdict-note-ttlcomp:before {
  content: "•";
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: -4px;
  left: 0;
}

.rtl-ttlcomp .verdict-note-ttlcomp:before {
  left: unset;
  right: 0;
}

.ok-ttlcomp {
  background-color: var(--ttl-ok-bg);
  border-color: #12a17f59;
}

.ok-ttlcomp .verdict-icon-ttlcomp {
  background-color: var(--ttl-ok);
}

.ok-ttlcomp .verdict-title-ttlcomp {
  color: var(--ttl-ok);
}

.no-ttlcomp {
  background-color: var(--ttl-no-bg);
  border-color: #d6454559;
}

.no-ttlcomp .verdict-icon-ttlcomp {
  background-color: var(--ttl-no);
}

.no-ttlcomp .verdict-title-ttlcomp {
  color: var(--ttl-no);
}

.ask-ttlcomp {
  background-color: var(--ttl-ask-bg);
  border-color: #b7791f59;
}

.ask-ttlcomp .verdict-icon-ttlcomp {
  background-color: var(--ttl-ask);
}

.ask-ttlcomp .verdict-title-ttlcomp {
  color: var(--ttl-ask);
}

.cta-ttlcomp {
  background-color: var(--ttl-primary);
  color: #fff;
  border-radius: 25px;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.cta-ttlcomp:hover {
  background-color: var(--ttl-primary-dark);
}

.cta-ttlcomp img {
  filter: brightness(0) invert();
  width: 18px;
  height: 18px;
}

.vehicle-ttlcomp {
  border: 1px solid var(--ttl-line);
  border-radius: 20px;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 24px;
  display: flex;
  box-shadow: 0 6px 18px #0000001a;
}

.vehicle-img-ttlcomp {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: #f2f2f2;
  border-radius: 18px;
  width: 230px;
  max-width: 100%;
}

.vehicle-info-ttlcomp {
  flex-direction: column;
  flex: 320px;
  gap: 10px;
  display: flex;
}

.vehicle-name-ttlcomp {
  color: var(--ttl-ink);
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
}

.spec-ttlcomp {
  border-bottom: 1px dashed var(--ttl-line);
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
  font-size: 14px;
  display: flex;
}

.spec-ttlcomp:last-child {
  border-bottom: none;
}

.spec-ttlcomp span {
  color: var(--ttl-muted);
  flex-shrink: 0;
}

.spec-ttlcomp b {
  color: var(--ttl-ink);
  text-align: right;
}

.rtl-ttlcomp .spec-ttlcomp b, .rtl-ttlcomp .vehicle-name-ttlcomp {
  text-align: left;
  direction: ltr;
}

span.badge-ttlcomp {
  color: #fff;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 13px;
  font-weight: 600;
}

.toolbar-ttlcomp {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  display: flex;
}

.segment-ttlcomp {
  background-color: #eff2f3;
  border-radius: 999px;
  flex-shrink: 0;
  gap: 4px;
  padding: 5px;
  display: inline-flex;
}

.seg-btn-ttlcomp {
  color: var(--ttl-muted);
  cursor: pointer;
  background-color: #0000;
  border: none;
  border-radius: 999px;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: background-color .15s, color .15s;
  display: flex;
}

.seg-btn-ttlcomp img {
  opacity: .45;
  width: 15px;
  height: 15px;
}

.seg-count-ttlcomp {
  color: var(--ttl-muted);
  background-color: #0000000f;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
}

.seg-on-ttlcomp {
  cursor: default;
  background-color: #fff;
  box-shadow: 0 2px 6px #0000001f;
}

.seg-on-ttlcomp img {
  opacity: 1;
}

.seg-on-ttlcomp.seg-ok-ttlcomp {
  color: var(--ttl-ok);
}

.seg-on-ttlcomp.seg-ok-ttlcomp .seg-count-ttlcomp {
  background-color: var(--ttl-ok-bg);
  color: var(--ttl-ok);
}

.seg-on-ttlcomp.seg-no-ttlcomp {
  color: var(--ttl-no);
}

.seg-on-ttlcomp.seg-no-ttlcomp .seg-count-ttlcomp {
  background-color: var(--ttl-no-bg);
  color: var(--ttl-no);
}

.seg-btn-ttlcomp:not(.seg-on-ttlcomp):hover {
  color: var(--ttl-ink);
}

.search-cnt-ttlcomp {
  flex: 300px;
  max-width: 420px;
  height: 52px;
  position: relative;
}

.search-cnt-ttlcomp input {
  border: 1px solid var(--ttl-line);
  border-radius: 999px;
  width: 100%;
  height: 100%;
  padding-left: 22px;
  padding-right: 62px;
  font-size: 16px;
  box-shadow: 0 2px 10px #0000000f;
}

.rtl-ttlcomp .search-cnt-ttlcomp input {
  padding-left: 62px;
  padding-right: 22px;
}

.search-cnt-ttlcomp input:focus {
  border-color: var(--ttl-primary);
}

.search-btn-ttlcomp {
  background-color: var(--ttl-primary);
  pointer-events: none;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: flex;
  position: absolute;
  top: 7px;
  right: 7px;
}

.rtl-ttlcomp .search-btn-ttlcomp {
  right: unset;
  left: 7px;
}

.result-count-ttlcomp {
  color: var(--ttl-muted);
  align-self: flex-start;
  font-size: 14px;
  font-weight: 600;
}

.card-ttlcomp {
  border: 1px solid var(--ttl-line);
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px #00000014;
}

.card-body-ttlcomp {
  scrollbar-width: thin;
  scrollbar-color: var(--ttl-primary-dark) #0000001f;
  min-height: 320px;
  max-height: 620px;
  overflow-y: auto;
}

.card-body-item-ttlcomp {
  border-bottom: 1px solid #f0f2f3;
  border-inline-start: 3px solid #0000;
  padding: 13px 20px;
}

.card-body-item-ttlcomp:last-child {
  border-bottom: none;
}

.card-body-item-ttlcomp:hover {
  background-color: #f7fbfb;
}

.accepted-titles-ttlcomp {
  border-inline-start-color: #12a17f8c;
}

.unaccepted-titles-ttlcomp {
  border-inline-start-color: #d645458c;
}

.card-body-item-title-ttlcomp {
  color: #2f3032;
  font-size: 15px;
  font-weight: 600;
}

.card-body-item-note-ttlcomp {
  color: #bb0c29;
  margin-top: 3px;
  padding-left: 12px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.rtl-ttlcomp .card-body-item-note-ttlcomp {
  padding-left: 0;
  padding-right: 12px;
}

.card-body-item-note-ttlcomp:before {
  content: "•";
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  left: 0;
}

.rtl-ttlcomp .card-body-item-note-ttlcomp:before {
  left: unset;
  right: 0;
}

.empty-ttlcomp {
  color: var(--ttl-ink);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 320px;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
}

.empty-ttlcomp img {
  opacity: .4;
  width: 36px;
  height: 36px;
}

@media screen and (width <= 1020px) {
  .cnt-ttlcomp {
    padding: 0 30px 60px;
  }

  .title-ttlcomp {
    font-size: 32px;
  }

  .sub-title-ttlcomp {
    font-size: 16px;
  }

  .section-title-ttlcomp {
    font-size: 24px;
  }
}

@media screen and (width <= 600px) {
  .cnt-ttlcomp {
    padding: 0 15px 50px;
  }

  .hero-ttlcomp {
    padding: 36px 0 28px;
  }

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

  .input-ttlcomp, .btn-ttlcomp, .field-ttlcomp {
    width: 100%;
  }

  .form-row-ttlcomp {
    gap: 26px;
  }

  .verdict-ttlcomp {
    gap: 14px;
    padding: 20px;
  }

  .verdict-title-ttlcomp {
    font-size: 20px;
  }

  .cta-ttlcomp {
    justify-content: center;
    align-self: stretch;
  }

  .vehicle-img-ttlcomp {
    width: 100%;
  }

  .toolbar-ttlcomp {
    justify-content: center;
  }

  .segment-ttlcomp {
    width: 100%;
  }

  .seg-btn-ttlcomp {
    flex: 1;
    justify-content: center;
    padding: 10px 8px;
    font-size: 14px;
  }

  .search-cnt-ttlcomp {
    max-width: 100%;
  }
}
