@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: "Montserrat", sans-serif;
}

/* -------------------------
library Page css Start
------------------------- */

.library-wrapper {
  background-color: #f5f5f5;
  height: 413px;
}

.library-meta {
  padding: 165px 0 0 0;
  text-align: center;
}

.library-meta span {
  color: #252b42;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0 0 5px;
}

.library-meta p {
  counter-reset: #3a4367;
  margin: 0;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
}

.library-meta p strong {
  font-size: 15px;
  font-weight: 700;
}

/* -------------------------------------------
Filtter Advance Search Bar               
------------------------------------------- */

.search-wrap {
  margin: 0 0 25px;
}

.search-wrap h2 {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}

.search-wrap p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.search-wrap .search-form {
  max-width: 560px;
  margin: 25px auto 0;
  position: relative;
  z-index: 1;
}

.search-wrap .search-form .form-control {
  color: #000;
  font-size: 14px;
  height: 44px;
  border-radius: 4px;
  padding: 0 40px 0px 14px;
  outline: none;
  border: none;
  background: #fff;
  border: 1px solid #dbdbdb;
}

.search-wrap .search-form .form-control:focus {
  border-color: #e35d11 !important;
  outline: 0;
  box-shadow: 0px 0px 0px 3px rgb(216 94 26 / 25%);
}

.serach-icon {
  position: absolute;
  top: 0;
  z-index: 9;
  right: 14px;
  top: 13px;
  counter-reset: unset;
  cursor: pointer;
}

/* -------------------------------------------
Filtter Search Bar overlay
------------------------------------------- */

.custom-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 998;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5) !important;
  transition: all 0.3s linear;
}

body.search-focused .custom-backdrop {
  opacity: 1;
  visibility: visible;
}
/* 
body.search-focused {
    overflow: hidden !important;
} */

body.search-focused .search-form,
body.search-focused .search-results {
  z-index: 999;
}

/* -------------------------------------------
Search Bar autoCompleate css
------------------------------------------- */

.list-group-item {
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  width: 100%;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
  z-index: 2;
  color: #fff;
  background-color: #e35d11;
  border-color: #e35d11;
}

/* -------------------------------------------
Library Filter
------------------------------------------- */

.filter-wrap {
  background-color: #252b42;
  border-radius: 4px 4px 0 0;
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 15px 14px 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.filter-wrap .leftbar {
  flex: 1;
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.dropdown-heading h3{
  color: white;
  margin: 0;
  font-size: 18px;
  margin-left: 2px;

}

/* -------------------------------------------
DropDown Library
------------------------------------------- */

.custom-dropdown {
}

.custom-dropdown > a {
  background-color: #e35d11;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  /* height: 44px; */
  min-height: 44px;
  max-width: 260px;
  padding: 0 10px;
  justify-content: space-between;
}

.custom-dropdown.filter-placeholder a {
  color: #969696;
}

/* .custom-dropdown a .dropdown-arrow {
  filter: invert(1);
} */

.custom-dropdown ul.dropdown-menu {
  background-color: #fff;
  min-width: 260px;
  padding: 5px 8px;
  box-shadow: 0px 4px 8px 0px #00000014;
  border: 1px solid #dbdbdb;
  max-height: 70vh;
  overflow-y: scroll;
}

.custom-dropdown ul.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}

.custom-dropdown ul.dropdown-menu > li > a {
  color: #3a4367;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.6s;
}

.custom-dropdown ul.dropdown-menu > li > a:hover {
  color: #fff;
  background-color: #e35d11;
  padding-left: 10px;
  border-radius: 4px;
}

.filter-wrap .rightbar .action-btn {
}

.filter-wrap .rightbar .action-btn ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.filter-wrap .rightbar .action-btn ul li:not(:last-child) {
  margin-right: 30px;
  position: relative;
}

.filter-wrap .rightbar .action-btn ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 35px;
  background-color: #888a8b;
  top: -5px;
  right: -15px;
}

.filter-wrap .rightbar .action-btn ul li .items-view {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-wrap .rightbar .action-btn ul li .items-view span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.filter-wrap .rightbar .action-btn ul li .items-view.item-active span {
  display: block;
  background-color: transparent !important;
}

/* -------------------------------------------
Library video List  Start
------------------------------------------- */

.product-title-meta {
  margin: 0 0 10px;
}

.product-title-meta span {
  color: #252b42;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.libaray-meta {
  margin: 70px 0 0 0;
}

.listing-items-wrap.libaray-widget {
  margin: 60px 0 0;
}
.listing-items-wrap.libaray-widget .listing-items .main-listing-wrap {
  margin: 0 0 30px;
}

.listing-items-wrap {
  margin: 15px 0 0 0;
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.breadcrumb-wrapper .page-title {
  display: flex;
  flex: 1;
}

.breadcrumb-wrapper .page-title span {
  color: #252b42;
  font-size: 20px;
  font-weight: 600;
}

.breadcrumb-wrapper .view-btn {
  position: relative;
}

.breadcrumb-wrapper .view-btn::before {
  content: url(../images/arrow-right.svg);
  position: absolute;
  top: 2px;
  right: 0;
}

.breadcrumb-wrapper .view-btn a {
  color: #e35d11;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0 20px 0;
}

.breadcrumb-wrapper .total-video {
}

.breadcrumb-wrapper .total-video span {
  color: #3a4367;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-wrapper .total-video span strong {
  font-weight: 700;
}

.listing-items .main-listing-wrap {
  margin: 0 0 0;
}

.listing-items ul.row {
  margin: 0 -5px;
}

.listing-items ul.row,
.listing-items ul.row li[class*="col"] {
  display: flex;
  flex-wrap: wrap;
}

.listing-items-wrap .listing-items ul.row li[class*="col"] {
  margin: 0 0 10px;
}

.listing-items ul.row li[class*="col"] {
  margin: 0 0 28px;
  padding: 0 5px;
}

.listing-items ul {
  margin: 0;
  padding: 0;
}

.listing-items ul li .item-wrap {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  width: 100%;
  float: left;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.listing-items ul li .item-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.listing-items-wrap .listing-items ul li .item-thumb {
  border-bottom: 1px solid #d9d9d9;
}

.progress {
  height: 4px;
  background-color: #d9d9d9;
  border-radius: 0;
  margin-bottom: 10px;
}

.progress-bar {
  background-color: #e35d11;
}

.block {
  width: 100%;
  float: left;
  position: relative;
}

.listing-items-wrap .listing-items ul li .item-meta {
  padding: 10px 15px 15px 15px;
}

.listing-items-wrap .listing-items ul li .item-meta .author-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 25px;
}

.listing-items-wrap
  .listing-items
  ul
  li
  .item-meta
  .author-wrap
  .author-name
  span {
  color: #3a4367;
  font-size: 12px;
  font-weight: 500;
}

.listing-items-wrap
  .listing-items
  ul
  li
  .item-meta
  .author-wrap
  .video-duration {
  position: relative;
}

.listing-items-wrap
  .listing-items
  ul
  li
  .item-meta
  .author-wrap
  .video-duration
  span {
  color: #3a4367;
  font-size: 12px;
  font-weight: 500;
}

.listing-items-wrap
  .listing-items
  ul
  li
  .item-meta
  .author-wrap
  .video-duration::before {
  content: url(../images/duration-clock.svg);
  position: absolute;
  top: 2px;
  left: -22px;
}

.listing-items-wrap .listing-items ul li .item-meta .author-wrap .video-title {
  display: none;
}

.listing-items-wrap
  .listing-items
  ul
  li
  .item-meta
  .author-wrap
  .video-title
  span {
  color: #3a4367;
  font-size: 12px;
  font-weight: 600;
}

.listing-items-wrap .listing-items ul li .item-meta .item-name span {
  font-size: 14px;
  font-weight: 600;
  color: #252b42;
  line-height: 20px;
  /* display: block; */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 60px;
  transition: all 0.6s;
  word-break: break-word;
}

.listing-items-wrap .listing-items ul li .item-meta .item-name span:hover {
  color: #e35d11;
}

.listing-items-wrap .listing-items.list-view ul li .item-thumb {
  width: 160px;
  height: 90px;
  float: left;
  border: none;
}

.listing-items-wrap .listing-items.list-view ul.row li[class*="col"] {
  width: 50%;
  margin: 0 0 15px;
  display: inline-block;
}

.listing-items-wrap .listing-items.list-view ul li .item-meta {
  width: calc(100% - 160px);
  float: right;
  margin: 0;
  text-align: left;
  padding: 0 15px;
  min-height: 90px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.listing-items-wrap .listing-items.list-view ul li .item-wrap {
  padding: 10px 10px 10px 10px;
}

/* .listing-items-wrap .listing-items.list-view ul li .item-meta {
    padding: 0 15px 0 15px;
} */

.listing-items-wrap .listing-items.list-view ul li .item-thumb img {
  border-radius: 4px;
  border: 1px solid #d9d9d9;
}

.listing-items-wrap .listing-items.list-view ul li .progress {
  border-radius: 0 0 4px 4px;
}

.listing-items-wrap .listing-items.list-view ul li .item-meta .author-wrap {
  display: flex;
  justify-content: normal;
  gap: 40px;
  margin-bottom: 10px;
}

.listing-items-wrap
  .listing-items.list-view
  ul
  li
  .item-meta
  .author-wrap
  .video-title {
  display: block;
}

.item-wrap:hover {
  box-shadow: 0px 6px 16px 1px #0000000f;
}

.custom-line {
  background-color: #d9d9d9;
  height: 1px;
  float: left;
  width: 100%;
  margin: 20px 0 30px;
  width: calc(100% - 13px);
  left: 7px;
  position: relative;
}

/* -------------------------
Pagination  css start
------------------------- */

.listing-pagination {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 4px;
  min-height: 45px;
  margin: 0 0 40px;
}

.listing-pagination .span-pages {
  color: #3a4367;
  font-size: 14px;
  font-weight: 600;
}

.listing-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  margin: 0;
  padding: 0;
}

.listing-pagination ul li {
  float: left;
  margin: 0 0 0 10px;
}

.listing-pagination ul li a {
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #3a4367;
  border-radius: 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: all 0.6s;
  text-decoration: none;
}

.listing-pagination ul li a:hover,
.listing-pagination ul li.active a {
  color: #fff;
  background-color: #e35d11;
  transition: all 0.6s;
}

hr.full-width {
  border: 1px solid #dbdbdb;
  margin-bottom: 0;
}

.mt-40 {
  margin-top: 40px;
}

/* -------------------------
Accordion style for library  css start
------------------------- */

.custom-panel {
}

.custom-panel.panel {
  border: 1px solid #d9d9d9;
  box-shadow: none;
  margin: 0 0 20px;
  padding: unset;
  background-color: unset;
  max-height: unset;
  overflow: unset;
  transition: unset;
}

.custom-panel .panel-heading {
  color: #252b42;
  background-color: #fff;
  border-radius: 4px;
  border-color: #d9d9d9;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.custom-panel .panel-heading span {
  color: #252b42;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
}

.custom-panel .panel-heading span a {
  text-decoration: none;
  color: #252b42;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(../images/arrow-down.svg) no-repeat calc(100% - 2px) center;
  background-size: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.custom-panel .panel-heading span a.accordion-arrow {
  background: url(../images/arrow-up.svg) no-repeat calc(100% - 2px) center;
}

.custom-panel .panel-collapse .panel-body {
  background: var(--grey-10, #f5f5f5);
  border-radius: 0 0 3px 3px;
  padding: 15px 15px 5px;
}

/* -------------------------
Library video tag css start
------------------------- */

.keyword-tags {
  margin: 5px 0 0;
}

.keyword-tags ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.keyword-tags ul li {
}

.keyword-tags ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.keyword-tags ul li:hover a {
  color: #e35d11;
}

.keyword-tags ul li.active a {
  color: #e35d11;
  font-weight: 600;
}

/* -------------------------
Footer  css start
------------------------- */

.page-footer {
  background: #1a1b23;
  padding: 80px 0 40px;
  color: #524d54;
  font-weight: 600;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

p.copy-right {
  font-size: 14px;
  color: #90929d;
  font-weight: 400;
  margin: 20px 0px 30px;
}

.footer-info p {
  font-size: 11px;
  color: #90929d;
}

.fot-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #fff;
  color: #828183;
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
  transition-property: color, background-color, border-color, box-shadow;
  margin-left: 10px;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.page-footer ul li a {
  font-size: 16px;
  font-weight: bold;
}

.page-footer a {
  color: #828183;
}

.video-module-name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.item-thumb {
  position: relative;
}

.cme-flag {
  color: var(--White, #fff);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  bottom: 10px;
  right: 10px;
  position: absolute;
  border-radius: 4px;
  background: var(--Brand-Orange, #e35d11);
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.4);
  border: none;
  display: flex;
  gap: 4px;

  padding: 5px 7px;
}

@media (max-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 970px;
  }
  .listing-items-wrap .listing-items.list-view ul.row li[class*="col"] {
    width: 100%;
  }
  /* .listing-items ul.row,
    .listing-items ul.row li[class*=col] {
        display: inherit;
    } */
  .custom-dropdown > a {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 750px;
  }
  .filter-wrap {
    flex-direction: column;
    min-height: 100px;
    padding: 15px;
  }
  .library-meta {
    padding: 120px 0 0 0;
  }
  .filter-wrap .leftbar {
    flex: 0;
    flex-direction: column;
    width: 100%;
  }
  .filter-wrap .rightbar .action-btn ul li .items-view span {
    display: block;
  }
  .custom-dropdown ul.dropdown-menu {
    min-width: 100%;
  }
  .filter-wrap .rightbar .action-btn {
    margin: 15px 0 0 0;
  }
  .filter-wrap .rightbar {
    width: 100%;
  }
  .filter-wrap .rightbar .action-btn ul li {
    flex: 0 0 50%;
    width: 100%;
    display: flex;
    justify-content: center;
    display: block;
  }
  .filter-wrap .rightbar .action-btn ul li:not(:last-child) {
    margin: 0;
  }
  .filter-wrap .rightbar .action-btn ul li:not(:last-child)::after {
    right: 0;
    top: 2px;
  }
  .filter-wrap .rightbar .action-btn ul li .items-view {
    justify-content: center;
    padding: 8px 0;
  }
  .filter-wrap .rightbar .action-btn ul li .items-view.item-active {
    background-color: #596289;
    border-radius: 4px;
  }
  .filter-wrap .rightbar .action-btn ul li:first-child .items-view.item-active {
    margin-right: 5px;
  }
  .filter-wrap .rightbar .action-btn ul li:last-child .items-view.item-active {
    margin-left: 5px;
  }
  .library-wrapper {
    height: auto;
  }
  .breadcrumb-wrapper .page-title span {
    font-size: 17px;
  }
  .listing-items-wrap .listing-items.list-view ul li .item-thumb {
    width: 100px;
    height: 80px;
  }
  .listing-items ul li .item-thumb img {
    object-fit: cover;
    height: 100%;
  }
  .listing-items-wrap .listing-items.list-view ul li .item-meta {
    width: calc(100% - 100px);
    display: inherit;
    min-height: 0;
  }
  .listing-items-wrap
    .listing-items.list-view
    ul
    li
    .item-meta
    .author-wrap
    .video-duration::before {
    margin-left: 0;
  }
  .listing-pagination ul {
    justify-content: start;
    gap: 6px;
  }
  .listing-pagination .span-pages {
    font-size: 12px;
  }
  .listing-pagination ul li {
    margin: 0;
  }
}

@media (max-width: 375px) {
  .listing-items ul.row,
  .listing-items ul.row li[class*="col"] {
    padding: 0 8px;
  }
  .listing-items-wrap .listing-items ul li .item-meta {
    padding: 0 7px 9px 7px;
  }
  .listing-items-wrap .listing-items ul li .item-meta .item-name span {
    font-size: 12px;
  }
}
.hover-dropdown-menu > li > a.dropdown-item {
  display: block;
}

@media (min-width: 1450px) {
  .container {
    max-width: 1430px;
    margin: auto;
  }
}

.main-listing-wrap .row .custom-line:last-child {
  display: none;
}

/* @media (max-width: 768px) {
    .header-actions>ul>li {
        display: inline-block !important;
    }
} */

/* Advance Search css */

.search-results {
  background-color: #fff;
  position: absolute;
  width: 100%;
}
.search-results ul {
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow: auto;
}
.search-results ul li.search-result-item {
  border-bottom: 1px solid #d4d4d4;
}
.search-results ul li.search-result-item > a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transition: all 0.6s;
}
.search-results ul li.search-result-item:hover a {
  background-color: #e35d11;
  color: #fff;
}
