/* =================================================================================================
        Search Styles
==================================================================================================== */

.search-wrap {
  width: 50px;
}

.search-wrap button.btn {
  background: rgba(0, 0, 0, 0.1);
  font-size: 18px;
  border: none;
  color: #fff;
  margin: 0;
  padding: 25px 20px;
  display: inline-block;
  line-height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-width: 0 1px;
  border-radius: 0;
}

.search-wrap button.btn i {
  min-width: 20px;
}

.search-wrap button.btn:hover {
  color: rgb(255, 228, 84);
  outline: none;
  box-shadow: none;
}

div.search-wrap button.btn {
  line-height: 35px;
}

.search-wrap .search_box {
  position: absolute;
  width: 450px;
  right: 15px;
  top: 0px;
  opacity: 0;
  z-index: -2;
  visibility: hidden;
}

.search-wrap button.btn.remove i:before {
  content: "\f00d";
}

.search-wrap .search_box input[type="search"] {
  background: #fff;
  margin: 0;
  border-radius: 5px;
}

.search-wrap .search_box.open {
  top: calc(100% + 10px);
  opacity: 1;
  visibility: visible;
}

.search-wrap .search_form .search-submit:hover,
.widget button.search-submit:hover {
  background: #25aae1a3;
}

.shepherd-button {
  background: #3288e6;
  border: 0;
  border-radius: 3px;
  color: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  margin-right: 0.5rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.5s ease;
}

.shepherd-button:not(:disabled):hover {
  background: #196fcc;
  color: hsla(0, 0%, 100%, 0.75);
}

.shepherd-button.shepherd-button-secondary {
  background: #f1f2f3;
  color: rgba(0, 0, 0, 0.75);
}

.shepherd-button.shepherd-button-secondary:not(:disabled):hover {
  background: #d6d9db;
  color: rgba(0, 0, 0, 0.75);
}

.shepherd-button:disabled {
  cursor: not-allowed;
}

.shepherd-footer {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: flex;
  justify-content: flex-end;
  padding: 0 0.75rem 0.75rem;
}

.shepherd-footer .shepherd-button:last-child {
  margin-right: 0;
}

.shepherd-cancel-icon {
  background: transparent;
  border: none;
  color: hsla(0, 0%, 50%, 0.75);
  cursor: pointer;
  font-size: 2em;
  font-weight: 400;
  margin: 0;
  padding: 0;
  transition: color 0.5s ease;
}

.shepherd-cancel-icon:hover {
  color: rgba(0, 0, 0, 0.75);
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
  color: hsla(0, 0%, 50%, 0.75);
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
  color: rgba(0, 0, 0, 0.75);
}

.shepherd-title {
  color: rgba(0, 0, 0, 0.75);
  display: flex;
  flex: 1 0 auto;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.shepherd-header {
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: flex-end;
  line-height: 2em;
  padding: 0.75rem 0.75rem 0;
}

.shepherd-has-title .shepherd-content .shepherd-header {
  background: #e6e6e6;
  padding: 1em;
}

.shepherd-text {
  color: rgba(0, 0, 0, 0.75);
  font-size: 1rem;
  line-height: 1.3em;
  padding: 0.75em;
}

.shepherd-text p {
  margin-top: 0;
}

.shepherd-text p:last-child {
  margin-bottom: 0;
}

.shepherd-content {
  border-radius: 5px;
  outline: none;
  padding: 0;
}

.shepherd-element {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  opacity: 0;
  outline: none;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.shepherd-enabled.shepherd-element {
  opacity: 1;
  visibility: visible;
}

.shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

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

.shepherd-arrow,
.shepherd-arrow:before {
  height: 16px;
  position: absolute;
  width: 16px;
  z-index: -1;
}

.shepherd-arrow:before {
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.shepherd-element[data-popper-placement^="top"] > .shepherd-arrow {
  bottom: -8px;
}

.shepherd-element[data-popper-placement^="bottom"] > .shepherd-arrow {
  top: -8px;
}

.shepherd-element[data-popper-placement^="left"] > .shepherd-arrow {
  right: -8px;
}

.shepherd-element[data-popper-placement^="right"] > .shepherd-arrow {
  left: -8px;
}

.shepherd-element.shepherd-centered > .shepherd-arrow {
  opacity: 0;
}

.shepherd-element.shepherd-has-title[data-popper-placement^="bottom"] > .shepherd-arrow:before {
  background-color: #e6e6e6;
}

.shepherd-target-click-disabled.shepherd-enabled.shepherd-target,
.shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
  pointer-events: none;
}

.shepherd-modal-overlay-container {
  height: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-out, height 0ms 0.3s, opacity 0.3s 0ms;
  width: 100vw;
  z-index: 9997;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible {
  height: 100vh;
  opacity: 0.5;
  transform: translateZ(0);
  transition: all 0.3s ease-out, height 0s 0s, opacity 0.3s 0s;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible path {
  pointer-events: all;
}

span.select2-container--default .select2-selection--single span.select2-selection__arrow b {
  border-width: 6px 6px 0 6px;
  margin-left: -10px;
}

span.select2-container--default.select2-container--open .select2-selection--single span.select2-selection__arrow b {
  border-width: 0 6px 6px 6px;
}

span.select2-selection--multiple:before {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  height: 0;
  right: 0;
  margin-right: 10px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
  content: "";
}

.select2-container--open span.select2-selection--multiple:before {
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent #888;
}

/* custom css  Cards CSS */

.post-type-archive-course .course_main > * {
  padding: 0 15px;
}

.stars-wrap {
  position: relative;
}
span.star-icons {
  display: flex;
  width: 100%;
}
span.star-icons-filled {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.card.courses_card {
  border: none;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-radius: 10px;
  height: 100%;
}
.courses_card .img-wrap {
  height: 300px;
  width: 100%;
}
.courses_card .img-wrap img {
  height: 100%;
  width: 100%;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.courses_card .card-bottom {
  padding: 25px;
}
.courses_card .card-inner-top {
  padding-bottom: 15px;
}

.courses_card .category a {
  color: inherit;
}

.courses_card .llms-progress {
  display: none;
}

.courses_card .category {
  background: #102c5b;
  border-radius: 30px;
  padding: 5px 15px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: block;
  transition: 0.5s ease all;
}

.courses_card .category a:hover {
  color: #ece6e6;
}
.courses_card .card-title h4 a {
  color: #212428;
  font-size: 20px;
  text-decoration: none;
  line-height: 25px;
  font-weight: 700;
  transition: 0.5s ease all;
}
.courses_card .card-title h4 a:hover {
  color: #14b7fb;
}
.courses_card .meta-wrap {
  list-style: none;
  padding: 0;
  padding-top: 15px;
  margin-bottom: 1rem;
}

.courses_card .Jurisdiction i::before,
.courses_card .list-icon i::before {
  color: #25aae1;
  padding-right: 7px;
}

.courses_card .card-inner-bottom .price p {
  color: #25aae1;
  font-size: 25px;
  font-weight: 600;
}
.courses_card .card-inner-bottom .price p span.price_info,
.courses_card .rating-count,
.courses_card .list-text,
.courses_card .Jurisdiction span,
.courses_card .card-dis p,
.courses_card .label,
.courses_card .id_txt {
  color: #515151;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}
.courses_card .card-inner-bottom {
  border-top: 1px solid #ececec;
  padding: 20px 0 0px 0;
}

@media only screen and (max-width: 400px) {
  .courses_card .card-inner-bottom {
    padding: 15px 0 0px 0;
  }
  .courses_card .card-bottom {
    padding-top: 20px;
  }
}
/* tooltip style */
.courses_card .course_id {
  position: relative;
}

.courses_card .id_txt {
  cursor: pointer;
}

.courses_card .course_id .id-tooltip {
  position: absolute;
  top: initial;
  bottom: -25px;
  color: #fff;
  background-color: #515151;
  width: 120px;
  text-align: center;
  transition: all 0.3s ease;
  left: 0;

  line-height: 25px;
  font-size: 14px;
  opacity: 0;
}
.conveywp_body.page-dashboard .course_id.dash_visible {
  display: block;
}
.courses_card .course_id .id-tooltip {
  position: absolute;
  top: initial;
  bottom: 100%;
  color: #fff;
  background-color: #333;
  width: 120px;
  text-align: center;
  transition: all 0.3s ease;
  translate: -50%;
  left: 50%;
  line-height: 25px;
  font-size: 14px;
  opacity: 0;
}
.courses_card .id_txt:hover {
  color: #14b7fb;
}
.courses_card .id_txt:hover + .id-tooltip {
  opacity: 1;
}
.banner a img {
  border-radius: 0;
}

/* @media (min-width: 992px) {
  .course_main .llms-loop-list .col-lg-4 {
    width: 50%;
  }
} */
