/* 
 Theme Name:   themiify-child-theme
 Theme URI:    https://themiify.com/
 Description:  
 Author:       admin
 Author URI:   https://themiify.com
 Template:     kadence
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/
.apply-filter-btn {
	background: transparent;
	border: solid 2px #3e89ae;
	border-radius: 5px;
}

    .loading-wave {
  width: 300px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
    transform: translate(50%,0);
    top: 40%;
    right: 50%;
}

.loading-bar {
  width: 20px;
  height: 10px;
  margin: 0 5px;
  background-color: #3498db;
  border-radius: 5px;
  animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
  animation-delay: 0.3s;
}
/*###########################################*/

.result-ul{
    list-style:none;
    padding-right:0 !important;
    li {
        border-bottom: solid 1px #5b5b5b;
        padding: 0px 10px;
    }
}
.upper-filter{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    position:relative;
}
.search-btn {
	width: 100%;
	height: 100%;
	background: linear-gradient(251deg, #6DB9EF 0%, #F4F27E 100%);

}
.search-btn-div {
	width: 25%;
	font-size: 16px;
	font-family: "Marhey";
}
.checkbox-div {
	display: flex;
	justify-content: space-between;
}


.theme-card-new{
    max-width:315px;
}
.theme-cards-new{
    display:flex;
    flex-wrap:wrap;
    row-gap:60px;

    column-gap:30px;
}
.theme-category-new{
    width:76%;
}
.theme-filter {
    width: 340px;
    min-width:320px;

}
.child-filter-div {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
	position: sticky;
	top: 50px;
	row-gap: 20px;
	background: #0A0E25;
    border: solid 1px #6DB9EF;
    border-radius: 6px;
}
.main-filter-div{
    display:flex;
    gap:2%;
    min-height: 700px;
}
.clear-all {
	display: flex;
	justify-content: space-between;
}
.search-div{
    position:relative;
    width: 73%;
    
}
#search-input{
    width:100%;
    background:transparent;
    border:solid 1px rgba(255, 255, 255, 0.30);;
    padding-right:35px;
    font-size: 16px;
}
.search-div::before {
	content: '';
	position: absolute;
	background-image: url('https://themiify.com/wp-content/uploads/2024/02/Frame.png');
	width: 35px;
	right: 0;
	height: 29px;
    top: 10px;
	background-repeat: no-repeat;
}
.apply-filter {
    display: flex;
    justify-content: center;
}
input[type="checkbox"]:hover {
  color: black;
}
.search-result {
    opacity:0;
	border: solid 1px #4d4d4d;
	width: 100%;
	position: absolute;
	top: 50px;
	background: black;
}
.checkbox-div label, .checkbox-div p {
	margin-right: 5px;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.80);
}
.left-div {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cards-loop > div{
    cursor:pointer;
}











@keyframes loading-wave-animation {
  0% {
    height: 10px;
  }

  50% {
    height: 50px;
  }

  100% {
    height: 10px;
  }
}





@media(max-width:767px){
    .theme-cards-new {
    	display: flex;
    	flex-wrap: wrap;
    	row-gap: 25px;
    	column-gap: 10px;
    	justify-content:center !important;
    }
    .theme-card-new {
    	width: 48%;
    	max-width:205px !important;
    }
    .theme-category-new {
    	width: 100%;
    }
    .references {
    	display: flex;
    	flex: 0 0 40%;
    	justify-content: space-between;
    }
    .theme-preview{
        width: 47% !important;
        img {
        	object-fit: cover;
        	padding: 5px 20px !important;
        }
    }
    .theme-filter {
    	position: fixed;
    	height: 103vh;
    	transition: all 1s linear;
    	left: -120%;
    	background: black;
    	top: 8%;
    }
    .child-filter-div{
        position:relative;
    }
    .content-padding {
    	width: 65% !important;
    
    }
    .overlay-content{
        align-items:center !important;
        
        img{
        border-radius:10px;
    }
    }
    .references {
    	display: flex;
    	flex: 0 0 40%;
    	justify-content: space-between !important;
    }
    .content{
        margin-right: 35px !important;
        margin-left: 35px !important;
        min-height: 320px;
        padding: 48px !important;
        place-content: center;
        display: flex;
        img{
            object-fit: contain;
        }
    }
    
}