body, html {
    margin: 0;
    height: 100%;
    background-color: #dbdbdb;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5vh;
    background-color: #20acdb;
}

.title h1 {
    margin: 0;
}

.icon {
    height: 35px;
}

.title {
    display:flex;
    margin-left: 5px;

}

.title-uk {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.flexbox-container {
    position: relative;
    display: flex;
    height: 95vh;
}

gmp-map {
    flex: 1;
    width: 800px;
}

.details-area {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 50%;
}

.filters {
    display: flex;
    gap: 10px;
    padding: 5px;
}

.search-area {
    flex: 1 0 auto;
}

.sort-select {
    height: auto;
    flex: 1 0 auto;
}

.date-select {
    height: auto;
    flex: 1 0 auto;
}

.search-button {
    height: auto;
    flex: 1 0 auto;
}

.crime-details-area {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: #dbdbdb;
    overflow-y: auto;
}

.no-search {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.searched {
    flex: 1 0 auto;
    display: none;
    flex-direction: column;
}

.menuTab {
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-menu {
    display: none;
    flex-direction: row;
    height: 40px;
    text-align: left;
}

.menu-button {
    flex: 1 0 auto;
    border:none;
    outline:none;
}

.results-button {
    border-right: #4594bc 2px solid;
}

.force-description {
    padding: 0 20%;
}

.neighbourhood-description {
    padding: 0 20%;
}

.neighbourhood-description p {
    margin-top: 0;
}

.neighbourhood-contact-details h2{
    margin-top: 0;
}   

.loading {
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 4px;
    color: #4594bc;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow:
            19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
            19px 0     0 5px, 38px 0     0 5px, 57px 0     0 5px,
            19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px;
    transform: translateX(-38px);
    animation: l26 2s infinite linear;
}
@keyframes l26 {
    12.5% {box-shadow:
            19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px,
            19px 0     0 5px, 38px 0     0 0px, 57px 0     0 5px,
            19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px}
    25%   {box-shadow:
            19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px,
            19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
            19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 0px}
    50%   {box-shadow:
            19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
            19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
    62.5% {box-shadow:
            19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
            19px 0     0 5px, 38px 0     0 0px, 57px 0     0 0px,
            19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 5px}
    75%   {box-shadow:
            19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0     0 0px, 38px 0     0 0px, 57px 0     0 5px,
            19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
    87.5% {box-shadow:
            19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
            19px 0     0 0px, 38px 0     0 5px, 57px 0     0 0px,
            19px 19px  0 5px, 38px 19px  0 0px, 57px 19px  0 0px}
}

.search-empty-state-image {
    height: 300px;
}

.crime-icon {
    height: 35px;
    margin-right: 5px;
}

.accordion {
    display: inline-flex;
    align-items: center;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.active-panel {
    padding: 18px 18px;
}

.panel {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}

.panel button {
    display: inline-flex;
    border: 2px solid black;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 10px;
    margin: 0;
}

hr {
    width: 50%;
}

/*GOOGLE INFO WINDOW*/
.iw {
    display: flex;
    flex-direction: column;
}

/*FONTS*/
.saira-extra-condensed-regular {
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nunito-sans-title {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

.nunito-sans-normal {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}