/*change font-size*/

.leaflet-container {
    /*font-size: 12px;*/
    /*font-size: 0.75rem;*/
    font-size: 1.2rem;
}

.leaflet-control-layers label {
    /*font-size: 13px;*/
    /*font-size: 1.08333em;*/

    /*font-size: 13px; */
    /*font-size: 1.2rem;*/
}

.leaflet-popup-content {
    /*font-size: 13px;*/
    /*font-size: 1.08333em;*/

    font-size: 12px;
    font-size: 1.2rem;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
    font-size: 11px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px;
}

.leaflet-attribution-flag {
    display: none !important;
}

/********************************************/
/****  marker class ***/

.pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #3071a9;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
}

.pin:hover {
    background: 'yellow';
}

.pin-inner {
    width: 22px;
    height: 22px;
    margin: 2px 0px 0px 5px;
    background: #fff;
    left: -5%;
    top: 5%;
    position: absolute;
    border-radius: 50%;
    transform: rotate(45deg);
    text-align: center;
}

.pin-label {
    font-size: 10px;
    font-weight: bold;
}

.pin-arrow {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: #444 transparent transparent transparent;
    border-width: 15px 5px 0 5px;
    margin-left: 6px;
    margin-top: 3px;
    border-top-color: black;
    transform: rotate(270deg);
}

/* bindTooltip class */
.tooltipbottom {
    background: lightgreen;
    border: 2px solid darkgreen;
}

.leaflet-tooltip-left.tooltipbottom::before {
    border-left-color: darkgreen;
}

.leaflet-tooltip-right.tooltipbottom::before {
    border-right-color: darkgreen;
}

/* map scale class */

.leaflet-control-scale-line {
    position: absolute;
    top: -7px;
    left: 0;
}

/* map display administrative name when on hover */

.leaflet-display-admin-name {
    position: absolute;
    top: -7px;
    left: -7px;
    border-radius: 4px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: #2262CC;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.leaflet-display-date {
    top: -7px;
    left: -7px;
    border-radius: 4px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: #2262CC;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.leaflet-display-raster-value {
    border-radius: 4px;
    padding-left: 3px;
    padding-right: 3px;
    background-color: black;
    /*background-color: #2262CC;*/
    color: white;
    font-weight: bold;
    font-size: 12px;
}

/*leaflet-search input width*/

.leaflet-control-search .search-input {
    width: 200px;
}

.leaflet-control-search .search-tooltip {
    width: 100%;
}

/* leaflet L.control center position */
.leaflet-vcenter {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 10px;
}

.leaflet-vcenter .leaflet-control {
    margin-bottom: 10px;
}

.leaflet-hcenter {
    left: 50%;
    transform: translate(-50%, -50%);
}

/* extended leaflet control layer*/

.leaflet-control-layers-extended .leaflet-control-layers-toggle {
    background-image: none;
}