.text-muted {
    color: #999;
}
.text-center {
    text-align: center;
}
header.header-container {
    z-index: 9999 !important;
}
.site-search--container {
    z-index: 9999 !important;
}
.internal-header-block {
    height: auto !important;
}

/* #primary-header {
    background-color: white !important;
} */
#global_alert {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: #AF0000;
    z-index: 9999;
    border: none;
    border-radius: 0;
    padding: 20px;
    color: #fff;
    text-align: center;
    transition: 0.3s top;
}

#global_alert.open {
    top: 0;
    transition: 0.3s top;
}


.mtn-coverage-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
}
.mtn-coverage-wrap * {
    box-sizing: border-box;
}

#mapContainer {
    position: relative;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

#mtn_network_technologies {
    position: absolute;
    top: 180px;
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    /* background-color: red; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 999;
}
#mtn_network_technologies .net-gen {
    background-color: white;
    box-shadow: 0px 0px 5px #00000033;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: .5s;
}
#mtn_network_technologies .net-gen:hover, #mtn_network_technologies .net-gen.active {
    background-color: black;
    color: white;
}
#mtn_network_technologies .net-gen .ng-color {
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

#mtn_cm_filter_box * {
    box-sizing: border-box;
}
#mtn_cm_filter_box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 35%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
    padding: 150px 35px 15px 40px;
}
.search-group {
    position: relative;
    width: 100%;
    background: #FFF;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
}
.search-group input {
    width: 100%;
    height: 56px;
    padding: 10px 95px 10px 15px;
    border-radius: 4px;
    border: 2px solid var(--greyscale-bob, #B0B0B0);
}
.search-group .search-actions {
    position: absolute;
    top: 0;
    right: 0;
    height: 56px;
    display: flex;
}
.search-group .search-actions>button {
    width: 50px;
    border: none;
    background: none;
    margin: 10px 0;
    cursor: pointer;
}
.search-group .search-actions>button:nth-child(1) {
    border-right: 1px solid #aaa;
}
.search-group .search-results {
    opacity: 0;
    padding: 15px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
}
.search-results.show {
    opacity: 1;
    transition: .4s;
    pointer-events: all;
}
.search-group .search-results .one-result {
    display: flex;
    gap: 10px;
    cursor: pointer;
    padding: 15px 8px;
    border-bottom: 1px solid #ddd;
}

.location-coverage {
    margin-top: 8px;
    padding: 8px;
}
.location-coverage>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.location-coverage>div>div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ng-check {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ng-check.unavailable {
    border: 1px solid black;
}

.site-footer {
    margin-top: 0px !important;
}


@media screen and (max-width: 993px) {
    #mtn_cm_filter_box {
        width: 100%;
        height: auto;
        padding: 100px 5px 8px 5px !important;
        background: none;
        backdrop-filter: none;
    }
    #mtn_cm_filter_box>div>h2 {
        display: none;
    }
    .search-group {
        width: 90%;
        margin: auto;
    }

    #mtn_network_technologies {
        top: 180px;
        left: 0;
        width: 100%;
        padding: 0 20px;
    }
}