/**
* 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), sans-serif;
  color: #2b2b2b;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.15rem;
  text-align: center;
}

.page-template-video-library .main-wrapper {
  background-image: url(../../dist/images/bg-abstract-lines.jpg);
  background-size: 100% 218px;
  background-position: top center;
  background-repeat: no-repeat;
}

#video-library {
  padding-top: 35px;
}

@media (max-width: 991px) {
  #video-library {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  #video-library {
    padding-top: 30px;
  }
}
#video-library .video-library__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px 2%;
}

@media (max-width: 767px) {
  #video-library .video-library__options {
    margin-bottom: 40px;
    justify-content: center;
  }
}
#video-library .video-library__search {
  position: relative;
  max-width: 402px;
  width: 49%;
}

@media (max-width: 767px) {
  #video-library .video-library__search {
    max-width: 450px;
    width: 100%;
  }
}
#video-library .video-library__search input {
  width: 100%;
  border-radius: 4px;
  border: 2px solid #E1E1E1;
  background: #FFF;
  height: 37px;
  padding: 0 15px;
  padding-right: 45px;
}

#video-library .video-library__search input::placeholder {
  color: #707070;
  font-size: 14px;
}

#video-library .video-library__search button {
  font-size: 0;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: url(../../dist/images/icons/icon-search.svg) center/contain no-repeat transparent;
  cursor: pointer;
  width: 20px;
  aspect-ratio: 1;
}

#video-library .video-library__filter {
  max-width: 262px;
  width: 49%;
}

@media (max-width: 767px) {
  #video-library .video-library__filter {
    max-width: 450px;
    width: 100%;
  }
}
#video-library .video-library__filter select {
  width: 100%;
  height: 37px;
  border-radius: 4px;
  border: 2px solid #E1E1E1;
  padding: 0 15px;
  line-height: 14px;
  appearance: none;
  background: url(../../dist/images/arrows/arrow-dropdown.svg) right 15px center/auto no-repeat #FFFFFF;
  color: #707070;
  font-size: 14px;
}

#video-library .video-library__grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 38px;
}

@media (max-width: 767px) {
  #video-library .video-library__grid {
    justify-content: center;
  }
}
#video-library .video-library__item {
  max-width: 256px;
  width: calc(33.3333333333% - 14px);
}

@media (max-width: 767px) {
  #video-library .video-library__item {
    width: 100%;
  }
}
#video-library .video-library__item:hover .video-library__item-thumb {
  transform: scale(1.05);
}

#video-library .video-library__item:hover .video-library__item-title {
  color: #f26e27;
}

#video-library .video-library__item-video {
  display: block;
  width: 100%;
  margin: 0;
}

#video-library .video-library__item-thumb {
  transition: all 0.3s ease-in-out;
}

#video-library .video-library__item-title {
  color: #001834;
  font-family: Outfit;
  line-height: 22px;
  margin-top: 17px;
  transition: all 0.3s ease-in-out;
}

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