:root {
  --hire-teal: #0d9488;
  --hire-teal-dark: #0f766e;
  --hire-blue: #0d9488;
  --hire-bg: #f8fafc;
  --hire-sidebar: #eef1f4;
  --hire-border: #e2e8f0;
  --hire-text: #1a202c;
  --hire-muted: #718096;
  --hire-white: #fff;
  --hire-radius: 8px;
  --hire-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  font-family: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.page {
  margin: 0;
  min-height: 100vh;
  background: var(--hire-bg);
  color: var(--hire-text);
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: var(--hire-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-weight: 600;
  margin: 0 0 0.75rem;
}

/* Top nav */
.topnav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--hire-white);
  border-bottom: 1px solid var(--hire-border);
  flex-wrap: wrap;
}

.topnav__brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  text-decoration: none !important;
}
.logo__hi,
.logo__mark {
  color: #0f172a;
  font-weight: 900;
}
.logo__re {
  color: var(--hire-text);
}
.logo__period {
  color: var(--hire-teal);
}
.logo__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.topnav__links {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  justify-content: center;
}
.topnav__links a {
  color: var(--hire-text);
  font-size: 0.95rem;
}
.topnav__links a:hover {
  color: var(--hire-teal);
}

.topnav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--hire-border);
  background: var(--hire-white);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}
.icon-btn:hover {
  border-color: var(--hire-teal);
}

.topnav__user {
  font-size: 0.9rem;
  font-weight: 500;
}

.lang {
  font-size: 0.85rem;
  color: var(--hire-muted);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--hire-border);
  border-radius: 4px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--hire-blue);
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.link-muted {
  color: var(--hire-muted);
  font-size: 0.9rem;
}

form.inline {
  display: inline;
}

/* App shell */
.page--app .app-shell {
  display: flex;
  min-height: calc(100vh - 56px);
}

.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--hire-sidebar);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hire-border);
}

.sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.75rem;
}

.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  color: var(--hire-text);
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.sidebar__link:hover {
  background: rgba(86, 185, 171, 0.08);
}
.sidebar__link.is-active {
  background: #e6f4f2;
  box-shadow: inset 3px 0 0 var(--hire-teal);
}

.sidebar__sub {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.25rem;
}
.sidebar__sub a {
  font-size: 0.88rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  color: var(--hire-text);
  text-decoration: none;
}
.sidebar__sub a.is-active {
  background: #dbeef0;
  font-weight: 500;
}

.sidebar__cta {
  margin: 1rem 0.75rem 0;
  text-align: center;
  text-decoration: none;
}

.sidebar__icon {
  opacity: 0.7;
  font-size: 0.85rem;
}

.app-main {
  flex: 1;
  padding: 1.5rem 2rem 3rem;
  background: var(--hire-white);
  min-width: 0;
}

.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.main--narrow {
  max-width: 560px;
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.text-link {
  color: var(--hire-blue);
  font-size: 0.95rem;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--hire-border);
  margin-bottom: 1.5rem;
}
.tab {
  padding: 0.5rem 0;
  color: var(--hire-muted);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.tab.is-active {
  color: var(--hire-teal);
  border-bottom-color: var(--hire-teal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: inherit;
}
.btn--primary {
  background: var(--hire-teal);
  color: var(--hire-white);
  border-color: var(--hire-teal);
}
.btn--primary:hover {
  background: var(--hire-teal-dark);
}
.btn--outline {
  background: var(--hire-white);
  color: var(--hire-teal);
  border-color: var(--hire-teal);
}
.btn--outline:hover {
  background: rgba(86, 185, 171, 0.08);
}
.btn--muted {
  background: #edf2f7;
  color: var(--hire-teal);
  border-color: transparent;
}
.btn--ghost {
  background: none;
  color: var(--hire-teal);
  border: none;
}

/* Cards & forms */
.card {
  background: var(--hire-white);
  border-radius: var(--hire-radius);
  box-shadow: var(--hire-shadow);
  border: 1px solid var(--hire-border);
}
.card--pad {
  padding: 1.25rem;
}
.card--form {
  padding: 1.5rem;
  max-width: 640px;
}

.form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5568;
}
.form input,
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--hire-border);
  border-radius: 6px;
  font: inherit;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.req {
  color: #c53030;
}
.form-error {
  color: #c53030;
  font-size: 0.9rem;
}
.form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.auth-card-wrap {
  padding: 3rem 1rem;
}
.auth-card {
  padding: 2rem;
}
.small {
  font-size: 0.8rem;
}

/* Stepper */
.stepper {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--hire-muted);
  flex-wrap: wrap;
}
.stepper li.is-current {
  color: var(--hire-teal);
  font-weight: 600;
}
.stepper li.is-done {
  color: var(--hire-text);
}
.stepper li.is-done::before {
  content: '✓ ';
  color: var(--hire-teal);
}

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table th,
.data-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--hire-border);
}
.data-table th {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.8rem;
}
.empty-cell {
  text-align: center;
  color: var(--hire-muted);
  padding: 2rem !important;
}

.panel {
  margin-bottom: 2rem;
}
.panel__title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Dashboard grid */
.app-main__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .app-main__grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    width: 100%;
  }
  .page--app .app-shell {
    flex-direction: column;
  }
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--hire-radius);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.alert--warn {
  background: #fffaf0;
  border: 1px solid #fbd38d;
  color: #744210;
}
.alert a {
  font-weight: 600;
}

.widgets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.widget {
  background: var(--hire-white);
  border: 1px solid var(--hire-border);
  border-radius: var(--hire-radius);
  padding: 1rem;
  box-shadow: var(--hire-shadow);
}
.widget h3 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.hirike-big {
  font-size: 1.5rem;
  font-weight: 700;
}
.hirike-num {
  color: var(--hire-teal);
  font-size: 2rem;
}
.hirike-progress {
  font-size: 0.75rem;
  color: var(--hire-muted);
  margin-top: 0.5rem;
}
.stat-row {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
}
.widget--date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.widget--date button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--hire-muted);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--hire-muted);
}
.empty-state__art {
  font-size: 2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.mission {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
.mission h2 {
  color: var(--hire-teal);
}

/* About */
.about__title {
  text-align: center;
  color: #63b3ed;
  font-weight: 500;
  margin-bottom: 2rem;
}
.values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.value-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--hire-white);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}
.value-card__badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--hire-white);
  border: 2px solid var(--hire-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--hire-teal);
  font-size: 1.25rem;
  box-shadow: var(--hire-shadow);
}
.value-card h2 {
  color: var(--hire-teal);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.value-card p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .job-grid {
    grid-template-columns: 1fr;
  }
}
.job-card {
  background: var(--hire-white);
  border-radius: var(--hire-radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--hire-shadow);
  border: 1px solid var(--hire-border);
}
.job-card__date {
  font-size: 0.75rem;
  color: var(--hire-muted);
}
.job-card__title {
  font-size: 1rem;
  margin: 0.5rem 0 0.25rem;
}
.job-card__loc {
  font-size: 0.85rem;
  color: var(--hire-muted);
  margin: 0.25rem 0;
}
.job-card__salary {
  font-weight: 700;
  margin-top: 0.75rem;
}
.partners {
  margin-top: 3rem;
  text-align: center;
}
.partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--hire-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.center {
  text-align: center;
}

.muted {
  color: var(--hire-muted);
}

/* Profile */
.profile-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--hire-border);
  margin-bottom: 1.5rem;
}
.profile-tabs a {
  padding: 0.5rem 0;
  color: var(--hire-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.profile-tabs a.is-active {
  color: var(--hire-teal);
  font-weight: 600;
  border-bottom-color: var(--hire-teal);
}
.avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: var(--hire-sidebar);
  border: 2px dashed var(--hire-border);
  margin-bottom: 1rem;
}

.payment-line {
  font-size: 0.9rem;
  color: #4a5568;
}
.lang-fieldset {
  border: 1px dashed var(--hire-border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.lang-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.card-pad {
  padding: 0;
}


/* Top nav: join + language */
.topnav__auth {
  color: var(--hire-text);
  font-size: 0.95rem;
}
.btn--nav-join {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 999px;
  background: var(--hire-teal);
  color: var(--hire-white) !important;
  border: 1px solid var(--hire-teal);
  text-decoration: none !important;
  font-weight: 700;
  transition: background 0.15s, border-color 0.15s;
}
.btn--nav-join:hover {
  background: var(--hire-teal-dark);
  border-color: var(--hire-teal-dark);
  text-decoration: none !important;
}
.lang-switch {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-switch a {
  color: #94a3b8;
  text-decoration: none;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  transition: color 0.15s, background 0.15s;
}
.lang-switch a:hover {
  color: #334155;
}
.lang-switch a.is-active {
  color: #0d9488;
  font-weight: 700;
  background: rgba(13, 148, 136, 0.08);
}
.lang-switch__sep {
  color: #cbd5e1;
}

/* Language dropdown (public topnav) */
.lang-drop {
  position: relative;
}
.lang-drop__toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 0.25rem 0.375rem;
  border-radius: 0.375rem;
  transition: color 0.15s;
}
.lang-drop__toggle:hover {
  color: #334155;
}
.lang-drop__arrow {
  transition: transform 0.2s;
}
.lang-drop.is-open .lang-drop__arrow {
  transform: rotate(180deg);
}
.lang-drop__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  min-width: 5rem;
  z-index: 100;
  overflow: hidden;
}
.lang-drop.is-open .lang-drop__menu {
  display: block;
}
.lang-drop__item {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.lang-drop__item:hover {
  background: #f8fafc;
  color: #334155;
  text-decoration: none;
}
.lang-drop__item.is-active {
  color: #0d9488;
  font-weight: 700;
}

/* Site footer (hire.best) */
.site-footer {
  background: #edf2f7;
  border-top: 1px solid var(--hire-border);
  padding: 2.5rem 1.5rem 1rem;
  margin-top: auto;
}
.site-footer__toast {
  max-width: 1100px;
  margin: 0 auto 1rem;
  padding: 0.75rem 1rem;
  background: #c6f6d5;
  border-radius: 6px;
  font-size: 0.95rem;
}
.site-footer__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2rem;
}
@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer__tag {
  font-size: 0.85rem;
  color: var(--hire-muted);
  margin: 0.5rem 0 1rem;
}
.site-footer__subscribe {
  font-size: 0.8rem;
  color: var(--hire-muted);
  margin: 0;
}
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer__nav a {
  color: var(--hire-text);
  font-size: 0.92rem;
}
.site-footer__h {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}
.site-footer__lead {
  font-size: 0.88rem;
  color: var(--hire-muted);
  margin: 0 0 1rem;
}
.site-footer__form textarea,
.site-footer__form input {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--hire-border);
  border-radius: 6px;
  font: inherit;
  margin-bottom: 0.5rem;
}
.site-footer__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .site-footer__form-row {
    grid-template-columns: 1fr;
  }
}
.btn--footer {
  margin-top: 0.5rem;
}
.site-footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hire-border);
  font-size: 0.85rem;
  color: var(--hire-muted);
  text-align: center;
}
.logo--footer {
  display: inline-block;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.legal-page p {
  margin-bottom: 1rem;
  color: #4a5568;
}
.page--landing {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page--landing .landing {
  flex: 1;
}

/* FAQ (hire.best/en/faq) */
.page--faq .main.faq-page {
  max-width: 820px;
  padding: 2rem 1.5rem 3rem;
}
.faq-page__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hire-border);
}
.faq-tabs__link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hire-muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}
.faq-tabs__link:hover {
  color: var(--hire-teal);
  text-decoration: none;
}
.faq-tabs__link.is-active {
  color: var(--hire-teal);
  background: rgba(86, 185, 171, 0.12);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hire-border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hire-text);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.faq-item__a {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Custom select (progressive enhancement) ── */
select.csel-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
}
.csel {
  position: relative;
  width: 100%;
}
.csel__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-align: left;
  line-height: 1.4;
}
.csel__toggle:hover {
  background: #f8fafc;
}
.csel__toggle:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}
.csel__toggle[disabled] {
  opacity: 0.55;
  cursor: default;
}
.csel__arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}
.csel.is-open .csel__arrow {
  transform: rotate(180deg);
}
.csel__menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.375rem);
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  z-index: 100;
  padding: 0.375rem;
  opacity: 0;
  transform: scaleY(0.95);
  transform-origin: top;
  transition: opacity 0.15s ease, transform 0.15s ease;
  max-height: 16rem;
  overflow-y: auto;
}
.csel.is-open .csel__menu {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}
.csel__item {
  display: block;
  width: 100%;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border-radius: 0.375rem;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  transition: background 0.1s, color 0.1s;
  line-height: 1.4;
}
.csel__item:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.csel__item.is-active {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 600;
}
.csel--sm .csel__toggle {
  padding: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  border-radius: 0.375rem;
  box-shadow: none;
}
.csel--sm .csel__arrow {
  width: 0.875rem;
  height: 0.875rem;
}
.csel--sm .csel__menu {
  padding: 0.25rem;
}
.csel--sm .csel__item {
  padding: 0.35rem 0.625rem;
  font-size: 0.8125rem;
}
.csel--status-open .csel__toggle {
  color: #0f766e;
  font-weight: 700;
}
