/* LOADER */
.map-with-question-widget .idsk-interactive-map__loader {
    position: relative;
    z-index: 9;
    width: 150px;
    height: 150px;
    margin: 50px auto;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #0065b3;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* MAP */
.map-with-question-widget {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.map-with-question-widget .leaflet-container {
    font: inherit!important;
    background: white;
    position: relative;
    min-height: 600px;
    width: 100%;
    height: 100%;
}

.map-with-question-widget .idsk-interactive-map__body {
    height: 600px;
}

.map-with-question-widget .leaflet-container .leaflet-control-zoom {
    border: none;
}

.map-with-question-widget .leaflet-container .leaflet-control-zoom .leaflet-control-zoom-in {
    margin-bottom: 4px;
}

.map-with-question-widget .leaflet-container .leaflet-control-zoom.leaflet-bar.leaflet-control {
    margin-left: 2px;
    margin-bottom: 24px;
}

.map-with-question-widget .leaflet-container .leaflet-control-zoom.leaflet-bar.leaflet-control a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #030712;
    color: white;
    border: none;
    border-radius: 0;
}

.map-with-question-widget .leaflet-container .leaflet-popup hr {
    height: 1px;
    border-width: 0;
    color: #bcbec0;
    background-color: #bcbec0
}

.map-with-question-widget .leaflet-container .leaflet-popup .leaflet-popup-content-wrapper {
    border-radius: 0px;
    background-color: #002f78;
    color: white;
    border: 1px solid #294f8b;
}

.map-with-question-widget .leaflet-container .leaflet-popup .leaflet-popup-tip-container .leaflet-popup-tip {
    background-color: #002f78;
    border: 1px solid #294f8b;
}

.map-with-question-widget .idsk-interactive-map__map {
    position: relative;
}

.map-with-question-widget .leaflet-map-pane canvas {
    z-index: 1;
}
.map-with-question-widget .leaflet-tile-pane {
    z-index: 2;
}
.map-with-question-widget .leaflet-map-pane svg {
    z-index: 2;
}
.map-with-question-widget .leaflet-overlay-pane {
    z-index: 3;
}
.map-with-question-widget .leaflet-shadow-pane {
    z-index: 4;
}
.map-with-question-widget .leaflet-pane {
    z-index: 4;
}
.map-with-question-widget .leaflet-marker-pane {
    z-index: 5;
}
.map-with-question-widget .leaflet-tooltip-pane {
    z-index: 6;
}
.map-with-question-widget .leaflet-popup-pane {
    z-index: 7;
}
.map-with-question-widget .leaflet-zoom-box {
    z-index: 8;
}
.map-with-question-widget .leaflet-control {
    z-index: 8;
}
.map-with-question-widget .leaflet-bottom {
    z-index: 9;
}

.map-with-question-widget .idsk-interactive-map__legend {
    border: 2px solid #bcbec0;
    display: flex;
    flex-direction: column;
}

.map-with-question-widget .idsk-interactive-map__legend .idsk-interactive-map__legend_row {
    flex: 1;
    display: flex;
    padding: 24px 32px;
}

.map-with-question-widget .idsk-interactive-map__legend .idsk-interactive-map__legend_row .idsk-interactive-map__legend_label {
    height: 20px;
    display: inline-block;
}

.map-with-question-widget .idsk-interactive-map__legend .idsk-interactive-map__legend_row .idsk-interactive-map__legend_color {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: inline-block;
    margin: 0px 16px 0px 0px;
}

.map-with-question-widget div.contry-name-info.leaflet-control {
    border: 2px solid #bcbec0;
    background: white;
    padding: 8px;
}

@media only screen and (min-width:48.0625em){
    .map-with-question-widget .idsk-interactive-map__legend {
        flex-direction: row;
    }

    .map-with-question-widget .idsk-interactive-map__legend .idsk-interactive-map__legend_row {
        padding: 32px;
    }
}