body.page-Laenderauswahl {
    background: #DBEAED;;
}
.page_content {
    background: #DBEAED;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}
.page_title.h1 {
    width: fit-content;
    margin: 0px auto 50px;
    font-size: 40px;
}
.page_logo {
    width: 230px;
    margin: 20px auto 00px;
}

.weltkarte_wrapper {
	position: relative;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.weltkarte path {
    fill: #fff !important;
    transition: fill 0.3s ease-in-out;
}
.weltkarte g {
	cursor: pointer;
}
.weltkarte g:hover > path, .weltkarte g.hover > path {
	fill: #4D5256 !important;
}
.weltkarte g.selected > path {
	fill: #E24639 !important;
}

.kontinente_pin {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #EAEAE8;
    padding-right: 10px;
    border-radius: 10px;
    top: 0;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}
.kontinente_pin.hidden {
    opacity: 0;
}
.kontinente_pin svg {
	width: 3vw;
    max-width: 35px;
	margin: -0.8vw 0 -0.8vw -1vw;
}
.kontinente_pin span {
    font-family: var(--headline-font-family);
	font-size: 17px;
	font-weight: 600;
    line-height: 1.1em;
}
#pin_africa {
	top: 53%;
    left: 50%;
}
#pin_asia {
	top: 28%;
	left: 70%;
}
#pin_australia {
	top: 72%;
    left: 81%;
}
#pin_europe {
	top: 28%;
    left: 48%;
}
#pin_america_n {
	top: 26%;
    left: 16%;
}
#pin_america_s {
	top: 68%;
    left: 30%;
}

.kontinente-boxen {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: fit-content;
}
.kontinente-box {
	display: none;
	padding: 40px;
    background-color: var(--main-color-white);
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0 var(--accent-color-light-grey);
}
.kontinente-box.visible {
	display: block;
}
.kontinente-box .auswahl_lander .laender_grid{
	display: block;
	columns: 2;
	grid-template-columns: 1fr 1fr;
	gap: 0x;
}
.kontinente-box .auswahl_lander .laender_grid a {
    display: block;
}

.kontinente-box .kontinente_titel
{
    font-family: var(--headline-font-family);
    font-weight: 600;
	font-size: 17px;
    line-height: 1.1em;
    margin-bottom: 20px;
}
a.auswahl_land {
    font-size: 15px;
	cursor: pointer;
    max-width: 200px;
    padding-left: 20px;
}
a.auswahl_land:hover {
	color: var(--main-color-red) !important;
}
   a.auswahl_land:before {
    content: '';
    border: 0px solid var(--main-color-red);
    width: 10px;
    height: 10px;
    display: inline-block;
    transform: rotate(45deg);
    border-top-width: 2px;
    border-right-width: 2px;
    margin-right: 12px;
    margin-left: -22px;
}

@media (min-width: 768px) and (max-height: 980px) {
    .kontinente-box .auswahl_lander.mehrspaltig .laender_grid {
        columns: 3;
    }
}
@media (min-width: 768px) and (max-height: 730px) {
    .kontinente-box .auswahl_lander.mehrspaltig .laender_grid {
        columns: 4;
    }
}

@media (min-width: 768px) {
    .accordion-item {
        border: none;
        cursor: default;
    }
    .accordion-item-title svg {
        display: none;
    }
    .accordion-item-content {
        display: block;
    }
}
@media (max-width: 767px) {
    body.page-Laenderauswahl, .page_content, .accordion-item {
        background: #fff;
    }
    .page_content {
        justify-content: center;
        min-height: auto;
    }
    .weltkarte_wrapper {
        display: none;
    }
    .kontinente-boxen {
        position: relative;
        width: 100%;
        left: unset;
        bottom: unset;
        padding: 0 20px;
    }
    .kontinente-box {
        display: block;
        padding: 00px;
/*        background-color: #DBEAED;*/
        border-radius: 00px;
        box-shadow: none;
    }
    .kontinente-box .kontinente_titel
    {
        font-size: 23px;
        padding: 15px 0;
        margin-bottom: 15px;
        border-bottom: 1px solid #aaabac;
        display: flex;
        align-items: center;
    }
    .kontinente-box .auswahl_lander .laender_grid {
        gap: 1px 20px;
    }
    .accordion-item {
        cursor: pointer;
        border: none;
    }
    .accordion-item-title > svg {
        top: unset;
    }
    .accordion-item-content {
        margin: 15px 0;
    }
    a.auswahl_land {
        font-size: 17px;
        cursor: pointer;
        max-width: 100%;
    }
}
@media (max-width: 389px) {
    .page_title.h1 {
        font-size: 7.3vW;
    }
    .page_logo {
        max-width: 60%;
    }

    .kontinente-box .auswahl_lander .laender_grid
    {
        grid-template-columns: 1fr;
    }

    .kontinente-box .kontinente_titel {
        font-size: 7vW;
    }
}