:root {
    --primary: #ef426f;
}
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.text-primary {
    color: var(--primary) !important;
}

.text-dark {
    color: #212529 !important;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    color: #fff !important !important;
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}



    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff !important;
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 .25rem rgba(228, 0, 70,.5);
    }


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff !important;
    background-color: var(--primary) !important;
}

.nav-link {
    color: var(--gray-900) !important;
}

    .nav-link:focus, .nav-link:hover {
        color: var(--primary) !important;
    }


a.anchor {
    display: block;
    position: relative;
    top: -60px;
    visibility: hidden;
}


.flag-icon {
    height: 20px;
}



.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.loading-box {
    display: flex;
    backdrop-filter: blur(2px);
}

.loading-box.hidden {
    display: none;
}

.plane-down {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.plane-icon-spacing {
    margin-left: 0.5ch;
}



.btn.btn-primary {
    color: #fff !importantFFF;
    background-color: #EF426F;
    border-color: #EF426F;
}

.map-height {
    height: 400px;
}


.chart-selector {
    --width: 100%;
    padding-inline: calc((100% - var(--width)) / 2);
}

@media only screen and (max-width: 600px) {
    .map-height {
        height: 250px;
    }

    .chart-selector {
        --width: 90%;
    }
}







.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: currentColor;
    display: inline-block;
    flex-shrink: 0;
}

.live-animation {
    animation: liveBlink 1.2s ease-in-out infinite;
}

@keyframes liveBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.15);
    }
}
