.networks-primary-teaser {
  background: #fff;
  border: 1px solid #eef4f5;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  align-items: stretch;
}

/*
.networks-primary-teaser .network-user-link {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/
.networks-primary-teaser:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .networks-primary-teaser {
    flex-direction: column;
  }
}

.networks-primary-teaser .network-image {
  width: 130px;
  max-width: 130px;
  min-width: 130px;

  height: 148px;
  background-color: var(--color-ink-terface-5);
}

.networks-primary-teaser .network-image img {
  object-fit: cover;
}

@media (max-width: 767px) {
  .networks-primary-teaser .network-image {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
    margin-bottom: 10px;
  }

  .networks-primary-teaser .network-image img {
    border-radius: 10px;
    overflow: hidden;
  }
}

.networks-primary-teaser .network-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}

.networks-primary-teaser .network-status {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  color: #00ce9d;
  margin-left: auto;
}

@media (max-width: 767px) {
  .networks-primary-teaser .network-status {
    margin-left: 0;
  }
}

.networks-primary-teaser .network-status:after {
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: currentColor;
  content: "";
  display: block;
  margin-left: 7px;
}

.networks-primary-teaser .network-status.inactive {
  color: var(--color-ink-terface-3);
}

.networks-primary-teaser .network-name {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #003187;
}

.networks-primary-teaser .network-info {
  display: inline;
  align-items: center;
  margin-top: 4px;
}

/* @media (max-width: 767px) {
  .networks-primary-teaser .network-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .networks-primary-teaser .devider-sign,
  .networks-primary-teaser .devider-dash {
    display: none;
  }
} */

.networks-primary-teaser .devider-sign,
.networks-primary-teaser .devider-dash,
.networks-primary-teaser .network-location,
.networks-primary-teaser .network-company,
.networks-primary-teaser .network-position {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #9eaabf;
}

.devider-sign,
.devider-dash {
  margin: 0 4px;
}

.networks-primary-teaser .devider-dash,
.networks-primary-teaser .network-location {
  font-weight: 500;
}

.networks-primary-teaser .network-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 100px 12px;
  overflow: hidden;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .networks-primary-teaser .network-skills {
    margin-bottom: 12px;
  }
}

.networks-primary-teaser .network-skill {
  display: flex;
  flex-direction: column;
  height: 32px;
  background-color: white;
  border: 1px solid var(--color-ink-terface-5);
  border-radius: 4px;
}

.networks-primary-teaser .network-skill__icon {
  height: 28px;
  width: 40px;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.networks-primary-teaser .network-skill__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.95);
  /* if modified, please sync with explore-jobs.css line 1151 */
  /* this enormous line is needed to normalize skill img to a dark blue */
  /* grayscale(1) brightness(0) make them black, and the rest turns into blue */
  /* use this tool to update : https://codepen.io/sosuke/pen/Pjoqqp */
  /*filter: grayscale(1) brightness(0) invert(15%) sepia(41%) saturate(5183%) hue-rotate(214deg) brightness(91%) contrast(105%);*/

}

.networks-primary-teaser .network-skill__label {
  font-size: 11px;
  font-weight: 400;
  min-width: 46px;
  max-width: 110px;
  overflow: hidden;
  padding: 0 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  justify-content: center;
  color: var(--color-ink-terface-3);
  display: block;
  margin: auto;
}


.networks-primary-teaser .experience-progress {
  border-radius: 8px;
  width: 100%;
  min-height: 3px;
  background: rgba(158, 170, 191, 0.5);
  position: relative;
  overflow: hidden;
  display: none;
  /* DISABLE SKILL PROGRESS BAR */
}

.networks-primary-teaser .experience-progress:after {
  content: "";
  background-color: #00c9ff;
  width: 0%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  transition: width 0.5s ease-in-out;
  z-index: 0;
  display: none;
  /* DISABLE SKILL PROGRESS BAR */
}

.networks-primary-teaser .experience-progress.progress-init[value="25"]:after {
  width: 25%;
}

.networks-primary-teaser .experience-progress.progress-init[value="50"]:after {
  width: 50%;
}

.networks-primary-teaser .experience-progress.progress-init[value="75"]:after {
  width: 75%;
}

.networks-primary-teaser .experience-progress.progress-init[value="100"]:after {
  width: 100%;
}

.networks-primary-teaser .user-connect-btn {
  color: #ff3366;
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  min-width: 101px;
  justify-content: space-between;
  padding: 3px 11px;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.networks-primary-teaser .user-connect-btn::after {
  content: "";
  display: block;
  margin-left: 10px;
  margin-bottom: 2px;
  background: url("../../resources/icons/user-connect-red.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.networks-primary-teaser .user-connect-btn:hover {
  background-color: #fff;
  border: 1px solid #eef4f5;
}

.networks-primary-teaser .network-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 767px) {
  .networks-primary-teaser .network-content {
    max-width: 100%;
  }
}

.networks-primary-teaser .network-content__top {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #eef4f5;
  flex: 1;
}

.networks-primary-teaser .network-content__bottom {
  display: flex;
  justify-content: space-between;
  padding: 0px 15px;
  flex: 1;
  height: 49px;
  max-height: 49px;
  min-height: 49px;
  background-color: var(--color-ink-terface-6);
}

.networks-primary-teaser .network-content__bottom .btn-primary {
  padding: 4px 12px;
  margin: 0 0 0 10px;
}

.network-connect {
  margin: auto 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-ink-terface-2);
}

.user-connect-pending {
  padding: 4px 12px;
}

.network-content__bottom .btn-primary {
  color: var(--color-cherry-pop);
  background-color: transparent;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  align-items: center;
  margin: auto 10px auto auto;
  justify-content: end;
}

.network-content__bottom .btn-primary:hover {
  background-color: transparent;
  border: none;
  outline: none;
}

@media (max-width: 767px) {
  .networks-primary-teaser .network-content__bottom {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    max-height: none;
  }

  .networks-primary-teaser .network-skills {
    gap: 12px;
    justify-content: center;
  }

  .networks-primary-teaser .network-content__bottom .btn-primary {
    margin: 0 0 10px 0;
  }
}

@media (min-width: 767px) {
  .nework-position-company {
    max-height: 25px;
    overflow: hidden;
  }
}

/*# sourceMappingURL=networks-primary-teaser.css.map */