article.active{
    background-color: rgba(0, 0, 0, 0.25) !important;
}

/*md*/
@media (min-width: 992px) {
    .d-md-flex-wrap {
        display: flex;
        flex-wrap: wrap;
    }
}

.map {
    height: 500px;
    width: 100%;
}
.ol-popup {
    position: absolute;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #cccccc;
    bottom: 12px;
    left: -50px;
    min-width: 280px;
}
.ol-popup:after,
.ol-popup:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.ol-popup:after {
    border-top-color: white;
    border-width: 10px;
    left: 48px;
    margin-left: -10px;
}
.ol-popup:before {
    border-top-color: #cccccc;
    border-width: 11px;
    left: 48px;
    margin-left: -11px;
}
.ol-popup-closer {
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 8px;
}
.ol-popup-closer:hover {
    text-decoration: none;
}
.ol-popup-closer:after {
    content: "X";
}
.ol-popup-content {
    font-size: 0.8em;
    height: 100%;
    overflow: auto;
    margin-top: 15px;
    max-height: 150px;
}

.tr-hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}
.circle {
    height: 30px;
    width: 30px;
    background-color: #ff00007f;
    border-radius: 50%;
    border-color: #ff0000;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

/* Checkbox */
.b-contain *,
.b-contain *::before,
.b-contain *::after {
    box-sizing: content-box !important;
}

.b-contain input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.b-contain span {
    line-height: 1.54;
    font-size: 1rem;
    font-family: inherit;
    top: -0.15em;
    position: relative;
    left: 0.2em;
}

.b-contain {
    display: table;
    position: relative;
    padding-left: 1.8rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.b-contain input[type="checkbox"] ~ .b-input {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5rem;
    width: 1.5rem;
    background: rgba(241, 245, 248, 1);
    transition: background 250ms;
    border: 1px solid rgba(184, 194, 204, 1);
    border-radius: 0.125rem;
}

.b-contain input[type="checkbox"] ~ .b-input::after {
    content: "";
    position: absolute;
    display: none;
    left: 0.5rem;
    top: 0.1rem;
    width: 0.35rem;
    height: 0.8rem;
    border: solid rgba(255, 255, 255, 1);
    border-width: 0 2px 2px 0;
    transition: background 250ms;
    transform: rotate(45deg);
}

.b-contain input:checked ~ .b-input::after {
    display: block;
}

.b-contain:hover input ~ .b-input,
.b-contain input:focus ~ .b-input {
    background: rgba(194, 32, 38, 1);
}

.b-contain input:focus ~ .b-input {
    border: 1px solid rgba(194, 32, 38, 1);
    box-shadow: 0 0 0 2px rgba(194, 32, 38, 0.5);
}

.b-contain input:checked ~ .b-input {
    background: rgba(194, 32, 38, 1);
    border-color: rgba(194, 32, 38, 1);
}

.b-contain input:checked:focus ~ .b-input,
.b-contain:hover input:not([disabled]):checked ~ .b-input {
    background: rgba(194, 32, 38, 1);
    border-color: rgba(194, 32, 38, 1);
}

.b-contain .b-input::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    margin-left: -0.85rem;
    margin-top: -0.85rem;
    background: rgba(0, 130, 243, 1);
    border-radius: 2rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}

.b-contain .b-input::before {
    visibility: hidden;
}

.b-contain input:focus + .b-input::before {
    visibility: visible;
}

.b-contain:first-child .b-input::before {
    visibility: hidden;
}