.map-container * {
    box-sizing: border-box;
}

.jqvmap-label {
    z-index: 1;
}
.vector-map {
    position: relative;
}

.map-container {
    background-color: #edf1f2;
    display: flex;
    flex-wrap: wrap;
    gap: 15rem 24rem;
    margin: 0 -9999px;
    padding: 0 9999px 24px;
}
.left-side {
    display: flex;
    flex-direction: column;
    flex: 1;
    row-gap: 24rem;
}
.left-side .page-title {
    background-color: #fff;
    margin: 0 -9999px;
    padding: 0 9999px;
}
.left-side h1 {
    margin-bottom: 12rem;
    max-width: 607.8rem;
}
.right-side {
    width: 405.34rem;
}

.region-dropdown {
    font-weight: 600;
}
.region-dropdown label {
    color: var(--dark-navy);
}
.region-dropdown span {
    color: var(--primary-orange);
}
.region-dropdown select {
    background-color: #fff;
    border: 1px solid var(--primary-orange);
    border-radius: 8rem;
    color: var(--primary-orange);
    margin-left: 5px;
    padding: 6px 10px;
}
.region-dropdown select * {
    color: var(--dark-navy);
}

.country-popup {
    background-color: #fff;
    border-radius: 8rem;
    box-shadow: inset 0 0 0 2rem var(--primary-orange);
    color: var(--dark-navy);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15rem 24rem;
    row-gap: 15rem;
}
.country-top {
    align-items: center;
    column-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 15rem;
}
.country-top .flag {
    border-radius: 50%;
    height: 25px;
    object-fit: cover;
    overflow: hidden;
    width: 25px;
}
.country-top h2 {
    flex: 1;
    font-size: 24px;
    margin: 0;
}
.country-bottom {
    font-size: 18px;
    max-height: 100%;
    overflow-y: auto;
}
.country-bottom ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.country-bottom ul:not(:is(ul ul)) > li:before {
    background-color: var(--primary-orange);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 10px;
    margin-right: 8px;
    vertical-align: middle;
    width: 10px;
}
.country-bottom ul:has(ul) ul li {
    margin: 0;
}
.country-bottom ul:has(ul) ul li:before {
    background-color: var(--dark-navy);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 5px;
    margin-right: 10px;
    vertical-align: middle;
    width: 5px;
}

.country-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15rem 24rem;
}
.country-buttons .button {
    border-radius: 8rem;
    box-shadow: inset 0 0 0 2rem var(--dark-navy);
    display: flex;
    flex: 1;
    overflow: hidden;
    position: relative;
}
.button-content {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    padding: 15rem 24rem;
}
.button-image {
    height: 100px;
    object-fit: cover;
    width: 100px;
}
.country-buttons .button-link {
    font-weight: 600;
}
.country-buttons .button-link:after {
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.country-buttons .button-link span {
    color: var(--primary-orange);
}
.country-buttons .button:first-child {
    background-color: var(--dark-navy);
}
.country-buttons .button:first-child .button-text {
    color: #fff;
}
.country-buttons .button:first-child .button-link {
    color: var(--primary-orange);
}
.country-buttons .button:last-child {
    background-color: #fff;
}
.country-buttons .button:last-child .button-text {
    color: var(--dark-navy);
}
.country-buttons .button:last-child .button-link {
    color: var(--dark-navy);
}

.select-continent {
    visibility: hidden;
}
.continent {
    color: var(--dark-navy);
	cursor: pointer;
	font-size: 14px;
    font-weight: 500;
	position: absolute;
	text-transform: uppercase;
}
.continent.na {
	left: 50px;
	top: 20px;
}
.continent.la {
	bottom: 130px;
	left: 100px;
}
.continent.eu {
	left: 305px;
	top: 170px;
}
.continent.as {
	right: 90px;
	top: 210px;
}
.continent.af {
	bottom: 180px;
	left: 340px;
}
.continent.pa {
    bottom: 95px;
	right: 5px;
}

.legend-buttons {
    color: var(--dark-navy);
    display: flex;
    flex-wrap: wrap;
    font-weight: 600;
    gap: 15rem 24rem;
}
.legend-buttons label {
    cursor: pointer;
    font-weight: 400;
}
.legend-buttons input {
    display: none;
}
.legend-buttons label:before {
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
}
.legend-buttons label.peppol:before {
    background-color: #00A59A;
}
.legend-buttons label.vida:before {
    background-color: #E2A1AE;
}

@media all and (max-width: 1024px) {
    .vector-map {
        display: none;
    }
    .country-buttons {
        flex-direction: column;
    }
}
@media all and (max-width: 991px) {
    .map-container {
        flex-direction: column;
    }
    .right-side {
        width: 100%;
    }
    .country-bottom {
        max-height: 400px;
    }
}
@media all and (max-width: 960px) {
    .left-side h1 {
        font-size: 36rem;
    }
}