* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
}

body {
    display: flex;
    flex-direction: column;
}

.header {
    height: 70px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #181818;
    border-bottom: 1px solid #333;
}

h1 {
    margin: 0;
    font-size: 24px;
}

.subtitle {
    margin-top: 3px;
    font-size: 13px;
    color: #999;
}

.status {
    font-size: 14px;
    color: #aaa;
}

main {
    position: relative;
    flex: 1;
}

#map {
    position: absolute;
    inset: 0;
}

.info {
    position: absolute;
    z-index: 1000;
    left: 15px;
    bottom: 15px;

    padding: 12px 15px;

    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #444;
    border-radius: 8px;

    font-size: 14px;
}

.info div + div {
    margin-top: 6px;
}

.info a {
    color: #fff;
}
.uav-icon {
    background: transparent;
    border: none;
}

.uav-wrapper {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform-origin: center center;
}

.shakhed-icon {
    width: 32px;
    height: 32px;

    display: block;

    pointer-events: none;

 /*   filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
*/
}

.uav-svg {
    width: 40px;
    height: 40px;

    fill: #111;
    stroke: #fff;
    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9));
}

.uav-svg line {
    stroke: #111;
    stroke-width: 7;
}

.uav-svg circle {
    fill: #111;
}

.uav-nose {
    fill: #111;
}

.uav-body-shape {
    fill: #111;
}

.uav-center {
    fill: #fff !important;
    stroke: #111;
    stroke-width: 2;
}

#airwatch-filter-panel div {
    color: #000000;

}