/* ## Plugin style == REELS */
.okweb_reels {
  color: inherit;
  padding-block: clamp(25px, 5vw, 40px);
}
.plugin_section_title_row {
  margin-bottom: clamp(18px, 5vw, 25px);
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.plugin_section_cat_title {
  margin-right: auto;
  font-weight: 600;
  font-family: inherit;
  font-size: clamp(30px, 6vw, 34px);
  color: inherit;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.plugin_section_title_row_cat_lists {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.plugin_section_title_row_cat_lists > a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  line-height: 38px;
  padding: 0 15px;
  color: #1685f8;
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  background-color: #f1f6fb;
  transition: all 0.3s ease-in-out;
}
.plugin_section_title_row_cat_lists > a:hover {
  background-color: rgb(217, 234, 251);
}
.plugin_section_title_row_icon_link_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  background-color: #1685f8;
  border-radius: 4px;
}
.plugin_reels_wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}
.plugin_reels_wrapper > div {
  height: 400px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.04);
}
.plugin_reels_item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.plugin_reels_item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(50px, 10vw, 85px);
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 1;
}
.whole_item_clickable {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 4;
}
.plugin_reels_item_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.plugin_reels_item_no_of_views {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  padding: 15px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
.plugin_reels_item_no_of_views svg path {
  stroke: white;
}

@media all and (max-width: 767px) {
  .ok-section-video-reels {
    padding-inline: 20px;
  }
  .plugin_section_title_row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .plugin_section_cat_title {
    order: 1;
  }
  .plugin_section_title_row_cat_lists {
    order: 3;
  }
  .plugin_section_title_row > div:last-child {
    order: 2;
  }
  .plugin_section_title_row_cat_lists {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .plugin_section_title_row_cat_lists::-webkit-scrollbar {
    display: none;
  }
  .plugin_reels_wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
  .plugin_reels_wrapper > div {
    height: clamp(280px, 15vw, 400px);
    flex: 0 0 calc(50% - 7.5px);
    aspect-ratio: 9/16;
  }
  .plugin_reels_wrapper > div:last-child {
    display: none;
  }
}
/* ## Plugin style == REELS Ends*/