body {
    font-family: 'Montserrat', sans-serif;
    }   
nav{
    align-items: center;
    background: #fff;
    color: #000; 
    left: 0px;
    right: 0px;
    z-index: 100;
    text-align: center;
    box-shadow: 0 1px 10px rgb(0 0 0 / 30%);
    position: fixed;
    height: 120px;
	opacity: 0;
    top: 30px;
      transition: top 0.3s ease-in-out;
}
#banner{
    margin-top: 150px;
}

#shipping-banner {
  background-color: #172b4d; /* Dark gray - more neutral and professional */
  color: white;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.banner-container {
  display: flex;
  justify-content: center; /* Center the content */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

/* Center the text */
.banner-container p {
  margin: 0;
  text-align: center;
}

#close-banner {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  position: absolute; /* Position it absolutely */
  right: 20px; /* Position from right edge */
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
#close-banner:focus{
    outline: none;
}
#close-banner:hover {
  transform: translateY(-50%) scale(1.2);
}
body.smoothload nav{
	opacity: 1;
}
.center{
	position: absolute;
}
.aulogo{
	height: 110px;
	width: auto;
} 
.menuicon{
	position: absolute;
	left: 10px;
	height: 30px;
	z-index: 2;
}
.closeicon{
	position: absolute;
	left: 10px;
	height: 30px;
	display: none;
	z-index: 2;
}
.closeicon:hover{
	cursor: pointer;
}
.navcart{
	height: 30px;
	position: absolute;
	right: 20px;
}
.navcart:hover{
	cursor: pointer;
}

/* Navbar container */
.navlist {
	z-index: 3;
	margin: auto;
	display: flex;
    position: relative;
}

/* Links inside the navbar */
#lnks{
	float: left;
	color: #000;
	text-align: center;
	padding: 10px 0 0 0;
    margin-left: 16px;
    margin-right: 16px;
	text-decoration: none;
	font-weight: 200;
    letter-spacing: 1px;
}

/* The dropdown container */
.dropdowns {
	float: left;
	z-index: 1;
}

/* Dropdown button */
.dropdowns .dropbtn {
	border: none;
	outline: none;
	padding: 14px 16px;
	background-color: transparent;
	margin: 0; 
}


.logomini{
    height: 38px;
    width: 38px;
    margin-left: auto;
    background-color: #fff;
}
.submenu .logomini{
	position: absolute;
	right: 20px;
	top: 2px;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #B76E79;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #B76E79;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after,
.dropdowns:hover .hover-underline-animation::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
	position: absolute;
    top: 34px;
    left:0;
	background-color: #fff;
	min-width: 500px;
	border: 0px solid transparent;
	border-bottom-right-radius: 1px;
	border-bottom-left-radius: 1px;
    font-size: 14px;
    letter-spacing: 5px;
	font-weight: 300;
    padding-top: 2px;
}

.dropdown-content::after{
    content: "";
    min-width: 500px;
    height: 426px;
	border: 1px solid transparent;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
    background-color: #000;
        position: absolute;
	bottom: 0px;
	left: 0px;
    z-index: -1;  /* to be below the parent element */
	 box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}
/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 0px 16px;
    text-decoration: none;
    display: flex;

    align-items: center; /* Vertically center */
    text-align: left;
    height: 48.5px;
}
.dropdown-content p{
    margin: 0;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(183, 110, 121, 0.2);
}

/* Show the dropdown menu on hover */
.dropdowns:hover .dropdown-content {
  display: block;
}

body {
  padding-top: 30px;
  transition: padding-top 0.3s ease-in-out;
}

body.no-banner {
  padding-top: 60px;
}

body.loaded nav{
	opacity: 1;
}
.center{
	position: absolute;
}
.aulogo{
	height: 110px;
	width: auto;
}  
.menuicon{
	position: absolute;
	left: 10px;
	height: 30px;
	z-index: 2;
}
.closeicon{
	position: absolute;
	left: 10px;
	height: 30px;
	display: none;
	z-index: 2;
}
.closeicon:hover{
	cursor: pointer;
}
.navcart{
	height: 30px;
	position: absolute;
	right: 20px;
}
.navcart:hover{
	cursor: pointer;
}
.navlist {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 3;
    
}

.navlist > * {
    flex-shrink: 0; /* Prevents flex items from shrinking */
    white-space: nowrap; /* Prevents text in children from wrapping */
}

        .navlist.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translate(-50%, -50%) scale(0.95);
        }


/* NEW SEARCH */
.searchbutton{
    cursor: pointer;
    margin-top: auto;
    padding-bottom: 3px;
    height: 28px;
}
.search-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid #b76e79;
    border-radius: 25px;
    padding: 5px 15px;
    width: 500px;
    max-width: 60vw;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 15px;
    font-size: 16px;
    background: transparent;
    font-family: Montserrat, sans-serif;
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b76e79;
    transition: color 0.2s ease;
}

.search-submit:hover {
    color: #8b5661;
}

.close-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.2s ease;
    margin-left: 10px;
}

.close-search:hover {
    color: #666;
}
/* Mobile responsiveness */
@media (max-width: 800px) {
    .searchbutton {
        display: none;
    }

    .dropdowncontainer {
        display: none;
    }
}

@media (max-width: 480px) {
    .search-container {
        width: 250px;
        max-width: 85vw;
    }
}

/* Mobile Search specific styles */
.mobile-search-submenu{
    background-color:#fff;
    transition:max-height .5s ease-in-out;
    max-height:0;
    overflow:hidden;
}

.mobile-search-submenu.active{
    max-height: 100px;
}

.mobile-search-container{
    padding: 20px 40px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.mobile-search-input{
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: Montserrat, sans-serif;
}

.mobile-search-input:focus{
    border-color: #b76e79;
}

.mobile-search-input::placeholder{
    color: #999;
    font-weight: 300;
}

.mobile-search-btn{
    padding: 12px 20px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-search-btn:hover{
    background-color: #a05a6b;
}

/*MENU*/
.menuicon:hover{
    cursor: pointer;
}
.menu {
    width: 100%;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    position: fixed;
    max-height: 0px;
    transform: translateY(0px);
    transition: 0.4s;
    overflow: hidden;
    margin-top: 150px;
}
.menu symbol{
    
}
.menudiv p3 {
  display: inline-block;
  position: relative;
  transition: transform 0.25s ease-out;
}
.menudiv.active p3::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.menudiv p3::after {
  content: '';
  position: absolute;
  color: #B76E79;
  width: 100%;
    transform: scaleX(0);
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: #B76E79;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.overlay{
	position: fixed;
    visibility: hidden !important;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 101;
    opacity: 0 !important;
	background-color: rgba(45, 45, 45, 0.35);
    right: 0;
    transition: opacity .25s ease-in;
}
.overlay.visible{
	    transition: opacity .25s ease-in;
	opacity: 1 !important;
	visibility: visible !important;
}
.overlay-visible{
	    transition: opacity .25s ease-in;
	opacity: 1 !important;
	visibility: visible !important;
}
.menudiv{
    width: 100%;
    margin: auto;
    padding: 10px 30px 10px 40px;
    background-color: #fff;
    border-radius: 3px;
    background-color: #fff;
    transition: 0.1s ease;
	font-weight:	400;
	box-shadow: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menudiv:hover{
     background-color: rgba(183, 110, 121, 0.2);
}
.menu a:hover{
		text-decoration: none;
}
.arrow-icon{
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 256 256"><g><g id="Layer_1"><path d="M192.5,128L77.8,10l-9,9.3,105.5,108.7-105.9,108.3,9.4,9.7,114.7-118Z"/></g></g></svg>');
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;

    position: absolute;
    right: 20px;
}
.menudiv p3{
    color: #000;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 15px;
}
.arrow-icon{
    height: 20px;
    float: right;
	opacity: 0.75;
}
.arrow-icon.active {
    transform: rotate(90deg);
}
.submenu {
    background-color: #fff;
    transition: max-height 0.5s ease-in-out;
    max-height: 0px; /* Start with a maximum height of 0 */
    overflow: hidden; /* Hide content that overflows the submenu */
}
/* CSS to show the submenu when the parent menu item is active */
.submenu.active {
    max-height: 380px; /* Adjust the maximum height as needed */
}
.submenu a{
	position: relative;
}
.submenu .logomini{
    height: 34px;
    width: 34px;
    margin-right: 5px;
}
.submenu .menudiv{
    height: 38px;
    padding-left: 55px;
    font-size: 10px;
}
.submenu .menudiv p3{
    font-size: 14px;
}
#more{
	display:none
}
@keyframes spin{
	0%{
		transform:rotate(0)
}
	100%{
		transform:rotate(360deg)
}
}
.accessories{
	text-align:center
}
.accessories h2{
	font-size:18px;
	font-weight:400!important;
	display:inline
}
@media (max-width:800px){
	.productbanner{
		padding:30px
}
}
.productbanner h2{
	font-weight:500;
	font-size:18px;
	letter-spacing:.5px;
	text-transform:capitalize;
	padding-top:10px;
	margin-bottom:0
}
.productbanner p3{
	font-weight:200;
	font-size:13px;
	letter-spacing:.5px;
	text-transform:capitalize;
	padding-top:10px;
	height:0
}
.productbanner{
	text-align:center;
	height:auto;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:30px 20px 30px 20px;
}
.rela{
    position: relative;
}
.rela:last-child{
 
}
.separator {
    z-index: 2;
    width: 1px; /* Adjust the width of the separator */
        background-color: rgba(252, 231, 242, 0.4);

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Box shadow on both sides */
    height: 90%;

    position: absolute;
    right: 0;
    top: 5%;
    
}
.separatorbtm{
    z-index: 2;

        background-color: rgba(252, 231, 242, 0.4);

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Box shadow on both sides */
    width: 90%;
    left: 5%;
    height: 1px;
    position: absolute;
    bottom: 0;

}

.shopnow{
	font-size:9px;
	letter-spacing:1px;
	border:1px solid #000;
	background-color:#fff;
	color:#000;
	margin-top:10px;
	height:30px;
	width:100px;
    letter-spacing: 2px;

}
.pimg{
	height:250px;
	position:relative
}
.imgcontain{
	text-align:center;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center
}
.search{
	margin:auto;
	text-align:center;
	padding-top:0;
	padding-bottom:20px
}
.search h5{
	font-size:30px
}
.closenotify{
	position:absolute;
	top:0;
	right:0;
	background-color:transparent;
	border:none;
	font-size:30px;
	font-weight:100;
	color:#b76e79
}
.closenotify:focus{
	outline:0
}
.jcart-item-image{
	max-height:100%
}
#sidebar{
	border:none;
	background-color:#fff;
	border-collapse:collapse;
	position:fixed;
	max-width:400px;
	width:400px;
	top:0;
	height:100vh;
	right:0;
	transition:.4s transform,.4s -webkit-transform;
	z-index:100;
	transform:translateX(100%)
}
.line-item{
	margin:auto;
	padding:0;
	margin:0;
	height:10px
}
.line-item div{
	margin-top:20px;
	margin-bottom:20px;
	border-bottom:1px solid rgba(0,0,0,.05);
	margin:0;
	left:10%;
	width:80%;
	position:relative
}
.content{
	height:calc(100% - 322px);
	overflow:scroll
}
#closecart{
	font-size:18px;
	background:0 0;
	border:none;
	color:#000;
	right:20px;
	top:20px;
	font-weight:600;
	position:absolute
}
#closecart:hover{
	cursor:pointer
}
#closecart:focus{
	outline:0
}
.jcart-item-name p{
	overflow:visible;
	white-space:nowrap
}
.jcart-item-name p{
	padding:0;
	margin:0;
	font-weight:600;
	font-size:18px
}
.jcart-item-name p3{
	font-size:16px
}
#jcart-title{
	font-size:14px;
	padding-left:12px;
	letter-spacing:1px;
	font-weight:700;
	text-transform:uppercase
}
.svg-icon{
	fill:#000;
	height:20px;
	float:right
}
#jcart-cart{
	margin-left:5%;
	width:90%;
	height:50px;
	font-size:20px;
	font-weight:300;
	background-color:#fff;
	color:#000;
	border:1px solid rgba(0,0,0,.2);
	border-radius:3px;
	margin-bottom:10px;
	letter-spacing:1px
}
.jcart-item-name{
	padding:0;
	margin:0;
	width:100%
}
.jcart-item-price{
	font-weight:700;
	font-size:15px;
	text-align:right;
	padding-right:10px;
	padding-bottom:20px
}

/* Footer */
.cryptofooter{
    text-align: center;
}
.footer{
    background-color: #fff;
    color: #000;
	box-shadow: 0px 0px 5px rgb(0 0 0 / 20%);
    overflow: hidden;
}
.footerdiv{
    display: table;
    padding-top: 20px;
    padding-bottom: 20px;
	max-width: 800px;
	margin: auto;
}
.footerdiv h6{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
	
}
.footerdiv ul{
	padding-left: 10px;
}
.footerdiv li{
    list-style: none;
}
.footerdiv a{
    text-decoration: none;
    color: #000;
}
.footerdiv a:hover{
    font-weight: 600;
}

.quicklinks{
    display: table-cell;
    padding-left: 50px;
    width: 400px !important;
}
.information{
    display: table-cell;
    padding-right: 0px;
        width: 400px !important;
} 

.newsletter{
    padding-bottom: 20px;
    margin: auto;
}
.newsletter h6{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    padding-top: 20px;
}
.newsletter p6{
    display:inline-block;
    width: 100%;
    text-align: center;
}
.subscribebtn {
        width: 90vw !important;

        max-width: 500px;
    padding-top: 10px;
    margin: auto;
    height: 40px;
    text-align: left;
    font-size: 0; /* Set font-size of the parent container to 0 */
}

.newsinput,
.newsubscribe {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    margin: 0;
    padding: 0;
    font-size: 12px; /* Reset font-size for child elements */
}

.newsinput {
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: calc(80% - 2px);
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    border-right: none;
}

.newsubscribe {
    border: 2px solid #d6ab67;
    background-color: #d6ab67;
    color: #fff;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 1px;
    width: calc(20% - 2px);
    box-sizing: border-box;
    
}

.newsubscribe:hover{
    background-color: #ce9c4a;
    border-color: #ce9c4a;
    transition: 0.5s;
}
.visafooter{
    height: 30px;
    display: block;
    margin: auto;
}
.aulogofoot{
	height: 150px;
}
.footercart{
	text-align: center;
}



/* New AuCigars Footer Style */
.information h6:nth-child(3){
        margin-top: 20px;
    white-space: nowrap;
}

.quicklinks h6:nth-child(3){
    margin-top: 15px;
}
.quicklinks h6:nth-child(5){
    margin-top: 15px;
}
.footerdiv h6{
    width: 155px;
    margin: auto auto 5px auto;
}
.quicklinks ul {
    text-align: left;
    width: 170px;
    margin: auto;
}

.quicklinks ul a li {
    margin: 0;
}

.information ul {
    text-align: left;
    width: 150px;
    margin: auto;
}

.information ul a li {
    margin: 0;
}

@media(max-width: 750px){
    .quicklinks{
        padding-left: 0;
    }

}
/*NEW*/
.search-containernew{
    margin: auto;
    width: 100%;
    display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    position: absolute;
    top: 45%;
}
.search-containernew .search-title{
    font-size: 30px;
  
    letter-spacing: 5px; 
    font-weight: 100;
    
}
.searchbarnew{
    width: 80vw;
    max-width: 800px;
    height: 50px;
    border: 1px solid #eee;
    padding-left: 20px;

}
.searchiconnew{
    background-color: transparent;
    border: none;
    height: 50px;
}
.searchiconnew svg{
    height: 50px;
    width: 50px;
    opacity: 0.3;
}
@media(max-width: 750px){
    .quicklinks{
        padding-left: 0;
    }

}
@media (max-width:800px){
	.center{
		margin:auto;
		position:absolute;
		width:100%
}
	.navlist{
		display:none
}
	.menuicon{
		height:23px
}
	.closenotify{
		font-size:20px
}
}
@media (min-width:800px){
	.center{
		padding-left:20px
}
	.menu{
		display:none!important
}
	.closeicon{
		display:none!important
}
	.menuicon{
		display:none!important
}
}
@media (max-width:450px){
	.menuicon{
		height:23px
}
	.quicklinks{
		padding-left:10px
}
	.productbanner h2{
		font-weight:500;
		font-size:16px
}
	.productbanner p3{
		font-weight:200;
		font-size:16px
}
	.pimg{
		width:100%;
		height:auto
}
}
@media (max-width:350px){
	.quicklinks{
		padding-left:10px
}
	.footerdiv{
		display:flex;
		flex-direction:column
}
	.information,.quicklinks{
		width:100%;
		text-align:center
}
	.subscribebtn{
		width:100%
}
	.newsinput{
		max-width:65%;
		min-width:65%;
		font-size:12px;
		margin-left:2.5%
}
	.newsubscribe{
		width:30%;
		font-size:8px
}
}
.searchtable > div:nth-child() {
    /* Styles for items in the first row */
    grid-row-start: 1;
    grid-row-end: 2;

}
        .newcollection {
            letter-spacing: 1px;
            font-weight: 400;
            background-color: #d6ab67;
            color: #fff;
            font-size: 6px;
            transform: rotate(-10deg) skew(-10deg);
            display: inline-block;
            text-transform: uppercase;
            padding: 3px 8px 3px 8px;
            position: relative;
            bottom: 5px;
        }
.searchtable {
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	grid-template-rows: auto;
	/* Added for variable row height */
    width: 97vw;
    margin: auto;
    overflow: hidden;
    max-width: 1200px;
    min-height: 60vh;
    position: relative;
}
.firstsearchbox{

}
.stitle{
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 10px;
}
.sort-container {

}
.filter-type-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 8px 25px;
}
.type-btn {
    color: #188aca !important;
    padding: 3px 6px;
    font-size: 14px;
}
.type-btn:hover{
    color: #333 !important;
    background-color: #f7f7f7;
    border-radius: 3px;
}

.type-btn.active{
    color: #333 !important;
    background-color: #f7f7f7;
    border-radius: 3px;
}
.type-buttons{
    display: flex;
    column-gap: 10px;
}
.sort-form {
   margin: 0;
}

.sort-select {
   padding: 5px 14px;
   border: 1px solid #e5e5e5;
   border-radius: 6px;
   background: #fff;
   min-width: 220px;
   font-size: 13px;
   cursor: pointer;
   transition: all 0.2s ease;
   -webkit-appearance: none;
   background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
   background-repeat: no-repeat;
   background-position: right 8px center;
   background-size: 16px;
   padding-right: 32px;
}

.sort-select:hover {
   border-color: #999;
   box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sort-select:focus {
   outline: none;
   border-color: #000;
   box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

@media(max-height: 1100px){
    #banner {
        margin-top: 120px;
    }
    .menu{
        margin-top: 120px;
    }
}

@media(min-height: 1100px){
    nav{
        height: 150px;
    }
    .aulogo{
        height: 130px;
    }
    #lnks{
        font-size: 22px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .navcart{
        height: 40px;
    }
    .dropdown-content{
         top: 43px;
        min-width: 585px;
    }
    .dropdown-content::after{
        min-width: 585px;
    }
}
/*Media Queries*/
@media(min-height: 1100px) and (max-width: 1000px){
    .searchbutton{
        padding-bottom: 2px;
        height: 22px;
    }
    #lnks{
        font-size: 17px;
        margin-left: 12px;
        margin-right: 12px;
    }
    .dropdown-content{
        top: 36px;
        min-width: 455px;
    }
    .dropdown-content::after{
        min-width: 455px;
    }
}
@media (max-width: 970px) {
    .filter-type-container{
        width: 95%;
    }
}
@media (max-width: 850px) {
    .filter-type-container{
        padding-left: 10px;
        padding-right: 10px;
        max-height: 50px;
    }
}
@media (max-width: 780px) {
    .sort-select{
        min-width: 50px;
        font-size: 12px;
    }
    .type-btn {
    font-size: 12px;
    }
}
@media (max-width: 768px) {
    .sort-container {
        padding: 10px 0;
    }
    
    .sort-select {
        width: 100%;
        min-width: unset;
    }
}
@media (max-width: 670px) {
    .sort-container{
        padding: 0;
    }
    .sort-select{
        min-width: 50px;
        font-size: 10px;
    }
    .type-btn {
    font-size: 10px;
    }
}
@media (max-width: 580px) {
    
        .filter-type-container{
        padding-left: 3px;
        padding-right: 5px;
        max-height: 37px;
            display: flex;
            align-items: center;
    }
    .sort-select{
        min-width: 0px;
        width: 135px;
        font-size: 8px;
        padding-right: 10px;
        padding-left: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
       background-position: right 2px center;
    }
    .type-buttons{
        column-gap: 0;
    }
    .type-btn {
    font-size: 9px;
    }
}
@media (max-width: 480px) {
    .type-btn {
    font-size: 7px;
    }
}
@media(min-width: 1000px){
.searchtable > div:nth-of-type(4n + 5) .separator {
    display: none;
}
}
@media(max-width: 1000px){
	.searchtable{
		grid-template-columns: 33% 33% 33%;
	}
    .searchtable > div:nth-of-type(3n + 4) .separator {
    display: none;
    }   
}
@media(max-width: 700px){
	.searchtable{
		grid-template-columns: 50% 50%;
	}
    .searchtable > div:nth-of-type(3n + 4) .separator {
    display: inherit;
    }   
    .searchtable > div:nth-of-type(2n + 3) .separator {
    display: none;
    }   
}
.searchtable > *:first-child {
	grid-column: 1 / -1;
	/* Span all columns */
	text-align: center;
}
.searchtable > *:last-child {
	grid-column: auto;
	/* Reset grid positioning for the last child */
}
.searchtable a{
	text-decoration: none;
	color: #000;
}
.searchtable > .pagination {
	grid-column: 1 / -1;
	/* Span all columns in the second row */
}
.pagination{
	margin: auto;
	grid-column: auto;
	margin-bottom: 10px;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    padding-top: 10px;
    margin-top: -10px;
    display: flex;
	justify-content: center;
}
.pagination a {
	border: 1px solid transparent;
	width: 30px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	font-weight: 200;
	margin-bottom: 10px;
}
.pagination a:hover{
    background-color: #eee;
}
.ellipsis{
	border: 1px solid transparent;
	border-left: none;
	width: 25px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	font-weight: 200;
}
.ellipsis:hover{
	cursor: pointer;
}
.pagination a.current-page {
	background-color: #f7f7f7;
	/* Change to black for the current page */
}
.pagination a:first-child{
	border-left:1px solid transparent;
}
.pagination-link[disabled] {
	opacity: 0.5;
	/* Adjust the opacity for the disabled look */
	pointer-events: none;
	/* Disable pointer events for disabled links */
	cursor: not-allowed;
	/* Change cursor for disabled links */
}
/*Search*/
.closeiconsearch{
	position: absolute;
	top: 10px;
	right: 10px;
	opacity: 0.2;
}
.closeiconsearch:hover{
	cursor: pointer;
}
.searchbutton{
}
.searchbutton:hover{
	cursor: pointer;
}
.searchbutton:focus{
	outline: none;
}
.searchmenu{
	height: 23px;
	float: right;
	padding-right: 5px;
}
#search{
	text-align: center;
	background-color: #fff;
}
.modal-content{
	background: transparent;
}
.searchbar{
	position: relative;
	top: 43vh;
	width: 80%;
	padding: 5px 10px 3px 20px;
	border: 0px solid transparent;
	max-width: 700px;
	left: 0px;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.8s;
	-webkit-appearance: none;
}
.searchbar:focus{
	outline: none;
}
.searchicon{
	width: 30px;
	margin-left: 10px;
	background: transparent;
	border: none;
	padding-left: 0;
	position: absolute;
	top: 43.5vh;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.8s;
}
.searchicon:focus{
	outline: none;
	font-size: inherit;
}
.searchinfo{
	height: 25px;
}
.searchimg{
	height: 30px;
}
@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
