/* Your custom CSS here */
.country-list ul {
    list-style: none;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	flex-shrink: 0;
row-gap: 10px;
margin: 0 -10px;
	
}

.country-list {padding: 0 15px; position: relative; margin: 0 auto; width: 100%;}

.country-list li {
    margin: 0;
    padding: 0 20px;
}

.country-link {
    font-size: 16px;
	font-weight: 500;
    color: rgba(0, 85, 159, 1) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.3s ease;
	background: #fff;
	border-radius: 20px;
	display: flex; align-items: center; gap: 15px;
}

.country-list i { font-size: 16px;}


.country-count {
    color: rgba(0, 85, 159, 1);
	font-size: 34px;
	font-weight: 600;
	margin-top: 10px;
}

.map-container {
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
    margin-top: 80px;
/* 	height: 100% !important; */
}

.common-map {
    width: 100%;
    height: 100%;
}

.leaflet-tooltip {
    font-size: 14px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 4px;
    padding: 5px;
}
.leaflet-popup-content {margin: 0 !important;}
.bindpopup-wrap {display: flex; flex-wrap: wrap; flex-direction: column; font-family: Montserrat,sans-serif;}
.country-name {color: rgba(0, 0, 0, 1); font-size: 12px; font-weight: 500;}
.country-number {color: rgba(0, 85, 159, 1); font-size: 20px; font-weight: 600;}
.map_sec_titles {margin-bottom: 25px;}
.map_sec_titles h6 {color: rgba(41, 91, 159, 1) !important; font-size: 14px !important; letter-spacing: 2px !important; font-weight: 700 !important; text-transform: uppercase !important; width: 100% !important; margin-bottom: 6px;}
.map_sec_titles h2 {color: rgba(133, 186, 54, 1) !important; width: 100% !important; padding-top: 0px;}

@media (min-width: 1025px) and (max-width: 1380px) {
	.map-container {
	margin-top: 70px;
		}
}


@media (min-width: 768px) and (max-width: 1024px) {
	.map-container {
	margin-top: 60px;
	}
}

@media (max-width: 767px) {
	.map-container {
	margin-top: 50px;
	}
}