/**
* Base Colors
*/
/**************************
  Media Queries
***************************/
/*************************
  Fonts
**************************/
/*************************
  Button colours
**************************/
/*************************
  Location page colours
**************************/
/*************************
  Form colours
**************************/
/*************************
  Sidebar variables
**************************/
/*************************
  404 button background
**************************/
/*************************
  Results Partial
**************************/
/*************************
  Swiper
**************************/
/*************************
  Footer Top
**************************/
/* Additional Mixins */
.uppercase-title {
  font-family: var(--secondary-font);
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

.video-library .video-library__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .video-library .video-library__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}
.video-library .video-library__search {
  max-width: 420px;
}

@media (max-width: 767px) {
  .video-library .video-library__search {
    max-width: none;
  }
}
.video-library .video-library__search-input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #d8d9d9;
  border-radius: 300px;
  background: #fff;
  color: #454545;
  font-family: var(--secondary-font);
  font-size: 16px;
}

.video-library .video-library__search-input:focus {
  outline: none;
  border-color: #28a8c8;
}

.video-library .video-library__filter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.video-library .video-library__filter label {
  margin: 0;
  color: #1d2e7a;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.video-library .video-library__filter-select {
  height: 50px;
  min-width: 220px;
  padding: 0 44px 0 18px;
  border: 1px solid #d8d9d9;
  border-radius: 300px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231D2E7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  color: #454545;
  font-family: var(--secondary-font);
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.video-library .video-library__filter-select:focus {
  outline: none;
  border-color: #28a8c8;
}

@media (max-width: 767px) {
  .video-library .video-library__filter-select {
    width: 100%;
  }
}
.video-library .video-item {
  margin-bottom: 30px;
}

.video-library .video-item .video-section__item {
  max-width: none;
  height: 100%;
}

.video-library .video-item .video-section__item .thumbnail-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-library .video-library__empty {
  margin: 20px 0 40px;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 18px;
  color: #454545;
}

.video-library .video-library__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.video-library .video-library__page {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d8d9d9;
  border-radius: 8px;
  background: #fff;
  color: #1d2e7a;
  font-family: var(--main-font);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.video-library .video-library__page:hover:not(:disabled) {
  background: #28a8c8;
  border-color: #28a8c8;
  color: #fff;
}

.video-library .video-library__page.is-active {
  background: #1d2e7a;
  border-color: #1d2e7a;
  color: #fff;
}

.video-library .video-library__page:disabled {
  opacity: 0.45;
  cursor: default;
}

/*# sourceMappingURL=video-library.css.map*/