.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid none;
  border-radius: 1.5rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

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

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid none;
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid none;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: #fff;
  border-bottom-color: #fff;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 1.5rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.click-icon {
  display: inline-block;
  margin-left: 5px;
  font-size: 18px;
  transform: translateY(2px);
}

.videos-list h2 {
  font-weight: bolder;
}
.videos-list h3, .videos-list h5 {
  height: 48px;
}
.videos-list h3 a, .videos-list h5 a {
  transition: 0.5s ease-in-out;
}
.videos-list h3:hover a, .videos-list h5:hover a {
  text-decoration: underline;
  color: #20acd6 !important;
}
.videos-list .splide__list {
  max-height: 320px;
}
@media (max-width: 991.98px) {
  .videos-list .splide__list {
    max-height: 275px;
  }
}
.videos-list .video-img img {
  width: 100%;
}
.videos-list .video-img a::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 90px;
  position: absolute;
  vertical-align: top;
  left: 40%;
  top: 33%;
  bottom: 50%;
  background: center;
  z-index: 10;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MyIgaGVpZ2h0PSI4NCIgdmlld0JveD0iMCAwIDgzIDg0Ij4NCiAgPGcgaWQ9Ikdyb3VwXzQ0NDA1IiBkYXRhLW5hbWU9Ikdyb3VwIDQ0NDA1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC40OTMgMC4zOTIpIj4NCiAgICA8ZWxsaXBzZSBpZD0iRWxsaXBzZV80NyIgZGF0YS1uYW1lPSJFbGxpcHNlIDQ3IiBjeD0iNDEuNSIgY3k9IjQyIiByeD0iNDEuNSIgcnk9IjQyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjQ5MyAtMC4zOTIpIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjEiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzQ4IiBkYXRhLW5hbWU9IkVsbGlwc2UgNDgiIGN4PSIzMiIgY3k9IjMyIiByPSIzMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS40OTMgMTAuNjA4KSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4zIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV80OSIgZGF0YS1uYW1lPSJFbGxpcHNlIDQ5IiBjeD0iMjIiIGN5PSIyMiIgcj0iMjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE5LjQ5MyAyMC42MDgpIiBmaWxsPSIjZmZmIi8+DQogICAgPHBhdGggaWQ9IlBvbHlnb25fMiIgZGF0YS1uYW1lPSJQb2x5Z29uIDIiIGQ9Ik01LjIzOSwzLjI3YTIsMiwwLDAsMSwzLjUyMiwwbDMuNjUyLDYuNzgxQTIsMiwwLDAsMSwxMC42NTIsMTNoLTcuM2EyLDIsMCwwLDEtMS43NjEtMi45NDhaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0OS40OTMgMzUuNjA4KSByb3RhdGUoOTApIiBmaWxsPSIjMmNjY2QzIi8+DQogIDwvZz4NCjwvc3ZnPg0K);
}
.videos-list .video-img a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-size: 260%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMzkzIiBoZWlnaHQ9IjEwNiIgdmlld0JveD0iMCAwIDM5MyAxMDYiPg0KICA8ZGVmcz4NCiAgICA8bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhci1ncmFkaWVudCIgeDE9IjAuNSIgeDI9IjAuNSIgeTI9IjEiIGdyYWRpZW50VW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij4NCiAgICAgIDxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzAwMjM2MSIgc3RvcC1vcGFjaXR5PSIwIi8+DQogICAgICA8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMwMDIzNjEiLz4NCiAgICA8L2xpbmVhckdyYWRpZW50Pg0KICA8L2RlZnM+DQogIDxwYXRoIGlkPSJSZWN0YW5nbGVfMzM3NSIgZGF0YS1uYW1lPSJSZWN0YW5nbGUgMzM3NSIgZD0iTTAsMEgzOTNhMCwwLDAsMCwxLDAsMFY4MmEyNCwyNCwwLDAsMS0yNCwyNEgyNEEyNCwyNCwwLDAsMSwwLDgyVjBBMCwwLDAsMCwxLDAsMFoiIG9wYWNpdHk9IjAuNyIgZmlsbD0idXJsKCNsaW5lYXItZ3JhZGllbnQpIi8+DQo8L3N2Zz4NCg==);
}
.videos-list .modal-content .btn-close {
  top: -30px;
  right: 0;
}
.videos-list .modal-content .modal-body .iframe-container {
  margin: 0;
  width: 100%;
  padding: 0 0 56% 60%;
}
.videos-list .modal-content .modal-body .iframe-container iframe {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 991.98px) {
  .videos-list .modal-content .modal-body .iframe-container {
    width: 100%;
    padding: 0 0 56%;
  }
}

.videos-list-page h3 {
  height: auto;
}
.videos-list-page .bef-exposed-form, .videos-list-page .views-exposed-form {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.videos-list-page .bef-exposed-form .js-form-item-title, .videos-list-page .views-exposed-form .js-form-item-title {
  position: absolute;
  width: 100%;
}
.videos-list-page .bef-exposed-form .form-actions::before, .videos-list-page .views-exposed-form .form-actions::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  vertical-align: top;
  top: 18px;
  left: 97%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMS4yOCIgaGVpZ2h0PSIyMS4yOCIgdmlld0JveD0iMCAwIDIxLjI4IDIxLjI4Ij4NCiAgPGcgaWQ9Ikdyb3VwXzQ0Mzg5IiBkYXRhLW5hbWU9Ikdyb3VwIDQ0Mzg5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjc1IDAuNzUpIj4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzE1IiBkYXRhLW5hbWU9IkVsbGlwc2UgMTUiIGN4PSI5IiBjeT0iOSIgcj0iOSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNGRkNGZjIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMS41Ii8+DQogICAgPGxpbmUgaWQ9IkxpbmVfMzEwIiBkYXRhLW5hbWU9IkxpbmUgMzEwIiB4Mj0iNSIgeTI9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE1IDE1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNGRkNGZjIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMS41Ii8+DQogIDwvZz4NCjwvc3ZnPg0K);
}
@media (max-width: 991.98px) {
  .videos-list-page .bef-exposed-form .form-actions::before, .videos-list-page .views-exposed-form .form-actions::before {
    left: 88%;
  }
}
.videos-list-page .bef-exposed-form .form-actions input, .videos-list-page .views-exposed-form .form-actions input {
  color: transparent;
  background: transparent;
  border: 0;
  position: relative;
  vertical-align: top;
  left: 93%;
  top: -16px;
}

.videos-detail .ilgili-videolar {
  background-color: #EBF7FB;
  padding-bottom: 22px !important;
}
.videos-detail .ilgili-videolar h5:hover a {
  color: #20acd6 !important;
}
.videos-detail .iframe-container {
  margin: 0;
  width: 100%;
  padding: 0 0 539px;
}
.videos-detail .iframe-container iframe {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 991.98px) {
  .videos-detail .iframe-container {
    width: 100%;
    padding: 0 0 56%;
  }
}

.videos-detail-text {
  z-index: 10;
  width: 50%;
}
.videos-detail-text .iframe-container {
  margin: 0;
  padding: 0 0 60%;
}
.videos-detail-text .iframe-container iframe {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#hidden {
  display: none;
}

/*# sourceMappingURL=videolar.css.map */
