/*
Theme Name: Ai List
Text Domain: ailist
Version: 1
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: 

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/



/* color variable  */
:root {
  --redGradient: linear-gradient(45deg, #cb030e, #2c01b3);
  --blueGradient: linear-gradient(45deg, #3200e0, #3F51B5);
  --borderGradient: linear-gradient(45deg, #cb030e, #2c01b3);
}


/* Header */


/* Header Menu */
html,
body,
* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
	user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.main-body-aria {
    padding-bottom: 60px
}

.aiitemsearch {
    padding: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aiitemsearch-left {
    flex-grow: 1;
}

.aiitemsearch .serch-field {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.aiitemsearch-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--blueGradient);
    padding: 14px 7px;
    width: 70px;
    min-width: 70px;
    font-size: 14px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.aiitemsearch-filter svg {
    fill: #fff;
}

.aiitemsearch-fitem {
    display: none;
    list-style: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: -2px;
    right: 0;
    background: #fff;
    border-radius: 10px;
    z-index: 99;
    text-align: right;
}

.aiitemsearch-filter.active .aiitemsearch-fitem {
    display: block;
}

.aiitemsearch-fitem li {
    padding: 5px 0;
}

.aiitemsearch-fitem li:hover {
    background: #f2f2f2;
    cursor: pointer;

}

input:focus-visible,
input:focus {
    outline: none;
}

.aiitemsearch .serch-field:hover,
.aiitemsearch .serch-field:focus {
    border: 1px solid #999;
}

.ailistitem {
    display: flex;
}


.ailistitem .ailistitem-right {
    width: 100%;
}

#ai_list_items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 24px;
}

@media all and (max-width: 920px){
		#ai_list_items {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 25px 20px;
	}
}

#ai_list_items_bookmark {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 24px;
}

@media all and (max-width: 920px){
        #ai_list_items_bookmark {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px 20px;
    }
}

.ailist_item {
    background-color: rgb(255, 255, 255);
    border-style: none;
    border-width: 1px;
    border-color: rgb(0, 0, 0);
    border-radius: 0.5rem;
    box-shadow: rgba(17, 17, 17, 0.04) 0px 2px 4px 0px, rgba(33, 33, 33, 0.08) 0px 8px 32px 0px;
    transition: box-shadow 400ms ease 0s;
}


.ailist_item:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.thum-aria {
/*     height: 200px; */
    width: 100%;
	padding: 6px 6px 0px;
}

.ailist_item img {
    width: 100%;
	height: auto;
    object-fit: cover;
    border-radius: 4px 4px 0 0;
    max-height: 240px;
}

.thum-aria {
    position: relative;
}

.video-place {
    position: absolute;
    width: calc(100% - 12px);
    top: 6px;
    bottom: 0;
    background: rgb(0 0 0 / 15%);
    justify-content: center;
    display: flex;
    align-items: center;
    transition: all .5s;
    overflow: hidden;
}

.featured {
    color: #171717;
    font-size: .9rem;
    font-weight: 500;
}
.fe-cat{
    display: flex;
    align-items: center;
    gap: 8px;
}
/* .ai-odd a:first-child{
    display: none !important;
} */

.ailist_item_aria {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ailist_item_aria:hover .video-place {
    height: 100%;
}

/* .ailist_item_aria a {
    display: flex;
    flex-direction: column;
    flex: 1;
} */

.video-place svg {
    width: 75px;
    height: 75px;
}

circle#primary {
    fill: #ffffff5c !important;
}

.aiaitemcontent {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
	gap: 16px;
    padding: 20px 16px;
    z-index: 3;
    background: #fff;
	border-radius: 0 0 8px 8px;
}

.ailist_item a {
    text-decoration: none;
}
.contentWrap {
    display: grid;
    gap: 10px;
}

.contentWrap .title_wrap {
    display: grid;
    grid-template-columns: 1fr max-content;
}

.contentWrap h2 {
    color: blue;
    font-weight: 600;
    font-size: 1.4rem;
	text-transform: capitalize;
}

.contentWrap p {
    color: #252526;
}

.aiitemcat {
    display: flex;
    gap: 6px 12px;
    flex-wrap: wrap;
}

.aiitemcat span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #000;
}

p#numberofaifound {
    margin: 0;
}

.aicat_info .title{
    display: flex;
    justify-content: space-between;
}

.aicat_info .title svg{
    display: none;
}

.aicat_info .title .idown{
    display: block;
}
.aicat_info .title.active .iup {
    display: block;
}
.aicat_info .title.active .idown{
    display: none;
}

.filter-button {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0px;
}

.filter-button label {
    font-size: .9rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-button label svg {
    fill: #333;
}

.filter-button label:hover svg {
    fill: #1ed3bb;
}

.seemorearia {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.seemorearia a {
    text-decoration: none;
    background: var(--redGradient);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
}

#ai_list_item_loading {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 24px;;
    margin-top: 28px;
}


/* sketon loading */
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }

    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.skeleton-text__body {
    width: 75%;
}

.skeleton-footer {
    width: 30%;
}

.header__img {
    margin-bottom: 10px;
    height: 150px;
    width: 100%;
}

div.pq-select-button {
    display: none;
}

#filter_search {
    display: none;
}

.add_static_button_before {
    width: 100% !important;
    padding-top: 15px !important;
    border-top: 1px solid #dcdcdc;
}


/* footer  */
.subscribe-section {
    background: linear-gradient(38deg, rgb(13 217 179 / 7%) 0%, rgb(123 99 255 / 20%) 50%, rgb(170 141 217 / 10%) 100%);
    padding: 80px 0;
}

.footer-subscription {
    display: flex;
    flex-direction: column;
	align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-subscription h2 {
	font-size: 1.7rem;
}
.footer-subscription p {
	font-size: 1.2rem;
}

.footer-subscription a {
    margin: 8px;
    text-decoration: none;
    background: linear-gradient(45deg, red, black);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 17, 0.04) 0px 2px 4px 0px, rgba(33, 33, 33, 0.08) 0px 8px 32px 0px;
}

.main-footer {
	display: none;
    background: linear-gradient(38deg, rgb(13 217 179 / 7%) 0%, rgb(123 99 255 / 20%) 50%, rgb(170 141 217 / 10%) 100%);
	padding: 1rem 0;
}

.footer-aria {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-meida ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    gap: 15px;
}



.nav-aria {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 60px;
}

.nav-aria nav ul {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
}


.nav-aria nav ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-aria nav ul li a {
    padding: 10px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.nav-aria nav ul li.menu-item-has-children {
    padding-right: 10px;
}

.nav-aria nav ul li.menu-item-has-children::after {
    content: 'next';
    font-family: swiper-icons;
    font-size: 10px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
    font-weight: 800;
    transform: rotate(90deg);
    transition: all .5s;
}

.nav-aria nav ul li.menu-item-has-children:hover::after {
    transform: rotate(270deg);
}

.nav-aria nav ul li a svg {
    width: 34px;
}

.nav-aria nav ul .sub-menu {
    position: absolute;
    flex-direction: column;
    background-color: white;
    padding: 0px 10px 0px 10px;
    z-index: 1;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0px 0px 5px 5px;
    width: 155px;
    top: 100%;
    display: none;
}

.nav-aria nav ul li:hover>.sub-menu {
    display: flex;
}

.nav-aria nav ul .sub-menu a {
    padding: 10px 0;
    display: flex;
}

.nav-aira-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_serch_icon {
    cursor: pointer;
    font-size: 1.25rem;
	fill: blue;
}

.topheader-subscrib {
	font-size: 1rem;
    font-weight: 500;
	color: #ffffff;
    text-decoration: none;
	background: var(--redGradient);
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
}

.header-wrap {
    position: relative;
    height: 90px;
    overflow: hidden;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 0px 8px rgb(194 194 194 / 20%);
    z-index: 999999;
    background: #fff;
    transition: all .5s;
}

.main-header.scrl {
    box-shadow: 0 0px 8px rgb(194 194 194 / 20%);
    padding: 14px 0;
}

@media only screen and (min-width: 992px) {
    /*     .main-header.scrl {
        padding: 5px 0;
    } */
}


.site-logo img {
    max-height: 40px;
    max-width: 140px;
}

@media only screen and (max-width: 992px) {
    .site-logo img {
        max-height: 50px;
    }
}

.logo {
    display: inline-block;
}

.scroll-logo {
    display: none;
    text-align: left;
}

.scroll-logo svg {
    width: auto;
}


/*.main-header.scrl ul li a{
      color: #23344e;
  }*/
.social-icons {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.social-icons li {
    display: inline-block;
    padding-left: 10px;
}

.social-icons li a {
    font-size: 18px;
    color: #fff;
    display: inline-block;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(0px);
    }
}

.menu-opene {
/*   	cursor: pointer; */
}

.header-menu-left {
    padding-right: 120px;
}

@media only screen and (max-width: 1200px) {
    .header-menu-left {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media only screen and (max-width: 992px) {
    .header-menu-left {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.header-menu-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header-menu-left ul li {
    display: inline-block;
}

.header-menu-left ul li:last-child {
    padding-right: 0;
}

.header-menu-left ul li a {
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-menu-left ul li a:hover {
    color: #b47931;
}

.header-menu-left .current_page_item a {
    color: #b47931;
}

/* Mobile Hamburger Menu */
.menu-opener {
    display: inline-block;
	width: 32px;
  	height: 22px;
  	position: relative;
  	cursor: pointer;
}

.menu-opener span {
    width: 100%;
    height: 2px;
    background: blue;
    display: block;
    position: absolute;
    cursor: pointer;
    transition: all .5s;
}

.menu-opener:hover span {
    background: #7962fe;
}

.menu-opener span:nth-child(1) {
    top: 0px;
	transform-origin: top right;
}

.menu-opener.active span:nth-child(1) {
    transform: rotate(-45deg) translate(0, -50%)
}

.menu-opener span:nth-child(2) {
    top: calc(50% - 1px) !important;
}

.menu-opener.active span:nth-child(2) {
    width: 0;
}

.menu-opener span:nth-child(3) {
	top: calc(100% - 2px) !important;
	transform-origin: bottom right;
}

.menu-opener.active span:nth-child(3) {
	transform: rotate(45deg) translate(0, calc(-50% + 2px));
}


.menu-opener-mobile {
    display: none;
}

.mobile-menu {
    display: none;
}

.menu-head {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}

.menu-head img {
    max-width: 112px;
    height: auto !important;
    width: auto !important;
    padding-top: 10px;
}


.filtersticky-sec {
    height: 115px;
}

.sticky {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    padding-top: 20px;
}

.serch-popup-show {
    padding: 0 15px;
    z-index: 3999999;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #aa8dd825;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    display: none;
}

.serch-popup-show.active {
    display: block;
}
.filter-modle{
    width: 600px;
    padding: 30px 20px;
    background: #fff;
/*    margin: 100px auto 0;*/
    position: relative;
    height: 100%;
    overflow-y: hidden;
    position: relative;
    left: -680px;

    transition: all .5s;
}

.filter-popup-show {
/*    padding: 0 15px;*/
    z-index: 3999999;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    background: #aa8dd825;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
/*    display: none;*/
    visibility: hidden;
    opacity: 0;
 transition: all .5s;
   
}

.filter-popup-show.active {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.filter-popup-show.active .filter-modle{
    visibility: visible;
    opacity: 1;
    left: 0;
}

.login-pop-up {
    padding: 0 15px;
    z-index: 3999999;
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #aa8dd825;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    display: none;
}

.login-pop-up.active {
    display: block;
}

.logged-in-menu {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
}

.logged-in-menu li {
    position: relative;
    display: flex;
    align-items: center;
}


.logged-in-menu li .sub-menu {
    position: absolute;
    flex-direction: column;
    background-color: white;
    padding: 0px 10px 0px 10px;
    z-index: 1;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0px 0px 5px 5px;
    width: 155px;
    top: 100%;
    display: none;
}
.logged-in-menu li .sub-menu {
    position: absolute;
    flex-direction: column;
    background-color: white;
    padding: 0px 10px 0px 10px;
    z-index: 1;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0px 0px 5px 5px;
    width: 182px;
    top: 100%;
    display: none;
    right: 0;
}
.logged-in-menu li a{
    text-decoration: none;
}
span.svg-icon{
    display: flex;
    align-items: center;
    padding: 5px 0 5px 5px;
/*     border: 1px solid #b687ff; */
	color: #171717;
/*     border-radius: 5px; */
/*     line-height: 10px; */
}
span.svg-icon strong{
    margin-left: 4px;
}

.logged-in-menu li:hover>.sub-menu {
    display: flex;
}


.logged-in-menu li .sub-menu a {
    padding: 10px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/*.nav-aria nav ul .sub-menu a {
    padding: 10px 0;
    display: flex;
}*/


.search-modle {
    max-width: 500px;
    margin: 100px auto 0;
    position: relative;
}

.model-seach-form {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.model-seach-form input {
    border: none;
    font-size: 1.125rem;
    padding: 0 10px;
    display: block;
    width: 100%;
}

#model-search-result {
    background: #fff;
    margin-top: -5px;
    max-height: calc(100vh - 200px);
    padding: 0px 0px;
    border-radius: 0 0 10px 10px;
    overflow: auto;
}

#model-search-result div {
    padding: 10px 0px;
    border-top: 1px solid #ccc;
}

.result-inner {
    height: 100%;

}

#model-search-result a {
    text-decoration: none;
    display: block;
    padding: 10px 30px;
}

#model-search-result a:hover {
    background: #e7e7e7;
}

#model-search-result h4 {
    padding: 10px 30px;
    margin: 0;
    color: #6e6e6e;
}

#model-search-result h3 {
    color: #000;
    margin: 0;
    font-weight: 500;
}

.search-instance {
    font-weight: 800 !important;
}


#model-search-result p {
    color: #000000;
}

.model_no_match {
    padding: 20px !important;
}

.model-open {
    overflow: hidden;
/*     padding-right: 15px; */
}

.hdclose-model {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    cursor: pointer;
}

/* subscribe form modal */
.model-subscribehead-form .hdclose-model {
    top: 24px;
}

.hedro-aria {
    width: 100%;
	background: linear-gradient(300deg, #ffc5c1 0%, #7962fe00 50%, #F44336 100%);
    background-repeat: no-repeat;
    opacity: 1;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 3rem 2.5rem;
/*     margin-bottom: 2rem !important; */
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.hedro-aria h1 {
    font-size: 1.7rem;
    margin: 0;
	color: #222;
}

.hedro-aria p {
    max-width: 580px;
    line-height: 1.3;
    font-size: 1.125rem;
	color: #222;
}

.subscbutton {
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    color: var(--color-secondary-text);
    cursor: pointer;
    display: flex;
    font-size: .85rem;
    height: 52px;
    justify-content: space-between;
    margin-top: 1vmin;
    max-width: 400px;
    padding: 0 10px;
    width: 100%;
    border: 1px solid #eaeaea;
    text-decoration: none !important;
	user-select: none;
}

.subscbutton span {
    background: #F44336;
    align-items: center;
    border: 0;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 500;
    gap: 0.4em;
    justify-content: center;
    letter-spacing: inherit;
    line-height: 1;
    padding: calc(0.75em*var(--multiplier, 1)) calc(1.15em*var(--multiplier, 1));
}


.subscribe-popup-show {
    padding: 0 15px;
    z-index: 3999999;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #aa8dd825;
    -webkit-backdrop-filter: blur(1.5px);
    backdrop-filter: blur(1.5px);
    display: none;
}

.subscribe-popup-show.active {
    display: block;
}


.subscribe-modle {
    max-width: 500px;
    margin: 100px auto 0;
    position: relative;
}

.model-subscribehead-form {
    display: flex;
    align-items: center;
    background: #fff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255);
    border: 0.5px solid #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(59,42,130,.1);
}

.subscribe-form {
    padding: 15px;
}

.subscribe-form img {
    display: block;
    margin: 0 auto;
}

.subscribe-form .wpcf7-email {
    appearance: none;
    display: block;
    box-sizing: border-box;
    font-size: 1rem;
    color: inherit;
    background: transparent;
    outline: none;
    border: 1px solid gray;
    border-radius: 6px;
    width: 100%;
    height: 44px;
    padding: 0 12px;
    margin-bottom: 18px;
    letter-spacing: 0.2px;

}

.subscribe-form .wpcf7-submit {
    pointer-events: auto;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    cursor: pointer;
    user-select: none;
	border: none;
    outline: none;
    margin-top: 16px;
    text-decoration: none;
    background: var(--redGradient);
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: rgba(17, 17, 17, 0.04) 0px 2px 4px 0px, rgba(33, 33, 33, 0.08) 0px 8px 32px 0px;
}

.subscribe-form .submit-btn{
    position: relative;
}
.subscribe-form .wpcf7-spinner{
    position: absolute;
    right: 0;
    top: 10px;
    border: 3px solid #ccc;
}

/* Submit Page Template CSS */

.submit-pagec {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
}

.down_container {
    box-shadow: inset 0 0 0 1px rgba(124, 139, 154, .25);
    border-radius: 4px;
    padding: 5px 30px;
    margin: 20px 0;
}

.down_container .down_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.down_title.active .idown,
.down_title .iup {
    display: none;
}

.down_title.active .iup {
    display: block;
}

.down_container .down_content {
    padding-bottom: 20px;
}

.down_container .down_content {
    padding-bottom: 20px;
    display: block;
}

/****** responsive ***********/

.mySwiper2-c {
    display: none;
}

@media(max-width: 991px) {

    .hedro-aria {
        padding: 1.5rem;
    }

    .hedro-aria h1 {
        font-size: 1.5rem;
    }

    .mySwiper2-c {
        display: block
    }

    .mySwiper-c {
        display: none;
    }

    .header-wrap {
        position: relative;
        height: 85px;
        overflow: hidden;
    }


    .main-nav .header_menu,
    .nav-aira-right .topheader-subscrib {
        display: none;
    }

    .menu-item-type-custom a {
        display: flex;
        gap: 5px;
        align-items: center;
    }

    .mobile-menu {
        display: block;
        height: 0;
        width: 100%;
        position: fixed;
        top: 65px;
        background-color: #ffffffcf;
		-webkit-backdrop-filter: blur(15px);
    	backdrop-filter: blur(15px);
        overflow: hidden;
        transition: .3s;
        z-index: 9999;
    }

    .mobile-menu.active {
        min-height: 100vh;
        border-top: 1px solid #ccc;
    }

    .mobile-menu-inner {
        padding: 30px 20px;
        min-height: 100vh;
        overflow: auto;
    }

    .mobile-menu-inner svg {
        max-width: 150px;
    }
	#menu-heapder-mobile-menu {
		margin-bottom: 20px;
	}
    .mobile-menu-inner ul {
        margin: 0;
        padding: 0;
    }

    .mobile-menu ul li {
        display: block;
        list-style: none;
    }

    .mobile-menu ul li a {
        display: flex;
        font-size: 1.125rem;
        font-weight: 500;
		text-transform: capitalize;
        letter-spacing: .5px;
        color: #000;
        transition: .5s;
        text-decoration: none;
        padding: 15px 0;
        position: relative;
    }

    .mobile-menu ul li a:hover {
        color: #7962fe;
    }

    .mobile-menu ul li.menu-item-has-children span {
        content: 'next';
        font-family: swiper-icons;
        font-size: 10px;
        text-transform: none !important;
        letter-spacing: 0;
        font-variant: initial;
        line-height: 1;
        font-weight: 800;
        transform: rotate(90deg);
        transition: all .5s;
        position: absolute;
        right: 0;
        padding: 20px 10px;
        top: 0;
    }

    .mobile-menu ul li.active span {
        transform: rotate(270deg);
    }

    .mobile-menu-inner li ul.sub-menu {
        display: none;
        padding-left: 20px;
    }

    .mobile-menu-button {
        border-top: 1px solid #aa8dd84d;
		padding-top: 20px;
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(calc(50% - 16px), 1fr));
		gap: 16px;
    }


    .mobile-menu-button a {
        color: #7962fe;
		text-align: center;
		background-color: transparent;
		border: 1px solid #7962fe;
		border-radius: 25px;
		padding: 0.5rem 1.5rem;
		font-family: Averta, sans-serif;
		font-weight: 500;
		line-height: 1.2;
		text-decoration: none;
    }

    .mobile-menu-button .signup {
        color: #f9f4f1;
	   	background-color: #7962fe;
		border-color: #7962fe;
	}

    .cross {
        display: inline-block;
        height: 40px;
        width: 40px;
        position: absolute;
        right: 20px;
        top: 34px;
        z-index: 1;
        cursor: pointer;
    }

    .cross span {
        height: 2px;
        width: 25px;
        display: inline-block;
        background-color: #fff;
        position: inherit;
        top: 18px;
    }

    .cross span:nth-child(1) {
        transform: rotate(45deg);
    }

    .cross span:nth-child(2) {
        transform: rotate(-45deg);
    }

    .page-banner {
        min-height: 600px;
    }

    .menu-opener {
        display: none;
    }

    .menu-opener-mobile {
        display: inline-block;
    }

    .menu-text {
        font-size: 18px;
    }

    .site-logo {
        text-align: center;
    }

    .social-icons {
        display: inline-block;
    }
	
}

@media(max-width: 480px) {
	.mobile-menu-button {
		grid-template-columns: 1fr;
	}
}

.double-btn-wrapper {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
}
.visit-site-btn,
.add_bookmark_btn {
    display: flex;
    justify-content: center;
    align-items: center;
	gap: 5px;
	height: 100%;
	border-radius: 4px;
	padding: 5px;
	font-size: 14px;
}
.add_bookmark_btn{
/*     font-size: 14px; */
    color: #fff;
}
.visit-site-btn {
	background: var(--redGradient);
	color: #ffffff;
}
.add_bookmark_btn {
	background: var(--blueGradient);
    cursor: pointer;
}
.visit-site-btn,
.add_bookmark_btn svg g {
    fill: #ffffff;
}

.top-ai-tools{
    border: 1px solid #7962fe;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    margin: 10px auto;
    border-radius: 5px;
}
.top-ai-tools h3{
    text-align: center;
    margin-bottom: 20px;
    background: var(--redGradient);
    color: #fff;
    padding: 10px;
}
.top-ai-tool-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;

}
.top-ai-tool-item .date-name{
    color: #9e9e9e;
     font-size: 18px;
}
.top-ai-tool-item .total-bookmarked-count{
    font-size: 18px;
}

.top-ai-tool-item .title-name{
    font-size: 18px;
    font-weight: bold !important;
}
.top-ai-tool-item .title-name a{
    text-decoration: none;
}
.filter-modle .hdclose-model{
    top: 30px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter_widget {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
}

.filter_widget input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.filter_widget label {
  	position: relative;
  	cursor: pointer;
	display: inline-flex;
    align-items: start;
    gap: 5px;
	padding-left: 24px;
	color: #333;
}

.filter_widget label:before {	
	content: "";
	position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 4px;
    background-color: #E3E3E3;
    top: 0;
    left: 0;
}

.filter_widget input:checked + label:after {
	content: "";
    display: block;
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 4px;
    position: absolute;
    top: 4px;
	background-image: url(/wp-content/uploads/2023/10/icon-check-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    left: 4px;
}

.filter_widget input:checked + label:before{
    background-color: rgba(48,125,246,.2);
}
.filter_widget img.emoji {
    width: 14px !important;
    max-height: 1em !important;
}

.filter-items{
    display: none;
    padding: 0 12px 16px;
}

.filter-items-inner{
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    flex-wrap: wrap;
	gap: 14px;
}

.filter-items p{
    font-size: 15px;
    font-weight: 500;
	margin: 0;
}
.filter_widget h2{
    color: #7e7e7e;
    text-transform: uppercase;
    margin: 0;
    font-size: 16px;
}

.single-page-section{
    padding: 50px 0 100px;
}
.post-content{
    font-size: 24px;
    line-height: 32px;
    padding: 10px;
    margin-top: 40px;
}
.container-inner{
    display: flex;
    flex-wrap: wrap;
    
}
.bookmark-btn-count{
    display: flex;
    align-items: center;
    padding: 3px 6px;
    background: unset;
    border: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 20px;
    border: 1px solid #7962fe;
    padding: 3px 10px;
    border-radius: 5px;
}
.bookmark-btn-count.total-comment-btn{
    right: 80px;
}

.col {
    flex-basis: 50%;
    padding: 10px;
}
.ai-single-image{
    padding-right: 40px;
}
.ai-single-content{
    position: relative;
        padding-top: 64px;
}
.ai-single-content h1{
    font-size: 50px;
    color: #7962fe;
    margin-bottom: 20px;
}


.ai-single-content p{
    font-size: 22px;
    line-height: 30px;
    color: #605f6a;
    margin-bottom: 20px;
}
.post-date{
    display: flex; 
    align-items: center;
    font-size: 20px;
    margin: 25px 0;
}

.terms-cat{
    font-size: 21px;
}
.terms-cat span{
    color: #887fb9;
}
.post-billingtype{
    display: flex;
    align-items: center;
    padding: 0;
    background: unset;
    border: none;
    padding: 5px 10px;
    background: #957be7;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 30px;
}

#author, #email {
font-family: "Open Sans", "Droid Sans", Arial;
font-style:italic;
color:#1d1d1d;
letter-spacing:.1em;
} 
 
#url  {
color: #1d1d1d;
font-family: "Luicida Console", "Courier New", "Courier", monospace;
} 


.comments {
  position: relative;
  width: 100%;
  background: #fff;
  margin: auto;
  padding: 27px;
  box-sizing: border-box;
  top: 5em;
}

.comments::after {
  content: " ";
  display: table;
  clear: both;
}

.comments__form-info,
.comments__form-text {
  width: 100%;
  margin: 0;
}

.comments__form-info { float: left; }
.comments__form-text { float: right; }

.comments__form-field {
  position: relative;
}
.comments__form-label {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 700 1.125em 'Open Sans', 'Helvetica Neue', 'Arial', 'sans-serif';
  cursor: text;
  pointer-events: none;
}

.comments__form-label-text {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}
.comments__form-input:focus::-webkit-input-placeholder {
   color: transparent;
}
.comments__form-input:focus + .comments__form-label .comments__form-label-text {
  transform: translateY(0);
  opacity: 1;
}

.comments__form-label::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #111;
  bottom: 1em;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.comments__form-input:focus + .comments__form-label::after {
  transform: scaleX(1);
}

.comments__form-input {
  position: relative;
  width: 100%;
  padding: 1em 0;
  border: 0;
  outline: 0;
  margin: 1em 0;
  border-bottom: 3px solid #ddd;
  vertical-align: bottom;
  font: 400 1.125em 'Open Sans', 'Helvetica Neue', 'Arial', 'sans-serif';
}

.comments__form-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 168px;
}

.comments__form-submit {
  padding: 0.5em;
  margin: 1em 0;
  background: none;
  border: 3px solid #111;
  font: 700 1em 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  opacity: 0.25;
}

.comments__form-submit:hover {
  opacity: 1;
}


@media only screen and (min-width: 1020px) {

  .comments { width: 970px; padding: 52px; }

  .comments__form-info,
  .comments__form-text { width: 407px; }

}

#comments ol{
    list-style: none;
    width: 70%;
}
#comments .comment-meta{
    position: relative;
   
}

#comments .comment{
     border: 1px solid #e7e7e7;
    border-radius: 5px;
    font-size: 15px;
    padding: 24px 24px 67px;
    margin-bottom: 10px;
}
.comment-content{
    padding: 20px 42px;
    line-height: 25px;
}
.reply{
    padding: 0 42px 20px;
}
.custom-review{
    margin-top: 50px;
    padding-top: 40px;
    margin-bottom: 50px;
    border-top: 1px solid #e7e7e7;
}
.comment-reply-link{
    display: flex;
    align-items: center;
}
.comment-reply-link svg{
    margin-left: 5px;
}
.comments-title{
    padding: 10px;
}
#comments .comment-meta .comment-metadata{
    position: absolute;
    right: 0;
    top: 0;
}
.says{
    display: none;
}
#comments ol.children{
    padding-left: 40px;
    width: 100%;
}
#comments a{
    text-decoration: none;
}
.comment-author img{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid #9076ec;
    margin-right: 15px;
}
.comment-author{
    display: flex;
    align-items: center;
    font-size: 22px;
}




.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}
.comments-rating label {
  display: inline-block;
}
.rating-container {
  font-size: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.rating-container * {
  font-size: 1.4rem;
}
.rating-container > input {
  display: none;
}
.rating-container > input + label {
  /* only enough room for the star */
  font-family: 'dashicons';
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}
.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}
.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #9b51e0;
  text-shadow: 0 0 1px #333;
}
.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: .5em;
  margin-left: -.5em;
}
.rating-container > .star-cb-clear + label:before {
  width: .5em;
}
.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}
.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #9b51e0;
  text-shadow: 0 0 1px #333;
}
.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}
.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}
#commentform label{
    display: block;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}
.required{
    color: red;
}
span.rating-container label{
    font-size: 27px !important;
    line-height: 30px !important;
}
.logged-in-as{
    margin-top: 20px;
    margin-bottom: 20px;
}
.comment-form-comment{
    margin-top: 30px;
}

.comment-form-comment textarea{
    padding: 15px;
    border: 1px solid #e7e7e7;
    width: 50%;
    margin-bottom: 20px;
}
.comment-respond{
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
}

.form-submit input{
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(300deg, #aa8dd8 0%, #7962fe 50%, #0adbb2 100%);
    padding: 10px 16px;
    border-radius: 8px;
    border: none;
}


.dashicons-star-filled:before{
    color: #9b51e0;
}

.filter_widget.filter_tex_verified_options{
    display: none;
}



.select2-container{
    min-width: 120px !important;
}

.select2-container .select2-selection--single{
    height: 42px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
}
.up-arrow{
    display: none;
}

.filter-list-item{
    position: relative;
    padding: 16px 12px;
}

.up-arrow,
.down-arrow{
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
}
.filter-list-item.active .down-arrow{
    display: none;
}

.filter-list-item.active .up-arrow{
    display: inline-block;
}




.select-filter h4{ 
    display: flex;
    align-items: center;
   margin-bottom: 20px;
   font-size: 20px;
   color: #7e7e7e;
}
.select-filter h4 svg{
    margin-right: 5px;
}
.select-filter h4 svg{
    fill: #7962fe;
    stroke: #7e7e7e;
}

.filter-options{
    height: 100%;
    overflow: hidden;
}

#ailist_filter{
    height: 100%;
    overflow: hidden;
}

.other_form_item{
    height: calc(100% - 110px);
    overflow: auto;
}

@media only screen and (max-width: 768px) {

    .filter-popup-show{
/*         top: 72px;
        height: calc(100% - 72px); */
    }

    .other_form_item{
        height: calc(100% - 150px);
        overflow: auto;
    }

    #filter_search {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        border: 1px solid #ccc;
        box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    }

    /* .filter-button{
        display: none;
    } */



    div.pq-select-button {
        display: block;
    }

    .ailistitem {
        display: block;
    }

    .ailistitem .ailistitem-left {
        width: 100%;
        padding: 0 20px;
    }

    .ailistitem-right,
    .ailistitem .ailistitem-right {
        width: 100%;
    }

    .filter_widget h2 {
        font-size: 16px;
        padding: 0;
        border-bottom: #ccc;
    }
    .filter_widget
    {
        margin-top: 10px;
    }

    /*.filter_widget p {
        display: none;
    }
*/
    #ai_list_item_loading .card {
        /*         width: 100%; */
    }

    .footer-aria {
        padding: 0 20px;
    }


    .filter-modle{
        width: 100%;
        padding: 20px;
        left: 0;
        bottom: -100%;
    }

    .filter-popup-show.active {
        visibility: visible;
        opacity: 1;
        left: 0;
    }

    .filter-popup-show.active .filter-modle{
        visibility: visible;
        opacity: 1;
        left: 0;
        bottom: 0;
    }

    .select2-container{
        min-width: 100px !important;
    }
    #menu-loggedin-menu a strong{
        display: none;
    }
}

.slider-slick {
  opacity: 0;
}

.slick-initialized {
    opacity:1;
    transition:opacity .3s ease-out;
}

.slider-slick{
    overflow: hidden;
}

.slider-item{
    margin: 15px;
}
.slider-item-inner{
    padding: 24px;
    background: #f2fafe;
    border-radius: 10px;
    padding-bottom: 80px;
    position: relative;
    background-repeat: no-repeat;
    background-size: 200px auto;
    background-position: right bottom;
    transition: all .5s;
}
.slider-excerpt{
    font-size: 15px;
}
.slider-image{
    height: 170px;
}
.slider-item-inner img{
    /* max-height: 150px;
    max-width: 150px; */
    margin: 0 auto;
    border-radius: 10px;
    transition: all .5s;
	/* height: 100%; */

}
.slider-title{
    font-size: 1.5rem;
    margin: 15px 0;
    line-height: 30px;
    font-weight: 500;
    color: #454545;
}
.slider-buttons{
    margin-bottom: -50px;
    margin-top: 30px;
}
.slider-buttons a{
    text-decoration: none;
    line-height: 30px;
    padding: 6px 30px;
    border: 2px solid #7962fe;
    color: #7962fe;
    display: inline-block;
    border-radius: 50px;
    font-weight: bold;
    transition: all .5s;

}
.slider-buttons a:hover{
    background: #7962fe;
    color: #fff;
}
.slick-dots{
    bottom: 10px;
}


.slick-dots li button:before{
    font-size: 13px;
    color: #fff;
}

.slick-dots li.slick-active button:before{
    color: #fff;
	opacity: 0.85
}

