/*
Theme Name: AUTMMAF
Description:  AUTMMAF Theme
Author:  Marc Ettl
Textdomain:  AUTMMAF
Author URI:  https://avant-iconic.com/
Template:  neve
Version:  1.0               
*/
:root{
    --red: #ED0000;
    --lightGray: #676767;
    --midGray: #2C2C2C;   
    --darkGray: #1E1E1E;    
}
#StyriaGyms{
    display:block;
}
#burgenland, #kaernten, #niederoesterreich, #oberoesterreich, #salzburg, #steiermark, #tirol, #vorarlberg, #wien{
    cursor: pointer;
}
.hide{
    display: none;
    opacity: 0;
    background: transparent;
}
.gyms ul li{
    color:white;
}
.gyms ul li:hover{
    color:var(--red);
}
.gyms ul a:hover{
    color:var(--red);
    text-decoration: none;
}
.gymListHead{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.closeBtn {
    background-color: white;
    color: var(--red);
    border-radius: 100%;
    height: 1.5em;
    width: 1.5em;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}
#map{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    background:var(--midGray);
}

.gymEntry{
    font-size:15pt;
}
.gymRegion{
    font-size: 25pt;
    text-align: center;
    transition:1s;
}
.gyms{
    transition:1s;
    opacity: 1;
    z-index:50;
}
.front{
    z-index: 51;
}
.gymBox{
    position: absolute;
    left: 0;
    top: 0;
    background: var(--darkGray);
    margin:20px;
    padding:20px;
    border-radius:30px;
    transition:1s;
}

#Austria g path{
    fill: white;
    stroke:black;
    transition:1s;
    z-index: 99;
}

#Austria g path:hover{
    fill:var(--red);
    z-index: 100;
}

.fillRed{
    fill: var(--red) !important;
}