@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  outline: none;
  box-sizing: border-box;
}

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

ul,
ol,
table {
  margin: 0;
  padding: 0;
}

:root {
  --body-bg-color: #e5ecef;
  --theme-bg-color: #fafafb;
  --body-font: "Poppins", sans-serif;
  --body-color: #2f2f33;
  --active-color: #0162ff;
  --active-light-color: #e1ebfb;
  --header-bg-color: #fff;
  --search-border-color: #efefef;
  --border-color: #d8d8d8;
  --alert-bg-color: #e8f2ff;
  --subtitle-color: #6f6f79;
  --inactive-color: #f0f0f0;
  --placeholder-color: #9b9ba5;
  --time-button: #fc5757;
  --level-button: #5052d5;
  --button-color: #fff;
  --highlight-comment: hsl(210, 8%, 43.5%);
  --highlight-punctuation: var(--black-600);
  --highlight-namespace: hsl(27, 99%, 36%);
  --highlight-attribute: hsl(206, 98.5%, 29%);
  --highlight-literal: hsl(27, 99%, 36%);
  --highlight-symbol: hsl(306, 43%, 35%);
  --highlight-keyword: hsl(206, 98.5%, 29%);
  --highlight-variable: hsl(80, 80.5%, 26.5%);
  --highlight-addition: hsl(140, 41%, 31%);
  --highlight-deletion: hsl(358, 62%, 47%);
  --theme-post-owner-background-color: #d9eaf7;
  --black-600: hsl(210, 8%, 45%);
  --blue-400: hsl(206, 100%, 40%);
  --fs-fine: 11px;
  --fs-caption: 12px;
  --fs-body1: 13px;
  --fs-body2: 1.15384615rem;
  --fs-body3: 1.30769231rem;
  --fs-subheading: -20.538462rem;
  --fs-title: 1.61538462rem;
  --fs-headline1: 2.07692308rem;
  --fs-headline2: 2.61538461rem;
  --fs-display1: 3.30769231rem;
  --fs-display2: 4.23076923rem;
  --fs-display3: 5.30769231rem;
  --fs-display4: 7.61538461rem;
  --fs-body2-relative: 1.15384615em;
  --fs-body3-relative: 1.30769231em;
  --fs-subheading-relative: 1.46153846em;
  --fs-title-relative: 1.61538462em;
  --fs-headline1-relative: 2.07692308em;
  --fs-headline2-relative: 2.61538461em;
  --fs-display1-relative: 3.30769231em;
  --fs-display2-relative: 4.23076923em;
  --fs-display3-relative: 5.30769231em;
  --fs-display4-relative: 7.61538461em;
  --fs-base: 13px;
}

.dark-mode {
  --body-bg-color: #1d1d1d;
  --theme-bg-color: #13131a;
  --header-bg-color: #1c1c24;
  --alert-bg-color: #292932;
  --body-color: #fff;
  --inactive-color: #292932;
  --time-button: #fff;
  --level-button: #fff;
  --subtitle-color: #bababf;
  --active-light-color: #0d1728;
  --border-color: #26262f;
  --search-border-color: #26262f;
}

::-moz-placeholder {
  color: var(--placeholder-color);
}

:-ms-input-placeholder {
  color: var(--placeholder-color);
}

::placeholder {
  color: var(--placeholder-color);
}

img {
  max-width: 100%;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--body-bg-color);
  font-family: var(--body-font);
  font-size: 15px;
  margin: 0;
  color: var(--body-color);
}

.dark-mode .job-card svg {
  box-shadow: none;
}

.dark-mode .search.item {
  color: var(--body-color);
  border-color: var(--body-color);
}

.dark-mode .search-location svg,
.dark-mode .search-job svg,
.dark-mode .search-salary svg {
  color: var(--body-color);
}

.dark-mode .detail-button {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
}

.job {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--theme-bg-color);
  min-height: 100vh;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.logo img {
  width: 181px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.dark-logo,
.dark-mode .light-logo {
  display: none;
}

.dark-mode .dark-logo {
  display: block;
}

.logo svg {
  width: 24px;
  margin-right: 12px;
}

.header {
  padding: 15px 40px;
  background: var(--header-bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dark-mode .header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-menu a,
.footer-menu a {
  text-decoration: none;
  color: var(--body-color);
  font-weight: 500;
}

.header-menu a {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-menu a:hover {
  color: var(--active-color) !important;
}

.header-menu a.active,
.footer-menu a.active {
  color: var(--active-color);
}

.header-menu a i {
  font-size: 12px;
  opacity: 0.7;
}

.header-menu a.console-link {
  display: none;
}

.user-settings {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.theme-toggle:hover {
  border-color: var(--active-color);
  background: var(--active-light-color);
}

.theme-toggle i {
  color: var(--body-color);
  font-size: 16px;
}

.user-settings .header-menu a {
  background: transparent;
  color: var(--body-color);
  padding: 10px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.user-settings .header-menu a:hover {
  border-color: var(--active-color);
  color: var(--active-color);
  background: var(--active-light-color);
}

.user-settings .header-menu a i {
  margin-left: 6px;
  font-size: 12px;
}

/* Mobile Header */
.mobile-menu-toggle {
  color: var(--body-color);
  font-size: 20px;
  cursor: pointer;
  z-index: 1001;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 10px;
}

.mobile-menu-toggle i {
  color: var(--body-color);
  font-size: 16px;
}

.mobile-menu-toggle:hover {
  border-color: var(--active-color);
  background: var(--active-light-color);
}

.user-menu {
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
  border-right: 2px solid #d6d6db;
}

.user-menu:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--header-bg-color);
  right: 6px;
  top: -1px;
  background-color: var(--active-color);
}

.user-profile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
}

.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  scroll-behavior: smooth;
  padding: 30px 40px;
  overflow: auto;
}

.search-menu {
  background: var(--header-bg-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dark-mode .search-menu {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-button {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
}

.back-button:hover {
  border-color: var(--active-color);
  background: var(--active-light-color);
}

.back-button i {
  color: var(--body-color);
  font-size: 16px;
}


.search-location,
.search-job,
.search-salary {
  display: flex;
  align-items: center;
  width: 50%;
  font-size: 14px;
  font-weight: 500;
  height: 100%;
}

.search-job {
  padding: 0;
}

.search-job form {
  display: flex;
  width: 100%;
}

.search-job form input {
  flex-grow: 1;
}

.search-location input,
.search-job input,
.search-salary input {
  width: 100%;
  padding: 10px 15px;
  display: block;
  background-color: transparent;
  border: none;
  color: var(--body-color);
  font-family: "Poppins", sans-serif;
}

.search-location svg,
.search-job svg,
.search-salary svg {
  margin-right: 8px;
  width: 18px;
  color: var(--active-color);
  flex-shrink: 0;
}

.search.item {
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 13px;
  color: var(--active-color);
  border: 1px solid var(--search-border-color);
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.search.item svg {
  width: 12px;
  margin-left: 5px;
}

.search.item:last-child {
  left: 185px;
}

.search-job {
  width: 100%;
}

.search-location {
  width: 100%;
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-location a {
  color: var(--active-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.search-location a:hover {
  opacity: 0.8;
}

.search-job form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-job input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--search-border-color);
  border-radius: 8px;
  background: var(--theme-bg-color);
  color: var(--body-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.search-job input:focus {
  border-color: var(--active-color);
  box-shadow: 0 0 0 3px rgba(1, 98, 255, 0.1);
}

.search-button {
  color: white;
  border: none;
  display: flex;
  gap: 7px;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, var(--active-color), #0152cc);
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 98, 255, 0.3);
}


.main-container {
  display: flex;
  flex-grow: 1;
  padding-top: 30px;
}

.search-type {
  width: 270px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-shrink: 0;
}

.alert {
  background-color: var(--alert-bg-color);
  padding: 24px 18px;
  border-radius: 8px;
}

.alert-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.alert-subtitle {
  font-size: 13px;
  color: var(--subtitle-color);
  line-height: 1.6em;
  margin-bottom: 20px;
}

.alert input {
  width: 100%;
  padding: 10px;
  display: block;
  border-radius: 6px;
  background-color: var(--header-bg-color);
  border: none;
  font-size: 13px;
}

.search-buttons {
  border: none;
  color: var(--button-color);
  background-color: var(--active-color);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 0;
}

.job-wrapper {
  padding-top: 20px;
}

.job-time {
  padding-top: 20px;
}

.job-time-title {
  font-size: 14px;
  font-weight: 500;
}

.type-container {
  display: flex;
  align-items: center;
  color: var(--subtitle-color);
  font-size: 13px;
}

.type-container label {
  margin-left: 2px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.type-container+.type-container {
  margin-top: 10px;
}

.job-number {
  margin-left: auto;
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
  font-size: 10px;
  font-weight: 500;
  padding: 5px;
  border-radius: 4px;
}

.job-style {
  display: none;
}

.job-style+label:before {
  content: "";
  margin-right: 10px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--subtitle-color);
  border-radius: 4px;
  cursor: pointer;
}

.job-style:checked+label:before {
  background-color: var(--active-color);
  border-color: var(--active-color);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-position: 50%;
  background-size: 14px;
  background-repeat: no-repeat;
}

.job-style:checked+label+span {
  background-color: var(--active-light-color);
  color: var(--active-color);
}

.searched-jobs {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-left: 40px;
}

@-webkit-keyframes slideY {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
}

@keyframes slideY {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
}

.searched-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
}

.searched-show {
  font-size: 19px;
  font-weight: 600;
}

.searched-sort {
  font-size: 14px;
  color: var(--subtitle-color);
}

.searched-sort .post-time {
  font-weight: 600;
  color: var(--subtitle-color);
}

.searched-sort .menu-icon {
  font-size: 9px;
  color: var(--placeholder-color);
  margin-left: 6px;
}

.job-cards {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
}

.job-card {
  padding: 20px 16px;
  background-color: var(--header-bg-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.job-card:hover {
  transform: scale(1.02);
}

.job-card svg {
  width: 46px;
  padding: 10px;
  border-radius: 8px;
}

.job-card-title {
  font-weight: 600;
  margin-top: 16px;
  font-size: 14px;
}

.job-card-subtitle {
  color: var(--subtitle-color);
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6em;
}

.job-card-header {
  display: flex;
  align-items: flex-start;
}

.overview-card:hover {
  background: #2b2ecf;
  transition: none;
  transform: scale(1);
}

.overview-card:hover svg {
  box-shadow: none;
}

.overview-card:hover .job-overview-buttons .search-buttons.time-button,
.overview-card:hover .job-overview-buttons .search-buttons.level-button {
  background-color: #575ad8;
  color: #fff;
}

.overview-card:hover .job-card-title,
.overview-card:hover .job-stat {
  color: #fff;
}

.overview-card:hover .job-card-subtitle,
.overview-card:hover .job-day {
  color: #dedede;
}

.overview-card:hover .overview-wrapper .heart {
  color: #fff;
  border-color: #fff;
}

.overview-card:hover .overview-wrapper .heart:hover {
  fill: red;
  stroke: red;
  transform: scale(1.1);
}

.detail-button {
  background-color: var(--active-light-color);
  color: var(--active-color);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 4px;
}

.detail-button+.detail-button {
  margin-left: 4px;
}

.job-card-statistics .detail-button {
  background-color: unset;
}

.job-card-statistics .detail-button {
  padding-left: 0;
}

.job-detail-buttons .question-author {
  margin-left: auto;
}

.job-detail-buttons {
  display: flex;
  align-items: flex-end;
  margin: 20px 0;
}

.question-author {
  display: flex;
  gap: 5px;
  font-size: 10px;
  align-items: center;
}

.author-gravatar-wrapper {
  display: flex;
}

.job-card-statistics .detail-button+.detail-button {
  margin-left: 0px;
}

.job-card-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 4px;
}

.card-buttons,
.card-buttons-msg {
  padding: 10px;
  width: 100%;
  font-size: 12px;
  cursor: pointer;
}

.card-buttons {
  margin-right: 12px;
}

.card-buttons-msg {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
}

.menu-dot {
  background-color: var(--placeholder-color);
  box-shadow: -6px 0 0 0 var(--placeholder-color), 6px 0 0 0 var(--placeholder-color);
  width: 4px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 8px;
}

.header-shadow {
  box-shadow: 0 4px 20px rgba(88, 99, 148, 0.17);
  z-index: 1;
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }
}

.job-overview {
  display: flex;
  flex-grow: 1;
  display: none;
  -webkit-animation: slide 0.6s both;
  animation: slide 0.6s both;
}

.job-overview-cards {
  display: flex;
  flex-direction: column;
  width: 330px;
  height: 100%;
  flex-shrink: 0;
}

.job-overview-card+.job-overview-card {
  margin-top: 20px;
}

.job-overview-buttons {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.job-overview-buttons .search-buttons {
  background-color: var(--inactive-color);
  font-size: 11px;
  padding: 6px 8px;
  margin-top: 0;
  font-weight: 500;
}

.job-overview-buttons .search-buttons.time-button {
  color: var(--time-button);
  margin-right: 8px;
}

.job-overview-buttons .search-buttons.level-button {
  color: var(--level-button);
}

.job-overview-buttons .job-stat {
  color: var(--active-color);
  font-size: 12px;
  font-weight: 500;
  margin-left: auto;
}

.job-overview-buttons .job-day {
  color: var(--subtitle-color);
  font-size: 12px;
  margin-left: 8px;
  font-weight: 500;
}

.job-overview .overview-wrapper {
  display: flex;
  align-items: center;
}

.job-overview .overview-wrapper svg:first-child {
  width: 42px;
  margin-right: 10px;
}

.job-overview .overview-wrapper .heart {
  background: none;
  box-shadow: none;
  width: 24px;
  padding: 4px;
  color: var(--subtitle-color);
  border: 1px solid var(--border-color);
  margin-left: auto;
  margin-bottom: auto;
}

.overview-detail .job-card-title,
.overview-detail .job-card-subtitle {
  margin-top: 4px;
}

.overview-detail .job-card-subtitle {
  font-size: 12px;
  font-weight: 500;
}

.job-explain {
  background-color: var(--header-bg-color);
  margin-left: 40px;
  border-radius: 0 0 8px 8px;
}

.job-bg {
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 180px;
  transition: 0.3s;
  position: relative;
}

.job-logos {
  margin-top: -30px;
  position: relative;
  margin-bottom: -36px;
  padding: 0 20px;
}

.job-logos svg {
  width: 66px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
  border: 4px solid var(--header-bg-color);
}

.job-title-wrapper {
  display: flex;
  align-items: center;
}

.job-title-wrapper .job-card-title {
  font-size: 20px;
  margin-top: 0;
  font-weight: 600;
}

.job-action {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.job-action svg {
  width: 32px;
  border: 1px solid var(--border-color);
  color: var(--subtitle-color);
  border-radius: 8px;
  padding: 6px;
}

.job-action svg+svg {
  margin-left: 12px;
}

.job-explain-content {
  padding: 50px 25px 30px;
}

.job-subtitle-wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.job-subtitle-wrapper .posted {
  margin-left: auto;
}

.job-subtitle-wrapper .company-name {
  color: var(--active-color);
  font-weight: 600;
  font-size: 14px;
}

.job-subtitle-wrapper .comp-location,
.job-subtitle-wrapper .posted {
  color: var(--subtitle-color);
  font-size: 12px;
  font-weight: 500;
}

.job-subtitle-wrapper .comp-location {
  position: relative;
  margin-left: 10px;
}

.job-subtitle-wrapper .comp-location:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 49%;
  left: -8px;
  position: absolute;
}

.job-subtitle-wrapper .app-number {
  color: var(--body-color);
  position: relative;
  margin-left: 12px;
}

.job-subtitle-wrapper .app-number:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--placeholder-color);
  top: 50%;
  left: -7px;
  position: absolute;
}

.explain-bar {
  margin-top: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  height: 66px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.explain-title {
  color: var(--subtitle-color);
  font-size: 12px;
  line-height: 40px;
  white-space: nowrap;
}

.explain-subtitle {
  font-size: 13px;
  font-weight: 500;
  margin-top: -2px;
  white-space: nowrap;
}

.explain-contents {
  height: 66px;
}

.explain-contents+.explain-contents {
  border-left: 1px solid var(--border-color);
  padding-left: 16px;
}

.overview-text {
  margin-top: 30px;
}

.overview-text-header {
  font-weight: 600;
  margin-bottom: 25px;
}

.overview-text-subheader {
  font-size: 13px;
  line-height: 2em;
}

.overview-text-item {
  font-size: 13px;
  position: relative;
  display: flex;
}

.overview-text-item+.overview-text-item {
  margin-top: 20px;
}

.overview-text-item:before {
  content: "";
  border: 2px solid #61bcff;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  margin-right: 8px;
  flex-shrink: 0;
}

.detail-page .job-overview {
  display: flex;
}

.detail-page .job-cards,
.detail-page .searched-bar {
  display: none;
}

.job-card {
  display: flex;
  align-items: baseline;
}

.job-card .job-card-statistics {
  display: flex;
  flex-direction: column;
  width: 150px;
  text-align: right;
}

/* styles for main thread content */
.qheader {
  align-items: center;
}

.d-flex {
  display: flex;
}

.ai-stretch {
  align-items: stretch !important;
}

.ai-center {
  align-items: center !important;
}

.ai-start {
  align-items: flex-start !important;
}

.ai-end {
  align-items: flex-end !important;
}

.fd-column {
  flex-direction: column !important;
}

.jc_center {
  justify-content: center !important;
}

.jc_end {
  justify-content: flex-end !important;
}

.flex-row-nowrap {
  flex-flow: row nowrap;
}

.qheader h1 {
  margin: 0;
  font-size: 2.07692308rem;
  font-weight: normal;
  font-family: var(--body-font);
  line-height: 1.35;
}

.flex-grow {
  flex: 1 !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ow-break-word {
  overflow-wrap: break-word !important;
}

.btn {
  background-color: var(--active-color);
  border: var(--_bu-baw) solid var(--level-button);
  color: var(--button-color);
  font-size: var(--body-font);
  padding: 1rem 2rem;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-weight: normal;
  position: relative;
  outline: none;
  text-align: center;
  text-decoration: none;
  user-select: none;
}

.btn-transparent {
  background-color: unset;
  border: unset;
  color: var(--body-color);
  font-size: var(--body-font);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-weight: normal;
  position: relative;
  outline: none;
  text-align: center;
  text-decoration: none;
  user-select: none;
}

.btn-transparent svg {
  fill: var(--body-color);
}

.rounded {
  border-radius: 6px;
}

.pb-1 {
  padding-bottom: 0.5rem;
}

.bb {
  border-bottom: 1px solid var(--border-color);
}

.flex-wrap {
  flex-wrap: wrap;
}

.ws-nowrap {
  white-space: nowrap;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mr-2 {
  margin-right: 1rem;
}

.mr-1 {
  margin-right: 0.5rem;
}

.mr-2px {
  margin-right: 2px;
}

.light {
  opacity: 0.6;
}

#mainbar,
.mainbar {
  float: left;
  width: calc(100% - 300px - 24px);
  margin: 0;
  padding: 0;
}

.question {
  clear: both;
}

.post-layout {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}

.post-layout--left {
  grid-column: 1;
}

.votecell {
  vertical-align: top;
}

.post-layout--left,
.post-layout--left.votecell {
  width: auto;
}

.pr-2 {
  padding-right: 1rem;
}

.post-layout--right {
  grid-column: 2;
  width: auto;
  min-width: 0;
}

.question .postcell {
  vertical-align: top;
}

.fs-title {
  font-size: 1.61538462rem;
}

.votecell button {
  cursor: pointer;
}

.py6 {
  padding: 6px 0;
}

.post-content {
  font-size: large;
}

.post-content p {
  margin-bottom: 1.1em;
}

pre.s-code-block {
  background-color: var(--body-bg-color);
  border-radius: 6px;
  color: var(--body-color);
  font-family: monospace;
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
  overflow: auto;
  padding: 12px;
}

.post-content pre {
  margin-top: 0;
  margin-bottom: calc(1.1em + 0.4em);
  overflow-wrap: normal;
}

code[class*="language-"] .s-code-block .hljs-doctag,
pre.s-code-block>code .hljs-doctag,
code[class*="language-"] .s-code-block .hljs-keyword,
pre.s-code-block>code .hljs-keyword,
code[class*="language-"] .s-code-block .hljs-meta-keyword,
pre.s-code-block>code .hljs-meta-keyword,
code[class*="language-"] .s-code-block .hljs-meta,
pre.s-code-block>code .hljs-meta,
code[class*="language-"] .s-code-block .hljs-section,
pre.s-code-block>code .hljs-section,
code[class*="language-"] .s-code-block .hljs-selector-class,
pre.s-code-block>code .hljs-selector-class,
code[class*="language-"] .s-code-block .hljs-selector-pseudo,
pre.s-code-block>code .hljs-selector-pseudo,
code[class*="language-"] .s-code-block .hljs-selector-tag,
pre.s-code-block>code .hljs-selector-tag {
  color: var(--highlight-keyword);
}

code[class*="language-"] .s-code-block .hljs-built_in,
pre.s-code-block>code .hljs-built_in,
code[class*="language-"] .s-code-block .hljs-literal,
pre.s-code-block>code .hljs-literal,
code[class*="language-"] .s-code-block .hljs-title,
pre.s-code-block>code .hljs-title {
  color: var(--highlight-literal);
}

code[class*="language-"] .s-code-block .hljs-link,
pre.s-code-block>code .hljs-link,
code[class*="language-"] .s-code-block .hljs-meta-string,
pre.s-code-block>code .hljs-meta-string,
code[class*="language-"] .s-code-block .hljs-regexp,
pre.s-code-block>code .hljs-regexp,
code[class*="language-"] .s-code-block .hljs-selector-attr,
pre.s-code-block>code .hljs-selector-attr,
code[class*="language-"] .s-code-block .hljs-string,
pre.s-code-block>code .hljs-string,
code[class*="language-"] .s-code-block .hljs-symbol,
pre.s-code-block>code .hljs-symbol,
code[class*="language-"] .s-code-block .hljs-template-variable,
pre.s-code-block>code .hljs-template-variable,
code[class*="language-"] .s-code-block .hljs-variable,
pre.s-code-block>code .hljs-variable {
  color: var(--highlight-variable);
}

code[class*="language-"] .s-code-block .hljs-name,
pre.s-code-block>code .hljs-name,
code[class*="language-"] .s-code-block .hljs-number,
pre.s-code-block>code .hljs-number,
code[class*="language-"] .s-code-block .hljs-quote,
pre.s-code-block>code .hljs-quote,
code[class*="language-"] .s-code-block .hljs-selector-id,
pre.s-code-block>code .hljs-selector-id,
code[class*="language-"] .s-code-block .hljs-template-tag,
pre.s-code-block>code .hljs-template-tag,
code[class*="language-"] .s-code-block .hljs-type,
pre.s-code-block>code .hljs-type {
  color: var(--highlight-namespace);
}

code[class*="language-"] .s-code-block .hljs-comment,
pre.s-code-block>code .hljs-comment {
  color: var(--highlight-comment);
}

.mb12 {
  margin-bottom: 12px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.post-taglist {
  margin-bottom: 10px;
  clear: both;
}

.gsy,
.gsy>.d-flex,
.gsy>[class*="flex--item"] {
  margin-right: 0;
  margin-left: 0;
}

.gs4 {
  margin: calc(4px / 2 * -1);
}

.relative {
  position: relative !important;
}

.d-inline {
  display: inline !important;
}

.list-ls-none {
  list-style: none;
}

.ml0 {
  margin-left: 0 !important;
}

.mr4 {
  margin-right: 4px !important;
}

.post-tag,
.moderator-tag,
.required-tag,
.disliked-tag,
.company-tag,
.geo-tag,
.geo-tag,
.container .chosen-choices .search-choice,
.container .chosen-container-multi .chosen-choices li.search-choice {
  display: inline-block;
  padding: 0.4em 0.5em;
  margin: 2px 2px 2px 0;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

.post-tag,
.geo-tag,
.container .chosen-choices .search-choice,
.container .chosen-container-multi .chosen-choices li.search-choice {
  background-color: var(--inactive-color);
  color: var(--subtitle-color);
  border-color: var(--border-color);
}

.post-tag,
.geo-tag,
.container .chosen-choices .search-choice,
.container .chosen-container-multi .chosen-choices li.search-choice {
  font-size: 12px;
}

.pl0 {
  padding-left: 0 !important;
}

.pt4 {
  padding-top: 4px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.gs4 .flex--item {
  margin: calc(8px / 2);
}

a {
  cursor: pointer;
  text-decoration: none;
  user-select: auto;
  color: var(--blue-400);
}

.owner {
  border-radius: 3px;
}

.post-signature {
  text-align: left;
  vertical-align: top;
  width: 200px;
}

.user-info {
  box-sizing: border-box;
  padding: 5px 6px 7px 7px;
  color: var(--black-600);
}

.user-info:before,
.user-info:after {
  content: "";
  display: table;
}

.user-info:after {
  clear: both;
}

.user-info .user-action-time {
  margin-top: 1px;
  margin-bottom: 4px;
  font-size: 12px;
}

.relativetime {
  text-decoration: none;
}

.user-info .user-gravatar32 {
  float: left;
  width: 32px;
  height: 32px;
  border-radius: 1px;
}

[class*="gravatar-wrapper-"] {
  padding: 0;
  overflow: hidden;
}

.gravatar-wrapper-32,
.gravatar-wrapper-32 img {
  width: 32px;
  height: 32px;
}

.bar-sm {
  border-radius: 3px !important;
}

[class*="gravatar-wrapper-"] img {
  margin: 0 auto;
}

.gravatar-wrapper-32,
.gravatar-wrapper-32 img {
  width: 32px;
  height: 32px;
}

.user-info .user-gravatar32 img {
  border-radius: 1px;
}

.user-details {
  line-height: 17px;
  word-wrap: break-word;
}

.user-info .user-details {
  float: left;
  width: 100%;
}

.user-info .user-gravatar32~.user-details {
  margin-left: 8px;
  width: calc(100% - 40px);
}

.d-none {
  display: none !important;
}

.user-info .-flair {
  display: block;
}

.reputation-score {
  font-weight: bold;
  font-size: 12px;
  margin-right: 2px;
}

.-flair>span:not(.reputation-score) {
  margin-right: 3px;
  margin-left: 2px;
}

.badge1,
.badge2,
.badge3 {
  display: inline-block;
  overflow: hidden;
  line-height: inherit;
  vertical-align: sub;
  width: 14px;
  height: 14px;
}

.badge3 {
  background-position: -57px -398px;
}

.envelope-on,
.envelope-off,
.vote-up-off,
.vote-up-on,
.vote-down-off,
.vote-down-on,
.feed-icon,
.vote-accepted-off,
.vote-accepted-on,
.vote-accepted-bounty,
.badge-earned-check,
.delete-tag,
.grippie,
.expander-arrow-hide,
.expander-arrow-show,
.expander-arrow-small-hide,
.expander-arrow-small-show,
.anonymous-gravatar,
.badge1,
.badge2,
.badge3 {
  background-image: url(https://community.faceio.net/sprites.png);
  background-image: url(https://community.faceio.net/sprites.svg), none;
  background-size: initial;
  background-repeat: no-repeat;
  overflow: hidden;
}

.badge1,
.badge2,
.badge3 {
  margin-right: 3px;
  margin-left: 2px;
  width: 6px;
}

.badge3 {
  background-position: -62px -398px;
}

.badgecount {
  font-size: 12px;
  font-weight: bold;
  padding-left: 2px;
  color: var(--black-600);
}

.badgecount {
  padding-left: 0;
}

.user-details .badgecount {
  font-weight: 400;
  font-size: 12px;
}

.v-visible-sr {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  overflow-wrap: normal;
}

.post-layout--right {
  padding-right: 16px;
  grid-column: 2;
  width: auto;
  min-width: 0;
}

.bt {
  border-top-style: solid !important;
  border-top-width: 1px !important;
}

.bc-black-2,
.bc-black-075 {
  border-color: var(--border-color) !important;
}

.mt12 {
  margin-top: var(--su12) !important;
}

.comments {
  width: 660px;
  padding-bottom: 10px;
}

.comments {
  -webkit-tap-highlight-color: hsla(0, 0%, 100%, 0);
}

.post-layout--right .post-content,
.post-layout--right .comments {
  width: 100%;
}

ul.comments-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@supports (display: grid) and (display: contents) and (not (-apple-trailing-word: auto)) {
  body:not(.no-grid-comments) ul.comments-list {
    display: grid;
  }
}

.comment:not([style*="background-color"]) {
  transition: background-color linear 3s;
}

ul.comments-list .comment {
  display: flex;
}

@supports (display: grid) and (display: contents) and (not (-apple-trailing-word: auto)) {
  body:not(.no-grid-comments) ul.comments-list .comment {
    display: contents;
  }
}

.comment-text,
.comment-form {
  padding: 0 6px 0 7px;
  vertical-align: text-top;
}

.comment-text,
.flag-action-card-text {
  font-size: 13px;
  line-height: 1.4;
}

ul.comments-list .comment-text {
  flex-grow: 1;
}

ul.comments-list .comment>* {
  border-bottom: 1px solid var(--border-color);
}

ul.comments-list .comment-text,
ul.comments-list comment-form,
ul.comments-list .comment-actions {
  padding: 6px 0;
}

ul.comments-list .comment-text {
  min-width: 0;
  flex-basis: 0;
  padding-left: 6px;
  padding-right: 6px;
}

ul.comments-list .comment-text,
ul.comments-list .comment-actions {
  transition: background-color ease-out 3s;
}

ul.comments-list .comment-body {
  word-wrap: break-word;
}

.d-inline-flex {
  display: inline-flex !important;
}

a.comment-user {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
}

.comment-date {
  color: var(--black-600);
}

.comment-date,
.comment-date>a,
.comment-date>a:hover {
  border-bottom: none;
  color: var(--black-600);
}

.comment-date,
.comment-date>a,
.comment-date>a:hover {
  border-bottom: none;
  color: var(--black-600);
}

.o50 {
  opacity: .5 !important;
}

.va-text-bottom {
  vertical-align: text-bottom !important;
}

.svg-icon,
.svg-spot {
  vertical-align: bottom;
}

.svg-icon {
  vertical-align: bottom;
}

.s-select {
  color: var(--body-color);
  position: relative;
}

.s-select>select {
  background-color: var(--theme-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--active-color);
  font-size: 13px;
  padding: .6em .7em;
  appearance: none;
  font-family: inherit;
  height: 100%;
  line-height: 1.1;
  outline: 0;
  padding-right: 32px;
  position: relative;
  width: 100%;
}

.s-select:before,
.s-select:after {
  border-color: currentColor transparent;
  border-style: solid;
  border-width: 4px;
  content: "";
  pointer-events: none;
  position: absolute;
  right: calc(12px + 1px);
  z-index: 25;
}

.s-select:before {
  border-top-width: 0;
  top: calc(50% - calc(4px + 1px));
}

.s-select:after {
  border-bottom-width: 0;
  top: calc(50% + 1px);
}

.answer {
  padding-bottom: 16px;
  padding-top: 16px;
}

.answer,
.post-editor,
#answers-header {
  width: 100%;
}

.question-page #answers .answer {
  border-bottom: 1px solid var(--border-color);
}



#related-questions {
  padding-top: 32px;
  padding-right: 16px;
  padding-left: 16px;
}

.fs-body3 {
  font-size: var(--fs-body3) !important;
}

#related-questions>div {
  padding-bottom: 8px;
}

/* Footer */
.footer {
  background: var(--header-bg-color);
  padding: 60px 40px 30px;
  margin-top: auto;
  white-space: unset;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.dark-mode .footer {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.footer-logo-section {
  flex: 1;
  min-width: 280px;
}

.footer-logo-section .logo-part img {
  width: 190px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.footer-description {
  margin-bottom: 30px;
}

.footer-description span {
  color: var(--subtitle-color);
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  display: block;
}

.social {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin: 20px 0;
  flex-wrap: wrap;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--active-color), #0152cc);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dark-mode .social-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(1, 98, 255, 0.4);
}

.dark-mode .social-icon {
  backdrop-filter: blur(10px);
}

.dark-mode .social-icon:hover {
  background: var(--active-color);
}

.gap-2x {
  height: 20px;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 10px;
}

.powered-text {
  color: var(--subtitle-color);
  font-size: 13px;
  font-weight: 500;
}

.powered-by img {
  width: 190px;
}

body.dark-mode .powered-by img {
  filter: brightness(100) invert(100);
}

.footer-links-section {
  flex: 2;
  min-width: 300px;
  width: 100%;
}

.footer-links-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 180px;
}

.footer-menu-group {
  margin-bottom: 0;
}

.footer-menu--title {
  font-weight: 600;
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.footer-menu--title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--active-color);
}

.footer-menu--content---list {
  list-style: none;
  padding: 0;
}

.footer-menu--content---list li {
  margin-bottom: 12px;
}

.footer-menu--content---list a {
  color: var(--subtitle-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  transition: all 0.3s ease;
}

.footer-menu--content---list a:hover {
  color: var(--active-color) !important;
  padding-left: 5px;
}

.footer-menu--content---list a i {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 6px;
}

.footer-search-description {
  color: var(--subtitle-color);
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.footer-search-column {
  min-width: 250px;
}

.footer-search-form {
  margin-top: 10px;
}

.footer-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--theme-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 13px;
  padding: 10px 16px 10px 42px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.footer-search-wrapper:focus-within {
  border-color: var(--active-color);
  box-shadow: 0 0 0 3px rgba(1, 98, 255, 0.1);
}

.search-icon {
  position: absolute;
  left: 16px;
  font-size: 16px;
  color: var(--subtitle-color);
  transition: transform 0.3s ease, color 0.3s ease;
  pointer-events: none;
}

.footer-search-wrapper:focus-within .search-icon {
  color: var(--active-color);
}

.footer-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--body-color);
  font-family: "Poppins", sans-serif;
}

.footer-search-input::placeholder {
  color: var(--subtitle-color);
  opacity: 0.8;
}

.dark-mode .footer-search-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .footer-search-input {
  color: #fff;
}

.dark-mode .search-icon {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-bottom .container {
  max-width: 100%;
}

.footer-bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}

.copyright-text {
  color: var(--subtitle-color) !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.footer-badges {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  align-items: center;
}

.footer-badges img {
  width: 140px;
  border-radius: 6px;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn {
  position: relative;
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 15px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  min-width: 120px;
  max-width: 100%;
  border: 2px solid #46bdf4;
  box-sizing: border-box;
  transition: all 0.5s;
  position: relative;
  border-radius: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn-md {
  font-size: 12px;
  line-height: 24px;
  padding: 10px 26px;
}

.btn-auto {
  min-width: 44px !important;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-round {
  border-radius: 40px;
}

.pdt-l,
.pd-l,
.pdy-l {
  padding-top: 40px !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn-round.btn-md {
  border-radius: 44px;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.field-inline .submit-wrap .btn {
  width: 100%;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.gutter-vr-30px {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}

.footer-menu .footer-menu--content---list li {
  position: relative;
  padding: 5px 0;
  line-height: 1;
}

p:last-child {
  margin-bottom: 0;
}

.copyright-text p {
  color: inherit;
}

.copyright-text-s3 p {
  font-size: 13px;
  color: inherit;
}

.copyright-text li a,
.copyright-text p {
  font-size: 13px;
  color: #fff;
}

.dark-mode p,
.dark-mode .list {
  color: #fff;
  font-size: large;
}

.d-block {
  display: block !important;
}

.copyright-text-s3 span {
  color: #28384c;
  padding-bottom: 3px;
}

.dark-mode .copyright-text-s3 span {
  color: #fff;
}

.pagination,
.pagination2,
.pagination3 {
  display: inline-block;
  padding: 0;
  margin: 8px 0;
}

.pagination li,
.pagination2 li,
.pagination3 li {
  display: inline;
}

.pagination li a,
.pagination2 li a,
.pagination3 li a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.border li a {
  transition: background-color .3s;
  border: 1px solid #059862;
}

ul.pagination2 li a.active,
ul.pagination3 li a.active {
  background-color: #4CAF50;
  color: white;
  border: 1px solid #4CAF50;
}

a:hover,
a:active {
  color: #059862;
}

a:active,
a:hover {
  outline-width: 0;
}

ul.pagination2 li a:hover:not(.active),
ul.pagination3 li a:hover:not(.active) {
  background-color: #059862;
  color: white;
}

.dark-mode .pagination li a,
.dark-mode .pagination2 li a,
.dark-mode .pagination3 li a {
  color: white;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.dark-mode .border li a {
  transition: background-color .3s;
  border: 1px solid rgba(50, 50, 50, 0.7);
}

.dark-mode ul.pagination2 li a.active,
.dark-mode ul.pagination3 li a.active {
  background-color: rgba(50, 50, 50, 0.7);
  color: white;
  border: 1px solid rgba(50, 50, 50, 0.7);
}

.dark-mode a:hover,
.dark-mode a:active {
  color: white;
}

.dark-mode a:active,
.dark-mode a:hover {
  outline-width: 0;
}

.dark-mode ul.pagination2 li a:hover:not(.active),
.dark-mode ul.pagination3 li a:hover:not(.active) {
  background-color: rgba(50, 50, 50, 0.7);
}

/* Extra Large Screens (1300px and down) */
@media screen and (max-width: 1300px) {
  .detail-page .search-type {
    display: none;
  }

  .detail-page .searched-jobs {
    padding-left: 0;
  }
}

/* Large Screens (1212px and down) */
@media screen and (max-width: 1212px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .logo img {
    max-width: 140px;
  }

  .footer-logo-section .logo-part img {
    width: 160px;
  }

  .header-menu {
    gap: 15px;
  }

  .console-button {
    display: none;
  }
}

/* Medium-Large Screens (990px and down) */
@media screen and (max-width: 990px) {

  .explain-contents,
  .explain-bar {
    height: auto;
  }

  .explain-bar {
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .explain-contents {
    width: 50%;
  }

  .explain-contents+.explain-contents {
    padding: 0;
    border: 0;
  }

  .explain-contents:nth-child(2)~.explain-contents {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
  }

  .job-subtitle-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-subtitle-wrapper .posted {
    margin-left: 0;
    margin-top: 6px;
  }

  #mainbar,
  .mainbar {
    width: 100%;
    float: none;
  }

  .footer {
    padding: 40px 25px;
  }

  .footer .footer-main {
    flex-direction: column;
  }
}

/* Medium Screens (930px and down) */
@media screen and (max-width: 930px) {

  /* Grid and Layout */
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .job-card {
    display: flex;
    align-items: baseline;
    flex-direction: column;
  }

  .job-card .job-card-statistics {
    display: flex;
    flex-direction: row;
    width: 100%;
    text-align: right;
  }

  /* Search Components */
  .search-salary {
    display: none;
  }

  .search-bar {
    width: auto;
  }

  /* Header */
  .header {
    padding: 12px 20px;
    flex-wrap: wrap;
    position: relative;
  }

  .header-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
  }

  .header-menu.active {
    display: flex;
  }

  .header-menu a.console-link {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* User Interface */
  .user-settings {
    gap: 10px;
    position: absolute;
    top: 13px;
    right: 20px;
  }

  .theme-toggle {
    position: relative;
    top: 0;
    right: 0;
  }

  .wrapper {
    padding: 20px;
  }

  #mainbar,
  .mainbar {
    width: 100%;
    float: none;
  }

  .sm-flex-column {
    flex-direction: column !important;
  }

  .sm-ai-start {
    align-items: flex-start !important;
  }

  .sm-order-first {
    order: -1 !important;
  }

  .sm-flex-end {
    align-self: flex-end !important;
  }
}

/* Small-Medium Screens (760px and down) */
@media screen and (max-width: 760px) {
  .detail-page .job-overview-cards {
    display: none;
  }

  .job-explain {
    margin-left: 0;
  }

  /* User Interface */
  .user-name {
    display: none;
  }

  .user-profile {
    margin-right: 0;
  }

  /* Search */
  .search-location {
    display: none;
  }

  .search-menu {
    padding: 15px;
  }

  .search-job form {
    flex-direction: column;
    gap: 10px;
  }

  .search-job input {
    padding: 10px 15px;
  }

  .search-button {
    width: 100%;
    padding: 13px 25px;
  }

  /* Footer */
  .footer {
    padding: 40px 20px 20px;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links-section {
    min-width: auto;
  }

  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-badges img {
    width: 100px;
  }
}

/* Small Screens (730px and down) */
@media screen and (max-width: 730px) {
  .search-type {
    display: none;
  }

  .searched-jobs {
    padding-left: 0;
  }

  .search-menu div:not(:last-of-type) {
    border: 0;
  }

  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Small Screens (620px and down) */
@media screen and (max-width: 620px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .header-menu a:not(:first-child) {
    margin-left: 10px;
  }
}

/* Small Screens (590px and down) */
@media screen and (max-width: 590px) {
  .header-menu {
    display: none;
  }
}

/* Extra Small Screens (520px and down) */
@media screen and (max-width: 520px) {
  .search.item {
    display: none;
  }

  .search-bar {
    flex-grow: 1;
  }

  .search-bar input {
    padding: 0 0 0 30px;
  }

  .searched-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .searched-sort {
    margin-top: 5px;
  }

  .main-container {
    padding-top: 20px;
  }
}

/* Mobile Screens (480px and down) */
@media (max-width: 480px) {
  .header {
    padding: 12px 15px;
  }

  .logo img,
  .footer-logo-section .logo-part img {
    max-width: 130px;
  }

  .powered-by img {
    width: 160px;
  }

  .theme-toggle,
  .mobile-menu-toggle {
    width: 35px;
    height: 35px;
  }

  .wrapper {
    padding: 15px;
  }

  .footer {
    padding: 40px 15px 15px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* Extra Small Mobile Screens (380px and down) */
@media screen and (max-width: 380px) {
  .explain-contents {
    width: 100%;
    margin: 0;
  }

  .explain-contents:nth-child(2)~.explain-contents {
    margin: 0;
    border: 0;
  }

  .wrapper {
    padding: 20px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .btn {
    font-size: 13px;
    line-height: 25px;
    padding: 14px 30px;
    letter-spacing: 0.1em;
    min-width: 120px;
  }

  .btn-md {
    font-size: 12px;
    line-height: 24px;
    padding: 14px 20px;
    min-width: 160px;
  }

  .field-inline .btn-md {
    line-height: 23px;
  }

  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .pdt-l,
  .pd-l,
  .pdy-l {
    padding-top: 60px !important;
  }

  .container,
  .container-sm {
    max-width: 540px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .field-inline .submit-wrap .btn {
    width: auto;
    height: 100%;
  }

  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}