/* 
 Theme Name:   child theme
 Theme URI:    
 Description:  
 Author:       admin_swiftserve
 Author URI:   https://kreative-lion.com/2024/swiftserve
 Template:     twentytwentyone
 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 ==
--------------------------------------------*/

.select-city {
    background: #149ed1;
    color: #fff !important;
    padding: 5px 10px !important;
    border-radius: 10em;
}
.select-city:focus {
    background: #149ed1 !important; 
}


.modal-content {
	border-radius: 15px !important;
	box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    font-family:Montserrat, sans-serif;
}
.modal-title{
        font-size: 15px !important;
}
.city-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	background: #fff;
	border: 1px solid #eee;
}

	.city-card img {
		width: 100%;
		height: 90px;
		object-fit: cover;
	}

	.city-card span {
		padding: 8px;
		font-weight: 500;
        color:#575757;
        
	}

	.city-card:hover {
		transform: translateY(-5px);
		box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
	}

.search-bar input {
	    border-radius: 25px !important;
    padding-left: 15px !important;
	box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        border: 1px solid #ced4da !important;
}
.close {
    background: transparent !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #000 !important;
    text-shadow: 0 1px 0 #fff !important;
    opacity: .5 !important;
}
.use-location {
	color: #ff6600;
	font-weight: 600;
	cursor: pointer;
	margin-left: 10px;
	white-space: nowrap;
}

/* Responsive Grid */
.city-grid {
	display: grid;
	grid-gap: 15px;
	margin-top: 15px;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
}
@media (max-width: 576px) {
	.city-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.city-card img {
		height: 80px;
	}

	.use-location {
		font-size: 12px;
	}
}

@media (min-width: 577px) and (max-width: 768px) {
	.city-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	.city-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 993px) {
	.city-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.select-city {
	background: #149ed1;
	color: #fff !important;
	padding: 5px 10px;
	border-radius: 10em;
}
.modal-backdrop {
	background-color: rgb(0 0 0 / 26%) !important;
}
.menu-item .sub-menu li a{
        font-size: 16px !important;
    font-weight: 600;
    background: #fff;
    color: #000000 !important;
    padding: 15px 20px 15px;
    font-family:Sora, sans-serif;
}