body {
    height: 100%;
    overflow-y: hidden;
}
header {
    background-color: #ffa000;
    padding: 20px;
}
.navbar-brand {
    font-size: 24px;
    color: white !important;
}
.nav-find .nav, .nav-find .nav-item {
    width: 100%;
}

.btn-color {
    color: white;
    background-color: #007bff;
}

.alert {
    margin-top: 10px;
    display: none;
}

.target {
    position: absolute;
    width: 32px;
    height: 32px;
    transform-origin: center center;
    animation: pulse 2s infinite;
    pointer-events: none;
}

.label {
    position: absolute;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,.2);
    color: #303030;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 10vw;
    line-height: 10vw;
    font-size: 4vw;
    animation: slowpulse 1s infinite;
}

.map {
    overflow: hidden;
    position: relative;
    padding: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    transform-origin: top center;
    width: 1024px;
    height: 1024px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes slowpulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
.item-y.active {
    background-color: yellow;
    color: #303030;
}

.item-b.active {
    background-color: #007bff;
    color: #fff;
}
.print .container {
    max-width: 100%;
    margin: 90px 0 0 0;
    padding: 0;
}
.print .container .row {
    margin-left: 3mm;
    margin-right: 3mm;
}
.etichetta {
    width: 50%;
    height: 55mm;
    border: 1px solid #aaa;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrLabel {
    font-size: 24px;
    padding-left: 20px;
}

.hide {
    visibility: hidden;
}

.btn-print {
    margin-right: 20px;
}