

/* ################## step_choose_location #################### */

#step_choose_location{
    display: flex;
    justify-content: center;

    background-image: url("https://chrmaass.dev01.analina.de/Bilder/Karte/518337010-66101010.jpg");
    background-position: center;
    background-repeat: no-repeat;
}

#step_choose_location > .content {
    display: grid;
    min-height: 100%;
    width: 100%;
    max-width: 700px;
    grid-template-columns: auto; 
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
    "header"
    "cont"
    "footer";
    z-index: 1;
}

@media (max-height: 655px)
{
    #step_choose_location{
        background-image: none !important;
        background-color: #241332;
        background-position: center;
        background-size: cover;
    }
}


#step_choose_location .header{
    
    background-color: #604F81;
    border-radius: 0px 0px 0px 80px;
    grid-area: header;
    padding-bottom: 20px;
}

#step_choose_location .content .header > h1{
    color: #DDDDDD;
    text-align: center;
    text-transform: uppercase;   
    font-weight: 500;
    font-size: 11.0px;
    letter-spacing: 1.0px;
    margin-top: 20px;
}

#step_choose_location .content .header > h2{
    margin: 0px;
    padding: 0px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 32.0px;
    margin-top: 10px;
    text-transform: none;
}


#step_choose_location .content .header> h3{
    margin: 0px;
    padding: 0px;
    color: #DDDDDD;
    text-align: center;
    letter-spacing: 1.0px;
    font-weight: 400;
    font-size: 14.0px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-transform: none;
}


#step_choose_location .step_choose_map{
    grid-area: "cont";

}

#step_choose_location .footer{
    background-color: #241332;
    border-radius: 60px 60px 0px 0px;
    padding-top: 20px;
    grid-area: footer;
}

#step_choose_location .button:not(:first-child){
    margin-top: 8px;
}


#step_choose_location .buttoncontainer
{
    margin-top: 16px;
}



/* ----------------- step_choose_location --------------------- */

