body{
	
}

#world-map {
    max-width: 1400px;
    margin: 0 auto;
}

#map-svg{
	padding-top: 40px;
    padding-bottom: 40px;
    background-color: #fafafa;
    overflow: hidden;
}

#world-map svg{
    transform: scale(2.7) translate(-33px,90px);
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 500px){
    #world-map svg{
        transform: scale(4) translate(-10px,42px);
    }
}

#world-map svg > path:hover{
	animate: 1s all;
}

#world-map svg > path:hover{
	/* fill: #1a5632 !important; */
}


#world-map svg path.hightlight1{
	fill: #ff0000;
}


#map-home-wrapper{
	display: flex;
}

.food-single img{
	max-width: 50px;
    height: 100%;
    object-fit: cover;
}

.food-single{
    box-sizing: border-box;
    border: 2px solid #eee;
    display: flex;
    flex-direction: row;
    align-content: center;
    gap: 10px;
    align-items: center;
	cursor: pointer;
    width: 180px;
}

.food-single h3{
	font-size: 14px;
	font-family:sans-serif;
	font-weight: 200;
	margin: 0;
}

#map-home-categories{
	width: 800px;
    max-width: 100%;
}

.food-group-section{
    display: flex;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
}


#single-country-wrapper{
	/* width: 1200px; */
	margin: 0 auto;
	max-width: 100%;
    padding: 0px 0;
}

.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #dededf;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #dededf;
    background-color: #eceff1;
    color: #000000;
    padding: 5px;
}

.table_component td {
	font-family: 'Courier New', Courier, monospace;
    border: 1px solid #dededf;
    background-color: #ffffff;
    color: #000000;
    padding: 5px;
}

#filters-reset{
    display: none;
    border: 1px solid #ccc;
    padding: 3px 10px;
    font-size: 11px;
    color: #999;
    margin-top: 10px;
}


@media screen and (max-width: 1550px) {
    #main-category-nav{
        max-width: 30%;
    }
    #main-food-map{
        max-width: 70%;
    }
}

@media screen and (max-width: 1460px) {
    #main-category-nav{
        max-width: 35%;
    }
    #main-food-map{
        max-width: 65%;
    }
}

@media screen and (max-width: 1260px) {
    #main-category-nav{
        max-width: 40%;
    }
    #main-food-map{
        max-width: 60%;
    }
}

@media screen and (max-width: 1200px) {
    #main-category-nav{
        max-width: 100%;
    }
    #main-food-map{
        max-width: 100%;
    }
    #main-home-content{
        flex-direction: column;
    }
    #main-category-nav{
        width: 100%;
    }
    #main-cat-inner{
        margin:0;
        /* padding:0; */
    }
}