* {
  outline: none;
  box-sizing: border-box;
}

:root {
  --body-bg-color: #e5ecef;
  --theme-bg-color: #fafafb;
  --body-font: "Poppins", sans-serif;
  --body-color: #2f2f33;
  --active-color: #f18f2b;
  --active-light-color: #e1ebfb;
  --header-bg-color: #fff;
  --search-border-color: #efefef;
  --border-color: #d8d8d8;
  --alert-bg-color: #e8f2ff;
  --subtitle-color: #83838e;
  --inactive-color: #f0f0f0;
  --placeholder-color: #9b9ba5;
  --time-button: #fc5757;
  --level-button: #5052d5;
  --button-color: #fff;
}

.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;
  --active-light-color: #263d63;
  --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;
  color: var(--body-color);
}

.dark-light svg {
  margin-right: 8px;
  width: 22px;
  cursor: pointer;
  fill: transparent;
  transition: 0.5s;
}

.dark-mode .dark-light svg {
  fill: #ffce45;
  stroke: #ffce45;
}
.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;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--theme-bg-color);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.logo svg {
  width: 24px;
  margin-right: 12px;
}
/* 
.header {
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
  flex-shrink: 0;
  padding: 0 40px;
  white-space: nowrap;
  background-color: var(--header-bg-color);
  height: 60px;
  width: 100%;
  font-size: 14px;
  justify-content: space-between;
}*/
.header-menu a {
  text-decoration: none;
  color: var(--body-color);
  font-weight: 500;
}
.header-menu a:hover {
  color: var(--active-color);
}
.header-menu a:not(:first-child) {
  margin-left: 30px;
}
.header-menu a.active {
  color: var(--active-color);
}

.user-settings {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.user-settings svg {
  width: 20px;
  color: #94949f;
}

.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 {
  height: 56px;
  white-space: nowrap;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  background-color: var(--header-bg-color);
  border-radius: 8px;
  width: 100%;
  padding-left: 20px;
}
.search-menu div:not(:last-of-type) {
  border-right: 1px solid var(--search-border-color);
}

.search-bar {
  height: 55px;
  width: 100%;
  position: relative;
}
.search-bar input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%230162ff'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 0 50%;
  padding: 0 25px 0 305px;
}

.search-location,
.search-job,
.search-salary {
  display: flex;
  align-items: center;
  width: 50%;
  font-size: 14px;
  font-weight: 500;
  padding: 0 25px;
  height: 100%;
}
.search-location input,
.search-job input,
.search-salary input {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
}
.search-location svg,
.search-job svg,
.search-salary svg {
  margin-right: 8px;
  width: 18px;
  color: var(--active-color);
  flex-shrink: 0;
}

.search-button {
  background-color: var(--active-color);
  height: 55px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 0 8px 8px 0;
  color: var(--button-color);
  cursor: pointer;
  margin-left: auto;
}

.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;
}

.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: 14px;
}

.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(3, 1fr);
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -webkit-animation: slideY 0.6s both;
  animation: slideY 0.6s both;
}
@media screen and (max-width: 1212px) {
  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 930px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-card {
  background-color: var(--header-bg-color);
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  background-color: rgb(255 222 156 / 0%);
  box-shadow: 0 0 30px rgb(0 0 0 / 15%);
}
.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: rgba(151, 119, 250, 0.12);
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #37404e;
  white-space: nowrap;
  margin-bottom: 10px;
}

.detail-button + .detail-button {
  margin-left: 4px;
}

.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);
  text-align: center;
}

.menu-dot {
  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;
}
@media screen and (max-width: 1300px) {
  .detail-page .search-type {
    display: none;
  }
  .detail-page .searched-jobs {
    padding-left: 0;
  }
}

@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;
  }
}
@media screen and (max-width: 930px) {
  .search-job,
  .search-salary {
    display: none;
  }

  .search-bar {
    width: auto;
  }
}
@media screen and (max-width: 760px) {
  .detail-page .job-overview-cards {
    display: none;
  }

  .user-name {
    display: none;
  }

  .user-profile {
    margin-right: 0;
  }

  .job-explain {
    margin-left: 0;
  }
}
@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(2, 1fr);
  }

  .search-location {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .job-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .header-menu a:not(:first-child) {
    margin-left: 10px;
  }
}
@media screen and (max-width: 590px) {
  .header-menu {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .search.item {
    display: none;
  }

  .search-bar {
    flex-grow: 1;
  }

  .search-bar input {
    padding: 0 0 0 30px;
  }

  .search-button {
    margin-left: 16px;
  }

  .searched-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .searched-sort {
    margin-top: 5px;
  }

  .main-container {
    padding-top: 20px;
  }
}
@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;
  }

  /* .header {
    padding: 0 20px;
  } */
}

.search-buttons.card-buttons {
  text-align: center;
}
.search-buttons.card-buttons:hover {
  color: #fff;
}
.box-head-single {
  background-color: #fff9f3;
  display: inline-block;
  width: 100%;
  padding: 55px 0px;
  position: relative;
}
.box-shadow-bdrd-15 {
  border-radius: 15px;
  -webkit-box-shadow: 0px 20px 60px -6px rgb(0 0 0 / 4%);
  box-shadow: 0px 20px 60px -6px rgb(0 0 0 / 4%);
  background-color: #ffffff;
  padding: 15px;
  border: thin solid #ececec;
}
.box-filters .box-search-job {
  display: inline-block;
  vertical-align: middle;
}
.box-filters .box-search-job .form-search-job {
  float: left;
  padding-right: 20px;
}
.box-filters .box-search-job .form-search-job .input-search-job {
  border: 0px;
  padding: 12px 10px 10px 45px;
  background: url(../img/icons/lineal/jobs/icon-search.svg) no-repeat 10px
    center;
}
.d-flex {
  display: flex !important;
}
/* i.fa.fa-rupee{
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
  color: #f18f2b;
  font-size: 14px;
  line-height: 16px;
}
.btn.dropdown-toggle:hover {
  color: #88929b;
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}
.d-block {
  display: block !important;
}
.job-fillter .dropdown {
  margin-right: 15px;
  width: 30%;
  max-width: 170px;
}
.job-fillter .dropdown .dropdown-toggle {
  font-size: 14px;
  line-height: 16px;
}
.job-fillter .dropdown .dropdown-toggle i {
  color: #88929b;
  float: left;
  margin: -3px 7px 0px 0px;
  font-size: 18px;
}

.job-fillter .dropdown .dropdown-toggle .fa.fa-angle-down {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
}
.btn.dropdown-toggle {
  color: #88929b;
}
.job-fillter .dropdown .dropdown-toggle i {
  color: #88929b;
  float: left;
  margin: -3px 7px 0px 0px;
  font-size: 18px;
}
.job-fillter .dropdown .dropdown-toggle::after {
  border: 0px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.job-fillter .dropdown .dropdown-toggle {
  font-size: 14px;
  line-height: 16px;
}
.job-fillter .box-button-find {
  width: 140px;
  float: right;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.job-fillter .btn-default {
  width: 140px;
  max-width: 140px;
}

.btn.btn-default {
  color: #ffffff;
  background-color: #f18f2b;
  border-radius: 10px;
}

.btn {
  font-family: "Open Sans", sans-serif;
  border-radius: 10px;
  padding: 14px 25px;
  font-size: 18px;
  line-height: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.box-filters .list-tags-job {
  vertical-align: middle;
  float: right;
}
.box-filters .list-tags-job a {
  display: inline-block;
  padding: 12px 45px 12px 22px;
  border-radius: 10px;
  background-color: #f1f7ff;
  text-decoration: none;
  position: relative;
}

.text-normal {
  font-size: 16px;
  line-height: 22px;
  color: #37404e;
}
.box-filters .list-tags-job a .remove-tags-job {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  height: 15px;
  width: 15px;
  background: url(../img/icons/lineal/jobs/icon-remove.svg) no-repeat center;
}

.dropdown-toggle {
  white-space: nowrap;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (max-width: 575.98px) {
  .box-shadow-bdrd-15.box-filters {
    padding-bottom: 30px;
  }

  /* .box-filters .list-tags-job {
    display: none;
}
.job-fillter.d-flex .box-button-find {
  float: none;
} */
  .box-shadow-bdrd-15 {
    background-color: #ffffff;
  }
  .d-flex.job-fillter {
    display: block !important;
  }
}
i.ti-location-pin,
i.ti-location-pin:before,
.fa-briefcase:before,
.fa-map-marker:before {
  color: #f18f2b;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #f18f2b !important;
}
.detail-button .fa-map-marker:before {
  color: #212529 !important;
}
/* .svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
} */
.job-card-bg {
  background: url("../img/hospital/applo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.job-card-bg1 {
  background: url("../img/hospital/emergency.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.job-card-bg2 {
  background: url("../img/hospital/corido.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.job-card-bg3 {
  background: url("../img/hospital/aiims.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.job-card-bg4 {
  background: url("../img/hospital/stracher.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.job-card-bg5 {
  background: url("../img/hospital/applo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 10vh;
  min-height: 143px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-body {
  padding: 20px 16px;
}
.job-header-content {
  margin-top: -52px;
  position: relative;
  margin-bottom: -36px;
  padding: 0px 20px 20px;
}
.overlay {
  height: 100%;
  background: rgb(0 0 0 / 60%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  border: 4px solid #f28f0030;
}
.hospi-color {
  color: #fff;
}
.strip-sec {
  background: rgb(255, 97, 88);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 97, 88, 1) 0%,
    rgba(255, 97, 88, 1) 50%,
    rgba(55, 35, 84, 1) 50%,
    rgba(55, 35, 84, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 97, 88, 1) 0%,
    rgba(255, 97, 88, 1) 50%,
    rgba(55, 35, 84, 1) 50%,
    rgba(55, 35, 84, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 97, 88, 1) 0%,
    rgba(255, 97, 88, 1) 50%,
    rgba(55, 35, 84, 1) 50%,
    rgb(43 90 164) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff6158", endColorstr="#3c2064", GradientType=1);
  color: #ffffff;
}
.strip-sec .left-sec {
  position: relative;
  z-index: 1;
  height: 230px;
  display: flex;
  align-items: center;
}
section .left-sec {
  padding-right: 30px;
}
.strip-sec .left-sec .people-group {
  position: absolute;
  top: 36px;
  left: -28px;
  width: 250px;
}
.strip-sec .left-sec .text {
  position: relative;
  right: -95px;
  padding-left: 125px;
  padding-right: 30px;
}
@media (min-width: 1440px) {
  .strip-sec .left-sec h2 {
    font-size: 27px;
  }
}
.strip-sec .left-sec h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.strip-sec .right-sec {
  text-align: center;
  display: flex;
  align-items: center;
  margin-left: -1px !important;
  height: 230px;
  background: url(../img/hospital/strip-square.png) no-repeat center left / auto
    100% transparent;
  padding-left: 120px;
}

section .right-sec {
  padding-left: 30px;
}
.strip-sec .right-sec img {
  display: block;
  margin: auto;
}
section.strip-sec {
  padding: 0px;
}
.strip-sec .right-sec h5 {
  font-size: 15px;
  font-weight: 600;
  border-top: 1px solid #67597b;
  margin-top: 20px;
  padding: 15px 0 0 0;
  line-height: 24px;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  margin-bottom: 0;
}
.strip-sec .right-sec h5 span {
  font-weight: 300;
  display: block;
  text-transform: none;
  color: #fff;
}
.strip-man {
  width: 396px;
  margin-top: -35px !important;
}

/* mobile view */

@media only screen and (max-width: 767px) {
  .strip-sec .left-sec .people-group {
    position: absolute;
    top: 96px;
    left: 32px;
    width: 129px;
  }
  .strip-sec .left-sec {
    position: relative;
    z-index: 1;
    height: 230px;
    display: flex;
    align-items: baseline;
  }
  .strip-sec .left-sec .text {
    position: relative;
    right: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin: auto;
  }
  .strip-sec .left-sec .people-group {
    position: absolute;
    top: 166px;
    left: 32px;
    width: 129px;
  }
  .d-flex.job-fillter {
    display: block !important;
  }
  .hospi-color {
    font-size: 16px;
  }
  .box-filters .list-tags-job,
  .job-fillter .box-button-find {
    float: left;
  }
}
.toggle-side .menu-toggle {
  display: none;
  float: right;
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  right: 15px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .search-type {
    padding: 0 20px;
  }
  .menu-toggle,
  .search-type {
    display: block !important;
  }
  .search-type {
    position: absolute;
    box-shadow: 0 0 30px rgb(0 0 0 / 15%);
    width: 80%;
    height: auto;
    background: #fff;
    z-index: 9999;
    top: 0;
    left: -100%;
    transition: 0.5s;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .search-type.active {
    left: 0;
  }
  .menus-close-button {
    width: 30px;
    height: 40px;
    font-size: 26px;
    position: absolute;

    right: 0;
    display: block;
    right: 0;
    float: right;
    color: #4e5c79;
    cursor: pointer;
  }
}
