/* Personnalisation du corps des popups GeoJSON */
.lascar-ct-popup {
	width: 240px;
	max-height: 140px;
	overflow-y: scroll;
}

.lascar-ct-popup code {
    padding: 2px 8px;
    color: #C7254E;
    background-color: #F9F2F4;
}

.lascar-ct-popup table {
    width: 100%;
    max-width: 100%;
    border-spacing: 0px;
    border-collapse: collapse;
}
.lascar-ct-popup table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #DDDDDD;
    padding: 8px;
    text-align: left;
}
.lascar-ct-popup table > tbody > tr > td {
    vertical-align: top;
    border-top: 1px solid #DDDDDD;
    padding: 8px;
    text-align: left;
}

/* Personnalisation des contrôles */
.leaflet-control, .leaflet-bar a { 
    border-radius: 0px !important;
    padding: 10px !important; 
}

.leaflet-control.leaflet-control-zoom { padding: 0px !important; }
.leaflet-control-zoom a { 
    font-weight: normal;
    font-size: 20px; 
    color: #0088CE; 
    padding: 5px !important;
    box-sizing: unset;
}

.leaflet-control-zoom a:hover { color: #0088CE; }

/* Personnalisation du composant "Notifier" */
.lascar-leaflet-notifier {
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 1px 5px rgba(0,0,0,0.4);
    max-width: 272px !important;
}

.lascar-leaflet-notifier .lascar-notifier-close {
    position: absolute;
    top: -8px; right: 5px;
    font-size: 28px;
    text-decoration: none; 
}
.lascar-leaflet-notifier .lascar-notifier-close:hover { text-decoration: none; }

.lascar-leaflet-notifier .message { margin-right: 20px; }

.lascar-leaflet-notifier p { 
	display: inline-block; 
	padding: 0px !important; 
	margin: 0px 5px !important;
}

.lascar-leaflet-notifier .notifier-icon > * { 
    padding: 0px !important; 
    margin: 0px !important;
    display: inline-block; 
}
.lascar-leaflet-notifier .notifier-icon > .rotation { animation: notifierRotation 2s linear infinite; }
.lascar-leaflet-notifier .notifier-icon > .alert { animation: notifierAlert 1s both infinite; }

.lascar-leaflet-notifier .notifier-icon > .no-anim { animation: none !important; }

@keyframes notifierRotation { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform: rotate(360deg); 
    } 
}

@keyframes notifierAlert {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
} 