@import url('//fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&display=swap');
:root {
    --gray-9: #212529;
    --green-5: #20c998;
    --green-0: #e6fcf6;
    --grey-6-7: #12b887;
    --grey-3: #dee2e6;
    --gray-0: #f8f9fa;
}
    body {
    color: #212529;
    font-family: "Hind", sans-serif;
    font-size:16px;
    padding-bottom:60px;
}
h1 {
    color: #147a5d;
}
.nav-link {
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 8px 12px;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 20px;
    text-decoration: none;
    display: flex;
    font-weight:400;
}
a, .nav-link {
    color: #20c998;
}
.nav-link:hover {
    background-color: var(--green-0);
    color: var(--green-5);
}

a:hover {
       color: var(--green-5);
    border-radius: 0.5rem;
}

.green {
    color: #20c998 !important;
}

footer {
    background: #F8F9FA;
    padding: 2rem;
}
footer a {
    color: #868e96 !important;
    font-weight: 400;
    text-decoration: underline;
}

nav {
    font-size: 18px;
    background: white;
}

body.side-nav-visible .side-nav {
    transform: translateX(0);
}

body.side-nav-visible #side-nav-overlay {
    display: block;
}

.no-padding {
    padding: 0 !important;
}

.side-nav {
    transition: transform ease-in-out 0.25s;
    position: fixed;
    width: 320px;
    left: 0;
    padding: 0;
    top: 0;
    margin: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    height: 100%;
    height: calc(100% + 60px);
    height: -moz-calc(100%);
    padding-bottom: 60px;
    background-color: #fff;
    z-index: 99999;
    overflow-y: auto;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}

.side-nav li > a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-nav li > a {
    color: #000000de;
    display: block;
    font-size: 14px;
    font-weight: 500;
    height: 48px;
    line-height: 48px;
    padding: 0 32px;
}

#side-nav-overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
    display: none;
}


.side-nav .collapsible-body > ul:not(.collapsible) > li.active,
.side-nav.fixed .collapsible-body > ul:not(.collapsible) > li.active {
    background-color: #0d47a1;
    color: #fff;
}

.side-nav ul {
    padding: 0;
}

.side-nav .collapsible-body li > a:hover {
    background-color: #0d47a1;
    color: #fff;
}

.side-nav .sub-menu {
    background: #ECEFF1;
}

.side-nav .collapsible-header,
.side-nav.fixed .collapsible-header {
    background-color: transparent;
    border: none;
    line-height: inherit;
    height: inherit;
    padding: 0;
}

.side-nav li a.active {
    background-color: #1565c0;
    color: #fff;
}

.side-nav li > a:hover {
    background-color: #1565c0;
    color: #fff;
}

.side-nav .collapsible-header:hover,
.side-nav.fixed .collapsible-header:hover {
    background-color: #1565c0;
    color: #fff;
}

.side-nav .logo {
    height: 57px;
    padding-left: 30px;
}




@media only screen and (min-width: 601px) {
    .navbar-fixed {
        height: 64px;
    }

    nav, nav .nav-wrapper i, nav a.button-collapse, nav a.button-collapse i {
        line-height: 64px;
    }
}


@media only screen and (min-width: 993px) {
    nav a.button-collapse {
        display: none;
    }
}


/*********************
  Media Query Classes
**********************/
@media only screen and (max-width: 600px) {
    .hide-on-small-only, .hide-on-small-and-down {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    .hide-on-med-and-down {
        display: none !important;
    }

    .card-grid {
        display: block;
    }

    .card-grid .card {
        margin-bottom: 1rem;
    }

    .blog-card {
        margin: 1rem;
    }

    .jail-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px;
    }

    .jail-buttons .btn {
        padding: 0 1rem;
        width: 100% !important;
    }
}

@media only screen and (min-width: 601px) {
    .hide-on-med-and-up {
        display: none !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .hide-on-med-only {
        display: none !important;
    }
}

@media only screen and (min-width: 993px) {
    .hide-on-large-only {
        display: none !important;
    }
}

@media only screen and (min-width: 993px) {
    .show-on-large {
        display: block !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
    .show-on-medium {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {
    .show-on-small {
        display: block !important;
    }
}

@media only screen and (min-width: 601px) {
    .show-on-medium-and-up {
        display: block !important;
    }
}

@media only screen and (max-width: 992px) {
    .show-on-medium-and-down {
        display: block !important;
    }
}

@media only screen and (max-width: 600px) {
    .center-on-small-only {
        text-align: center;
    }
}





.btn-primary {
    border: 1px solid var(--green-5) !important;
    background-color: var(--green-5);
    color: #fff;
    text-align: left;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 0.5rem;
    flex: 0 auto;
    align-self: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 20px;
    transition: all .2s;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--grey-6-7);
    color: #fff;
    outline: 0;
    box-shadow: none;
}

.btn-secondary {
    background-color: rgba(56, 217, 168, 0);
    border: 1px solid var(--grey-3) !important;
    color: var(--gray-7);
    letter-spacing: 0;
    text-transform: none;
    border-radius: 0.5rem;
    align-self: flex-start;
    margin-left: 5px;
    margin-right: 20px;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 20px;
    transition: all .2s;
    box-shadow: none;
}

.btn-secondary:hover {
    color: #fff;
    outline: 0;
    box-shadow: none;
    border-color: var(--grey-5);
    color: var(--gray-7);
    background-color: rgba(18, 184, 135, 0);
}



.map-card svg {
    width: 100%;
    height: auto !important;
    max-height: 800px;
}

.map-card path {
    fill: #FAFDFF;
    stroke: #BCC5CC;
}

.map-card path:hover {
    fill: #36e8b3 !important;
    cursor: pointer;
}


.county-map path {
    fill: #FAFDFF;
    stroke: #CCD3D9;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    stroke-linecap: square;
}

.county-map text {
    font-size: 0.5px;
    text-anchor: middle;
    fill: #fff;
    font-family: sans-serif;
    font-weight: bold;
    text-shadow: -1px 1px rgba(0,0,0,0.4), 1px -1px rgba(0,0,0,0.4), -1px -1px rgba(0,0,0,0.4), 1px 1px rgba(0,0,0,0.4);
    alignment-baseline: middle;
    pointer-events: none;
}


.state-map path:nth-child(10n+2) {
    fill: #0e916a 
}

.state-map path:nth-child(10n+3) {
    fill: #269c79 
}

.state-map path:nth-child(10n+4) {
    fill: #3ea788 
}

.state-map path:nth-child(10n+5) {
    fill: #56b297 
}

.state-map path:nth-child(10n+6) {
    fill: #6ebda6
}

.state-map path:nth-child(10n+7) {
    fill: #87c8b5
}

.state-map path:nth-child(10n+8) {
    fill: #9fd3c3 
}

.state-map path:nth-child(10n+9) {
    fill: #b7ded2 
}

.state-map path:nth-child(10n+10) {
    fill: #cfe9e1 
}

.state-map path:nth-child(10n+11) {
    fill: #e7f4f0 ;
}



a[name] {
    position: absolute;
    margin-top: -120px;
}


.go-top {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    cursor: pointer;
    font-size: 25px;
    color: #fff !important;
    background-color: #20C998;
    border: 1px solid #ccc;
    border-radius: 50% !important;
    width: 50px;
    transition: background-color 0.3s, color 0.3s;
    height: 50px;
    align-items: center;
}

.go-top:hover {
    background-color: #12B887;
    
}

.btn-primary:focus {
    
    background-color: #20C998;
}

.btn-primary.disabled, .btn-primary:disabled {
    background-color:   #94cbbb;
}
.btn-primary:active {
    background-color: #20C998;
}




/* US map */
#states-wrap path {
    fill: #CFE9E1;
    stroke: #BCC5CC;
}

#states-wrap path:hover {
    fill: #36e8b3;
    cursor: pointer;
}

#states-wrap g:hover text {
    fill: #fff;
}

#states-wrap text {
    fill: #0E916A;
    pointer-events: none;
}

.map-card svg {
    width: 100%;
    height: auto !important;
    max-height: 800px;
}

.map-card path {
    fill: #FAFDFF;
    stroke: #BCC5CC;
}

.map-card path:hover {
    fill: #1565C0;
    cursor: pointer;
}

.accordion {
    background: #fff;
}

.accordion-item {
    border-radius: 0 !important;
}

.accordion-button {
    border-left: solid 4px #1e88e5;
    border-radius: 0 !important;
    color: #4f4f4f !important;
}

.accordion .accordion .accordion-button {
    border-left: solid 4px #27A79B;
}


.collapsible-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    line-height: 1.5;
    padding: 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.collapsible-body {
    display: none;
    border-bottom: 1px solid #ddd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1rem;
}

.col-xs-6 {
    width: 50%;
}


.card.inmate-locator {
    border: 1px solid #F7F7F7;
}