.product-header-row {
    display: flex;
    justify-content: space-between;
    gap: 140px;
    align-items: center;
}

.product-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-logo {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    flex: 0 0 100px;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title h2 {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #FAFAFA;
}

.product-title p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: rgba(161, 161, 170, 1);
}

.product-date-link select {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px 10px 15px;
    gap: 10px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    appearance: none;
    background-image: url('../website/images/dropdown-icon.svg');
    background-repeat: no-repeat;
    background-position: 90% center;
}

.product-date-link a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A389C3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-date-link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0 0;
}

.product-views-likes span {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #AAAAAA;
    display: flex;
    align-items: center;
    gap: 10px;
}
html {
    scroll-behavior: smooth;
}
.screenshot-name {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 10px;
    letter-spacing: 0.1em;
    text-transform: capitalize;
    transition: .3s;
}
.product-views-likes {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.product-category-name {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.product-category-name span {
    cursor: pointer;
    transition: .3s;
    position: relative;
}
.product-category-name span svg {
    stroke: rgba(161, 161, 170, 1);
}
.product-category-name span:hover svg {
    stroke : rgba(254, 240, 138, 1);
}
.user-collection-adjust-dropdown {
    position: absolute;
    right: 0;
    flex-flow: column;
    width: max-content;
    text-align: left;
    top: 50px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 12px;
    gap: 10px;
    background: #27272A;
    border: 1px solid #3F3F46;
    box-shadow: 10px 4px 54px rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    z-index: 1;
}
.products-onboarding-right .user-collection-adjust-dropdown a svg {
    stroke: white;
}
.user-collection-adjust.active .user-collection-adjust-dropdown {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.user-collection-adjust-dropdown a {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    gap :10px;
}

.product-category-name h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #AAAAAA;
}

.product-category-list span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: rgba(161, 161, 170, 1);
    text-decoration: underline;
    position: relative;
}
.product-category-list span:after {
    content: "";
    width: 5px;
    height: 5px;
    background: rgba(161, 161, 170, 1);
    position: absolute;
    border-radius: 100px;
    top: 50%;
    transform: translateY(-50%);
    left: -12px;
}

.product-category-list span:first-child:after {
    display: none;
}

.product-category-list {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-page-header {
    padding: 40px 0 60px;
}
.pageflows-product {
    padding: 0 30px;
}
.product-tabs {
    box-sizing: border-box;
    padding: 40px 30px 0;
    border-top: 1px solid rgba(63, 63, 70, 1);
}
.userflows-header-menus ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: -1px;
    color: #A1A1AA;
    padding: 10px 15px;
    position: relative;
    transition: .3s;
}
.userflows-header-menus ul li.active a {
    color: rgba(250, 250, 250, 1);
    font-weight: 600;
    transition: .3s;
}
.userflows-header-menus ul li a:hover {
    color: rgba(250, 250, 250, 1);
    transition: .3s;
}
.userflows-header-menus ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: rgba(250, 250, 250, 1);
    border-radius: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.userflows-header-menus ul li.active a:after, .userflows-header-menus ul li a:hover:after {
    visibility: visible;
    opacity: 1;
    transition: .3s;
}

.userflows-header-menus ul {
    display: flex;
    align-items: center;
}

.userflows-header-menus {
    padding: 0 30px;
}
.pageflows-product-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageflows-userflow-screen ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pageflows-userflow-screen ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    transition: .3s;
}

.pageflows-userflow-screen ul li a:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: -18px;
    left: 50%;
    background: #4DC2F4;
    border-radius: 100%;
    transform: translateX(-50%);
    opacity: 0;
    transition: .3s;
}

.pageflows-userflow-screen ul li a:hover, .pageflows-userflow-screen ul li.active a {
    color: #4DC2F4;
    transition: .3s;
}

.pageflows-userflow-screen ul li a:hover:after, .pageflows-userflow-screen ul li.active a:after {
    opacity: 1;
    transition: .3s;
}

.pageflows-product-bookmark ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pageflows-product-bookmark ul li a {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #AAAAAA;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.pageflows-product-bookmark ul li a svg {
    fill: #aaa;
    transition: .3s;
}

.pageflows-product-bookmark ul li a:hover {
    color: #000;
    transition: .3s;
}

.pageflows-product-bookmark ul li a:hover svg {
    fill: #000;
    transition: .3s;
}

.pageflows-product-bookmark ul li.active a svg {
    fill: #A389C3;
}

.pageflows-product-bookmark ul li.active a {
    color: #A389C3;
}
.tab-content {
  display: none;
  text-align: center;
  color: #888;
  font-weight: 300;
  font-size: 15px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: none;
  }
}
.pageflows-product-filter {
    display: flex;
}

.pageflows-product-sidebar {
    padding: 0 30px 30px 30px;
    flex: 0 0 25%;
}

.pageflows-product-sidebar ul li {
    cursor: pointer;
    transition: .3s;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    color: #A1A1AA;
    border-radius: 10px;
    padding: 15px 20px;
}
.total-flows-count {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #71717A;
    padding: 0px 0 20px;
}
.pageflows-product-sidebar ul {
    display: flex;
    flex-flow: column;
    gap: 0px;
}

.pageflows-product-tabs {
    box-sizing: border-box;
    background: #18181B;
    width: 100%;
}
.pageflows-product-sidebar-container {
    position: sticky;
    top: 30px;
    width: 100%;
    height: calc(100vh - 60px);
    overflow-y: scroll;
}
.pageflows-product-filter.pageflows-product-filter-flows .pageflows-product-tabs {
    overflow: hidden;
    box-sizing: border-box;
    background: #18181B;
    border: 1px solid #3F3F46;
    border-radius: 20px;
    border-right: 0;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0px;
    padding-bottom: 50px;
}
.pageflows-product-tabs div#tab-1 {
    margin-bottom: 50px;
}
.pageflows-product-sidebar ul li.active {
    font-weight: 700;
}
.pageflows-product-sidebar ul li:hover, .pageflows-product-sidebar ul li.active {
    color: #fff;
    transition: .3s;
    background: rgba(39, 39, 42, 1);
}
.pageflows-product-filter-flows {
    margin: 40px 0 0;
}
.product-video-block {
    display: flex;
    padding: 30px;
    position: relative;
    gap: 20px;
    justify-content: space-between;
}
.product-video, .product-video-slideshow {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    max-height: 380px;
    flex: 0 0 68%;
}
.image-slide {
    height: 100%;
}
.image-slide img {
    height: 340px;
}
.slideshow-current-details {
    color: #A1A1AA;
}
.product-video video {
    width: 100%;
    height: 100%;
}
.product-video-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 10px;
    flex: 0 0 30%;
    max-height: 380px;
    overflow-y: scroll;
    box-sizing: border-box;
    background: #18181B;
    border: 1px solid #3F3F46;
    border-radius: 10px;
}
.product-video-speed {
    align-items: center;
    width: 100%;
    gap: 20px;
    border-bottom: 1px solid #3F3F46;
    padding: 15px;
    box-sizing: border-box;
    background: #27272A;
    border-radius: 10px 10px 0px 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    text-align: left;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}
.products-onboarding-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-video-speed ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-video-speed ul li {
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    cursor: pointer;
}

.product-video-speed ul li:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #4DC2F4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100%;
    top: -10px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.product-video-speed ul li.active:after, .product-video-speed ul li:hover:after {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.product-video-speed ul li:hover, .product-video-speed ul li.active {
    color: #4DC2F4;
}
.product-video-inner {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
}

.product-video-inner ul li {
    text-align: left;
    padding: 10px 20px;
    cursor: pointer;
    gap: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #A1A1AA;
}

.product-video-inner ul li span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    gap: 10px;
    background: #303037;
    border-radius: 4px;
}

.product-video-inner ul li.active {
    color: #fff;
}

.product-video-inner ul li.active span {
    background: #fff;
    color: #000;
}
.products-onboarding-header {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #fff;
    gap: 20px;
    margin-bottom: 0;
    padding: 30px;
    justify-content: space-between;
}
.products-onboarding-inner span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #A1A1AA;
}
.products-onboarding-right .bookmark-icon {
    box-sizing: border-box;
    width: 45px;
    height: 45px;
    background: #27272A;
    border: 1px solid #3F3F46;
    border-radius: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.products-onboarding-right .bookmark-icon:hover {
    background: #ffef8a;
}
.products-onboarding-right .bookmark-icon svg {
    stroke: rgba(113, 113, 122, 1);
}

.products-onboarding-header span {
    gap: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #A1A1AA;
    position: relative;
}
.products-onboarding {
    width: 100%;
    position: relative;
}
.products-screenshot-slideshow {
    display: grid;
    gap: 20px;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding: 0 30px;
}
.pageflows-product-filter-flows .products-screenshot-slideshow {
  padding: 0 0px 0 30px;
}
.products-screenshot-slideshow .slick-track {
    display: flex;
}
.products-screenshot-view {
    box-sizing: border-box;
    background: #27272A;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-screenshot-view-main.slick-slide {
    margin: 0 10px;
}
.products-screenshot-slideshow .slick-track {
    margin-left: -10px;
}
.custom-class .products-screenshot-view {
  height: fit-content !important;
}
.screens-blur {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}
.screens-blur:after {
    content: "";
    position: absolute;
    background: rgba(247, 247, 247, 0.1);
    backdrop-filter: blur(12px);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: 10px;
}
body.logged-out .products-screenshot-onetime.slick-slide:first-child .screens-blur,
body.logged-out .products-screenshot-onetime.slick-slide:nth-child(2) .screens-blur,
body.logged-out .products-screenshot-onetime.slick-slide:nth-child(3) .screens-blur {
    display: none;
}
.products-screenshot-view img {
    object-fit: cover;
    height: 100%;
    transition: .3s;
    cursor: pointer;
    border-radius: 12px;
}
.products-screenshot-view img:hover {
    transform: scale(0.9);
    transition: .3s;
}
.screens-title {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fefefe;
    margin: 15px 0 0;
}
.products-screenshot-view-main {
    position: relative;
}
.products-screenshot-slideshow button.slick-prev.slick-arrow.slick-disabled,
.products-screenshot-slideshow button.slick-next.slick-arrow.slick-disabled {
    opacity: 0;
}

.products-screenshot-slideshow button.slick-arrow {
    background: #18181b;
}
.products-screenshot-slideshow button.slick-next.slick-arrow {
    right: 15px;
}
.products-screenshot-slideshow button.slick-prev.slick-arrow {
    left: 24px;
    z-index: 9;
}

.mobile-pageflows-sidebar {
    display: none;
}
.dynamic-value {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    background-image: url('../website/images/dropdown-icon.svg');
    background-repeat: no-repeat;
    background-position: 96% center;
}
.modal-content {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.modal-content ul.tabs-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.modal-content ul.tabs-mobile li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
  background: #F1F1F1;
  border-radius: 20px;
  flex: none;order: 0;
  align-self: stretch;
}

.modal-content ul.tabs-mobile li.active {
    background: #A389C3;
    color: #fff;
}
.mobile-pageflows-sidebar.active .modal-content {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}
.mobile-popup-video-option {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  padding: 0 20px;
}
.mobile-popup-video-option.active {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
.mobile-popup-video-option .product-video-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0px 10px;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
}
.mobile-popup-video-option .product-video-inner .close-video-option {
    position: absolute;
    right: 20px;
    top: 17px;
}
.mobile-popup-video-option .product-video-inner ul {
    width: 100%;
}

.mobile-popup-video-option .product-video-inner ul li:first-child {
    background-image: none;
    padding-right: 20px;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}
.lightbox.visible {
  transition: .3s;
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
    width: 90%;
    height: 90%;
    padding: 30px;
    position: relative;
    background:#27272A;
    border-radius: 12px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.lightbox-content .slick-slider {margin: 0px;}
.lightbox-content .products-screenshot-view {
    background: transparent;
}
.close {
  cursor: pointer;
  position: absolute;
  top: 35px;
  right: 35px;
  z-index: 1;
}
.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-header .product-title h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.2em;
    color: #000000;
}

.lightbox-header .product-logo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
}
.productCategory-tags span {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #000000;
}
.products-screenshot-slideshow-lightbox .products-screenshot-view {
    justify-content: center;
    height: 100% !important;
    border: 0;
    display: flex;
    padding:0;
    margin: 0 auto;
    width: fit-content;
    background: transparent;
    position: relative;
}
.products-screenshot-slideshow-lightbox .products-screenshot-view img.blurred {
    filter: none !important;
}
.products-onboarding.desktop-web .products-screenshot-slideshow {
    grid-template-columns: 1fr 1fr;
}

.products-screenshot-slideshow-lightbox button.slick-prev.slick-arrow {
    z-index: 9;
}
.products-screenshot-slideshow-lightbox button.slick-arrow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    height: 40px;
    background: #3F3F46;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    width: 31px;
}
.products-screenshot-slideshow-lightbox button.slick-prev.slick-arrow:before {
    content: "";
    background-image: url('../website/images/lightbox-left.svg');
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 15px;
    font-size: 0px;
    opacity: 1;
}
.products-screenshot-slideshow-lightbox button.slick-next.slick-arrow:before {
    content: "";
    background-image: url('../website/images/lightbox-right.svg');
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 15px;
    font-size: 0px;
    opacity: 1;
}
.products-screenshot-slideshow-lightbox button.slick-arrow.slick-disabled {
    opacity: 0;
    visibility: hidden;
}
.products-screenshot-slideshow-lightbox .products-screenshot-view img {
    height: 75vh;
    object-fit: cover;
    width: 100%;
}
.products-screenshot-slideshow-lightbox .products-screenshot-view img:hover {
  transform: none;
}
.product-date-link .dropdown-menu {
    width: 200px;
    left: 0;
}

.product-date-link .dropdown-menu a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    height: 40px;
    background: #F1F1F1;
    border-radius: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: none;
    color: #000000;
    width: 100%;
    transition: .3s;
    margin-bottom: 10px;
}
.product-date-link .dropdown-menu a:last-child {
  margin-bottom: 0px;
}
.product-date-link .dropdown-menu a:hover {
    color: #fff;
    background: #a389c3;
}
.bottom-blur-box {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
    height: 462px;
    background: rgba(24, 24, 27, 1);
    backdrop-filter: blur(62px);
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
}
.bottom-blur-box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 200px;
    background: #ffffff30;
    top: -110px;
    filter: blur(40px);
    border-radius: 100px;
}
.bottom-blur-content {
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}
.moreflows-hidden {
    gap: 10px;
    margin: 0 auto;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.5px;
    color: #FFFFFF;
}
.bottom-blur-content h4 {
    font-weight: 600;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    justify-content: center;
}
.bottom-blur-content h4 span {
    display: contents;
}
.bottom-blur-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    color: #a1a1aa;
}
.join-now-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    width: fit-content;
    height: 45px;
    background: #4DC2F4;
    border-radius: 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 auto;
    border: 0px;
}
.join-now-btn:hover {
  background: #000;
}
.product-video-block .product-notpaid {
    border-radius: 0px;
    z-index: 1;
}
.flows-slider-loop .product .products-screenshot-item.slick-slider.desktop-web .products-screenshot-onetime {
    max-height: 500px;
    overflow: hidden;
    border-radius: 10px;
}
.search-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap : 30px;
}
h3.search-result-head {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
    color: #fff;
}

p.serch-result-peragraph {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #AAAAAA;
}

p.serch-result-peragraph a {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-decoration-line: underline;
    color: #4DC2F4;
}

p.serch-result-peragraph a:hover {
    text-decoration: none;
}
.product-category-name span.save-btn {
    box-sizing: border-box;
    flex-direction: row;
    justify-content: center;
    padding: 14px 18px;
    gap: 5px;
    height: 39px;
    border: 1px solid #3F3F46;
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.5px;
    color: #A1A1AA;
}

.product-category-name span.save-btn:hover, .product-category-name .save-btn.highlight {
    background: rgba(254, 240, 138, 1);
    color: #000;
}

.product-category-name span.save-btn:hover svg,
.product-category-name .save-btn.highlight svg {
    stroke: #000;
}
.userflow-menu.details-menus {
    justify-content: space-between;
    width: 100%;
}
.product-publish-date .dropdown-trigger {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    gap: 10px;
    height: 48px;
    background: #27272A;
    border: 1px solid #3F3F46;
    border-radius: 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.5px;
    color: rgba(212, 212, 216, 1);
}
.login-page-fieldgroup.pageflow-termConditon {
    flex-flow: unset;
    color: #ffffff;
    gap: 5px;
    align-items: center;
}
@media only screen and (max-width: 1300px) {

}
@media only screen and (max-width: 992px) {
.product-header-row {
    flex-flow: column;
    gap : 20px;
}
.userflow-menu.details-menus {
    gap: 30px;
    display: flex;
    flex-flow: column;
}
.product-header-content {
    flex-flow: column;
    justify-content: center;
    text-align: center;
}

.product-title {
    text-align: center;
}

.product-title h2, .product-date-link {
    justify-content: center;
}

.product-category-name {
    margin: 0;
}

.product-category-name h4 {
    display: none;
}

.product-category {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px 0 0;
}

.product-category-list {
    margin: 0;
    flex-flow: column;
    gap: 10px;
    margin: 0 0 10px;
}
.product-category-list span:after {
    display: none;
}
.product-views-likes {
    gap: 10px;
}

.product-views-likes span, .product-category-list span {
    font-size: 16px;
}

.product-title h2 {
    font-size: 35px;
    line-height: 45px;
}

.product-title p {
    font-size: 16px;
}

.product-date-link {
    margin: 15px 0 0;
}

.pageflows-userflow-screen {
    display: none;
}

.pageflows-product-mobile {
    justify-content: center;
}

section.product-tabs {
    padding: 20px;
}
.pageflows-product-filter.pageflows-product-filter-flows .pageflows-product-tabs {
    border-radius: 0;
}
.userflows-header-menus ul li a {
    font-size: 16px;
}
.pageflows-product-filter {
    display: block;
}
.pageflows-product-sidebar{
  display: none;
}
.mobile-pageflows-sidebar {
    display: block;
}

.product-video {
    margin-right: 0;
    display: table;
}

.product-video-option {
    position: static;
    width: 100%;
    gap: 0px;
    padding: 0px;
    height: 99px;
    overflow: hidden;
    display: none;
}
.product-video-speed {
    margin: 0;
}
.product-video-inner ul li:first-child {
    background-image: url('../website/images/dropdown-icon.svg');
    background-repeat: no-repeat;
    background-position: 97% center;
    padding-right: 30px;
}
.pageflows-product-sidebar {
    padding: 30px 30px 0;
    border: 0px;
    background: #d9d9d9;
}
.product-video-block {
    padding: 20px 20px 50px;
    flex-flow: column;
    gap: 30px;
}
.products-screenshot-slideshow button.slick-prev.slick-arrow {
    left: 20px;
}
.products-onboarding-header {
    font-size: 18px;
    line-height: 28px;
    padding: 20px;
}
.products-screenshot-slideshow {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
}
.lightbox-header .product-header-content {
    flex-flow: row;
}

.lightbox-header .product-header-content .product-title {
    text-align: left;
}

.lightbox-header .product-header-content .product-title h2 {
    justify-content: flex-start;
}
.lightbox-content {
    padding: 20px;
}
.products-screenshot-slideshow-lightbox .products-screenshot-view {
    padding: 0;
}
.product-video-inner {
    max-height: 45px;
    overflow: hidden;
}
.mobile-popup-video-option .product-video-inner {
    max-height: 430px;
    padding: 20px 0;
    overflow-y: scroll;
}
.bottom-blur-box {
    padding: 30px 20px;
    height: auto;
}
.search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

}
@media only screen and (max-width: 480px) {
  .flows-slider-loop .product .products-screenshot-item.slick-slider.desktop-web .products-screenshot-onetime {
      max-height: 300px;
  }
  .lightbox-content .pageflows-product-bookmark ul {
      justify-content: center;
  }
  .lightbox-header .product-logo {
      width: 45px;
      height: 45px;
      flex: 0 0 45px;
  }
  .products-screenshot-slideshow-lightbox {
      margin: 0 !important;
  }
  .lightbox-content .pageflows-product-bookmark ul li a {
      font-size: 9px;
      gap: 5px;
  }
  .lightbox-content .pageflows-product-bookmark ul li a {
      letter-spacing: 0em;
  }
  .search-results {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.products-onboarding.desktop-web .products-screenshot-slideshow {
    grid-template-columns: 1fr;
}
}
@media only screen and (max-width: 380px) {
.pageflows-product-bookmark ul li a, .product-date-link select, .product-date-link a {
    letter-spacing: 0em;
}
.product-video {
    height: 100%;
}
.product-category {
    flex-flow: column;
}
.pageflows-product-bookmark ul li a {
    font-size: 9px;
    gap: 5px;
}
.pageflows-product-bookmark ul {
    gap: 10px;
}
.products-screenshot-slideshow-lightbox .slick-track {
    height: auto;
}
}
@media only screen and (max-width: 350px) {
  .lightbox-content {
      height: 80%;
  }
  .products-screenshot-slideshow-lightbox .products-screenshot-view img {
    height: 68vh;
}
}
