
::-webkit-scrollbar {
    width: 10px;
    height: 10px;

}
::-webkit-scrollbar-track{
    background: #2d2733;
}
::-webkit-scrollbar-thumb{
    background: #555;
}
::-webkit-scrollbar-thumb:hover{
    background: #dcbfff;
}
.world-map{
    position: relative;
    /*  top: 0;*/
    /* left: 0;*/

    width: 100%;
    height: 100%;
    /*  min-height: 30em; */
    background-color: var(--color-dhl-yellow);

    padding: 10px;
 
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
    grid-template-areas: "hd" "bd";
    grid-row-gap: 10px;
    grid-auto-rows: min-content;
    
    align-items: start;
    justify-content: center;
    
}
.world-map > h1 {
    

    
}
.world-map > .title {
    grid-area: hd;
}
.title > h1
{
    background-color: black;

    font-family: var(--title-font-family);
    margin: auto;
    width: 90%;
    border-radius: 16px;
    
    padding: 10px;
    border: none;
    font-size: 1.5rem;
    color: white;
    text-align: center;

}
.title > h3 {

    font-family: var(--title-font-family);
    margin: auto;
    width: 90%;
    border-radius: 16px;
    
    padding: 10px;
    border: none;
    font-size: 0.75rem;
    color: black;
    text-align: center; 
}

.world-map > span {
    
    
    width: 90%;
    
    margin: auto;
    background-color: black;

    font-family: var(--title-font-family);
    font-size: 1.5rem;

    border-radius: 16px;
    
    padding: 10px;
    border: none;
    
    color: white;
    text-align: center;
}



.map-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map  {
   width: 100%;
   height: auto;

   padding-top: 10px;
   max-width: 1200px;
   max-height: 800px;

   cursor: pointer;
}
path{
    fill: "#443d4b";
    fill:#443d4b;
    stroke: #dcbfff;
    transition: 100ms;
}
path:hover {
    
    fill: #D50310;
}
.side-panel{
    position: fixed;
    background-color: black;
    padding: 2em;
    top: 0;
    left: -30em;
    width: 100%;
    max-width: 25em;
    height: 100vh;
    transition:  600ms cubic-bezier(0.77, 0, 0.18, 1);
    overflow: scroll;
    z-index: 1;
    
}

.side-panel .container {
    padding-block: 2em;
    transition: 200ms ease-out;
}

.side-panel-open {left: 0}


.container > h2 {
    

    font-family: var(--title-font-family);
    font-size: 0.8 rem;

    color: white;
}

.close-btn{
    position: absolute;

    width: 30px;
    height: 30px;

    top: 5px;
    right: 5px;
    
    border: none;
    transition: 100ms;
    cursor: pointer;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: white;
}

.close-btn i {
    font-size: 1rem;
    color: #333;
    background-color: transparent;
    
}
.close-btn:hover {
    color: #FFFFFF;
    background-color: var(--color-dhl-red);
    background-color: #fff;

}
.side-panel .container > ul {
    margin-top: 2em;
    list-style: none;

}
.side-panel .container > ul > li{
    margin-bottom: 2em;
}
.side-panel li {
    margin-bottom: 1em;
    font-size: 1.2em;
}
.side-panel ul ul {
    margin-top: 1em;
    font-size: 0.7em;
    list-style: circle;
    padding-left: 2em;
}

.side-panel strong{
    color: #ffffff;
    font-size: 0.8rem;
    font-family: var(--base-font-family);
    font-weight: 600;

}
.side-panel span{

    color: white;
    font-size: 1.4rem;
    font-family: var(--base-font-family);
    font-weight: 800;

}
.side-panel span::before {
    content: " ";
}
.side-panel .container p {
    color: white;
    font-size: 0.5rem;
    margin-top: 5px;
    
}
.zoom-controls{
    position: fixed;
    top: 1em;
    right: 1em;
}
.zoom-controls button{
    display: block;
    width: 1.5em;
    height: 1.5em;
    font-size: 2em;
    background-color: #443d4b;
    color: #fff;
    border: 1px #dcbfff solid;
    cursor: pointer;
}
.zoom-controls button:hover{
    background-color: #2e2a33;
}

button:disabled{
    background-color: #1d1a20;
    border: 1px #443d4b solid;
    cursor: default;
    color: #333;
}
.zoom-out{
    margin-bottom: 10px;
}
