 /*
 Put your custom overlay styles in here
 You can use your northpass color palette in this file

#ffffff
#ff5b4d
#ff5b4d
#ffffff
#8f8f8f
#1e1e23
*/

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-ExtraLight.ttf");
  font-weight: 200;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-ExtraLightItalic.ttf");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-LightItalic.ttf");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-MediumItalic.ttf");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-SemiBold.ttf");
  font-weight: 600;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-Bold.ttf");
  font-weight: 700;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: Karla;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Karla-ExtraBold.ttf");
  font-weight: 800;
}


@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-Thin.otf");
  font-weight: 100;
}

@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-Light.otf");
  font-weight: 300;
}

@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-Medium.otf");
  font-weight: 500;
}

@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-SemiBold.otf");
  font-weight: 600;
}

@font-face {
  font-family: Archia;
  src: url("https://s3.amazonaws.com/static.northpass.com/Digimind/Archia-Bold.otf");
  font-weight: 700;
}

html, body, .np-dashboard {
  background-color: #fff;
}

body *:not(i) {
  font-family: Karla !important;
}

body {
  color: #1e1e23;
}

.np-resource-title, .np-card-content-title,
.np-course-outline-content-activity-title,
.np-top-title, .np-course-outline-title,
.np-text-title-bold, .np-text-title,
.np-popup-header-title, .np-search-zero-state-title,
.np-training-session-sessions-title, .np-form-title,
.np-learning-path-banner-headline, .np-form-headline,
.np-homepage-headline {
  font-family: Archia !important;
}

.np-resource-title {
  color: #1e1e23;
}

.course-card .np-card-content,
.training-event-card .np-card-content {
  background-color: #F6F6F6;
}

.course-card .np-card-container,
.training-event-card .np-card-container {
  box-shadow: none;
}

/* Filters */

.filters-container,
.lp-filters-container {
  width: 100%;
  margin-bottom: 32px;
}

.filter-wrapper {
  font-weight: 500;
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.filter-dropdown {
  border: 1px solid #dddee0;
  background-color: #F6F6F6;
  padding: 10px 50px 10px 10px;
  position: relative;
  user-select: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  width: -webkit-fill-available;
  text-align: start;
}

.filter-dropdown:after {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
  border: 6px solid transparent;
  border-top-color: #1e1e23;
  top: 50%;
  right: 10px;
  margin-top: -3px;
}

.filter-dropdown.open:after {
  border-bottom-color: #fff;
  margin-top: -9px;
}

.filter-dropdown-list {
  position: absolute;
  background-color: #fff;
  top: 64px;
  left: 0;
  right: 0;
  transition: opacity 0.2s ease-in-out;
  max-height: 250px;
  pointer-events: none;
  overflow: scroll;
  overflow-x: hidden;
  opacity: 0;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.filter-dropdown-container {
  padding: 24px;
  min-height: 170px;
}

.open .filter-dropdown-list {
  opacity: 1;
  pointer-events: auto;
  z-index: 40;
}

.filter-dropdown-list .filter-item {
  display: block;
  transition: all 0.2s ease-out;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  padding-left: 35px;
  padding: 6px 0 6px 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter-dropdown-list input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 20px;
  width: 100%;
  left: 0;
  top: 6px;
  z-index: 1;
}

.filter-dropdown-list .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border: 2px solid #808285;
  border-radius: 2px;
}

.filter-dropdown-list input:checked ~ .checkmark {
  background-color: #fd4353;
  border: 2px solid #fd4353;
}

.filter-dropdown-list .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.filter-dropdown-list input:checked ~ .checkmark:after {
  display: block;
}

.filter-dropdown-list .checkmark:after {
  left: 5px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.np-homepage-featured-text {
  align-items: flex-start;
  padding: 0 64px 32px 0;
}

.np-homepage-headline {
  margin: 15px 0;
  font-size: 39px;
}

.np-homepage-subheadline {
  font-size: 24px;
  line-height: unset;
}


@media (min-width: 768px) {
  .filters-container,
  .lp-filters-container {
    display: flex;
    align-items: flex-start;
  }

  .filter-wrapper {
    margin: 0 12px;
    min-width: 200px;
  }

  .filter-wrapper:first-child {
    margin-left: 0;
  }

  .filter-wrapper:last-child {
    margin-right: 0;
  }

  .np-homepage-featured-text {
    padding: 0 64px 36px 0;
  }
}

@media (min-width: 1200px) {
  .filters-container,
  .lp-filters-container {
    width: auto;
  }
}

/* Carousels */

.slick-track {
  display: flex !important;
  margin-right: unset !important;
  margin-left: unset !important;
}

.slick-list {
  width: 100% !important;
}

.carousel-item {
  height: auto !important;
}

.arrow-right {
  font-size: 2.5rem;
  margin-right: -2rem;
  color: #77728d;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.arrow-left {
  font-size: 2.5rem;
  margin-left: -2rem;
  color: #77728d;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.carousel-wrapper {
  display: flex !important;
  margin-bottom: 20px !important;
}

.np-card {
  height: 100%;
  margin-bottom: 0px;
}

.carousel-wrapper .np-card {
  padding: 0 24px 10px 24px
}

.course-card .np-card-content-footer {
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .learning-path-card .np-card-content-vertical {
    height: 100%;
  }
}