@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
body.coverage .content-section {
    padding: 40px;
}
.coverage-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    font-size: 16px;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    .coverage-container {
        font-size: 14px;
    }
}

.coverage-container .hdr > *,
.coverage-container .section > *,
.coverage-container h1,
.coverage-container h2,
.coverage-container h3 {
    margin: 0;
}

.coverage-container .hdr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.coverage-container .section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coverage-container h1 {
    font-size: 36px;
    line-height: 1.25;
}
@media only screen and (max-width: 1023px) {
    .coverage-container h1 {
        font-size: 32px;
    }
}
@media only screen and (max-width: 767px) {
    .coverage-container h1 {
        font-size: 24px;
    }
}

.coverage-container h2 {
    color: var(--color-special);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@media only screen and (max-width: 767px) {
    .coverage-container h2 {
        font-size: 20px;
    }
}

.coverage-container h2::after {
    content: '\a0';
    width: 100%;
    height: 1px;
    margin-left: 2rem;
    background: rgba(var(--color-special-alpha), 0.2);
    overflow: hidden;
    position: absolute;
    bottom: 0.25em;
}

.coverage-container h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    font-size: 20px;
    line-height: 1.5;
    background: linear-gradient(90deg,rgba(var(--color-special-alpha), 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 767px) {
    .coverage-container h3 {
        gap: 2.5rem;
        padding: 2.5rem;
        font-size: 16px;
    }
}

.coverage-container h3[class*="ic-"]::before {
    content: "";
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    filter: var(--filter-special);
}

.coverage-container h3.ic-government::before {
    background-image: url(../img/icns/24/government.svg);
}

.coverage-container h3.ic-sheriff::before {
    background-image: url(../img/icns/24/sheriff.svg);
}

.coverage-container h3.ic-handcuffs::before {
    background-image: url(../img/icns/24/handcuffs.svg);
}

.coverage-container h3.ic-dollar-gavel::before {
    background-image: url(../img/icns/24/dollar_gavel.svg);
}

.coverage-container h3.ic-hand-dollar::before {
    background-image: url(../img/icns/24/hand_dollar.svg);
}

.coverage-container h3.ic-gavel::before {
    background-image: url(../img/icns/24/gavel.svg);
}

.coverage-container h3.ic-rings::before {
    background-image: url(../img/icns/24/rings.svg);
}

.coverage-container h3.ic-certificate::before {
    background-image: url(../img/icns/24/certificate.svg);
}

.coverage-container .lst {
    margin: 0;
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
}

.coverage-container .lst.two-cols {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.coverage-container .lst.three-cols {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}
@media only screen and (max-width: 1023px) {
    .coverage-container .lst.three-cols {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

.coverage-container .lst.four-cols {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
}
@media only screen and (max-width: 1023px) {
    .coverage-container .lst.four-cols {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

.coverage-container .lst li {
    margin: 0;
    padding: 0.8rem 0 0.8rem calc(6px + 1.2rem);
    list-style: none;
    background-image: linear-gradient(to right, rgba(var(--color-special-alpha), 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    background-position: 0 100%;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    position: relative;
    -webkit-column-break-inside: avoid;
    -moz-page-break-inside: avoid;
    break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}

.coverage-container .lst li::before {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: rgba(var(--color-special-alpha), 0.3);
    border-radius: 50%;
    position: absolute;
    top: calc(0.8rem + 9px);
    left: 0;
}
@media only screen and (max-width: 1023px) {
    .coverage-container .lst li::before {
        width: 4px;
        height: 4px;
    }
}




.cvr-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    gap: 4rem;
    overflow: hidden;
}
@media only screen and (max-width: 1023px) {
    .cvr-nav {
        flex-direction: column;
    }
}

.cvr-map {
    flex: 1 1 auto;
    align-self: center;
    max-width: 800px;
    position: relative;
}
.cvr-map.small {
    max-width: 480px;
}
.cvr-map svg {
    display: block;
    max-width: 100%;
    height: initial;
    margin: 0 auto;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    cursor: default;
}
.cvr-map path,
.cvr-map circle {
    fill: var(--color-special);
}
.cvr-map line {
    stroke: var(--color-special);
}
.cvr-map a {
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}
.cvr-map a path,
.cvr-map a circle {
    fill: var(--color-special);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cvr-map a line {
    stroke: var(--color-special);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cvr-map a:hover path,
.cvr-map a:hover circle {
    fill: var(--color-main);
}
.cvr-map a:hover line {
    stroke: var(--color-main);
}
.cvr-map a.selected-state path,
.cvr-map a.selected-state circle {
    fill: var(--color-success);
}
.cvr-map a.selected-state line {
    stroke: var(--color-success);
}
body .cvr-map a {
    font-weight: 400;
    border: none;
}

.cvr-lst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 0 0 auto;
    width: 250px;
    min-height: 360px;
    padding-left: 4rem;
    background: var(--color-white);
    position: relative;
    z-index: 1;
}
@media only screen and (max-width: 1023px) {
    .cvr-lst {
        width: 100%;
        min-height: 320px;
        padding: 0;
    }
}
@media only screen and (max-width: 767px) {
    .cvr-lst {
        width: 100%;
        min-height: 245px;
    }
}
.cvr-lst::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--color-white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
@media only screen and (max-width: 1023px) {
    .cvr-lst::before {
        display: none;
    }
}
.cvr-lst::after {
    display: block;
    content: "";
    width: 100%;
    height: 130%;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 40px 0 rgba(var(--color-black-alpha), 0.1);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}
@media only screen and (max-width: 1023px) {
    .cvr-lst::after {
        display: none;
    }
}
.cvr-lst .inp {
    position: relative;
    z-index: 1;
}
.cvr-lst .inp .form-control {
    border-width: 1px;
}
.cvr-lst .cnt {
    flex: 1 1 auto;
    overflow-y: auto;
    position: relative;
}
.cvr-lst ul {
    width: 100%;
    margin: 0;
    position: absolute;
}
.cvr-lst li {
    margin: 0;
    list-style: none;
}
.cvr-lst a {
    display: block;
    padding: 0.8rem 0;
    color: var(--color-special);
    text-decoration: none;
    cursor: pointer;
}
.cvr-lst a:hover,
.cvr-lst a:focus-within {
    color: var(--color-main);
}
.cvr-lst a.selected-state {
    color: var(--color-success);
}