.choropleth-map {
    height: 60vh;
    width: 100%;
    margin: auto;
}

.choropleth-info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.choropleth-info h4 {
    margin: 0 0 5px;
    color: #777;
}

.choropleth-invalid-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.choropleth-invalid-container .world-skeleton {
    font-size: 20rem;
    max-width: 800px;
    margin: auto;
    width: 100%;
    display: flex;
    color: lightgray;
    border-radius: 20px;
    border: 10px solid lightgray;
    justify-content: center;
    min-height: 60vh;
    align-items: center;
    margin-bottom: 1rem;
}

.choropleth-back-button {
    cursor: pointer;
    color: #777;
}

.choropleth-range-container {
    margin-top: 10px;
}

.choropleth-range-container .slider-number {
    margin-left: 5px;
}

.choropleth-range-container .choropleth-season-select {
    display: block;
    padding: 0.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-left: 10px;
}

.choropleth-range-controls {
    display: flex;
    justify-content: space-between;
}

.choropleth-range-controls .play-button,
.choropleth-range-controls .left,
.choropleth-range-controls .right {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: whitesmoke;
    cursor: pointer;
    margin-right: 5px;
}
.choropleth-range-controls .play:hover,
.choropleth-range-controls .left:hover,
.choropleth-range-controls .right:hover {
    background-color: lightgrey;
}

#choropleth-range {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: opacity 0.15s ease-in-out;
    transition: opacity 0.15s ease-in-out;
}

#choropleth-range:hover {
    opacity: 1;
}

#choropleth-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #04aa6d;
    cursor: pointer;
}

#choropleth-range::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border: 0;
    border-radius: 50%;
    background: #04aa6d;
    cursor: pointer;
}

.legend {
    line-height: 18px;
    color: #555;
}
.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}
