/* Minification failed. Returning unminified contents.
(1114,37): run-time error CSS1046: Expect comma, found '0'
(1114,41): run-time error CSS1046: Expect comma, found '/'
(1115,45): run-time error CSS1046: Expect comma, found '0'
(1115,49): run-time error CSS1046: Expect comma, found '/'
 */
/* Font styles / sizes */

@font-face {
  font-family: 'Titillium-Web';
  src: url('/fonts/TitilliumWeb-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Regular.ttf') format('truetype');
}

html {
  font-size: 16px;
}

body {
  font-family: 'Roboto';
}

#DialogOptionSelectTitle,
#legend-title,
.h5,
.h6,
.accordion-header > button,
.map-dialog-header,
.top-bar > span,
.title,
#CameraControlTitle,
.closest-selection-item-header {
  font-family: 'Titillium-Web';
  font-weight: bold;
}

.message {
  font-weight: bold;
}

#PageViewCountTitle {
  font-weight: bold;
}

.top-bar > span {
  font-size: 1.1rem;
}

#DialogOptionSelectTitle,
#DialogDescription,
#legend-container,
.map-dialog * button,
#legend-title,
select,
.map-popup-content,
.view-count,
.not-found-content,
.error,
.content-shared,
#CameraControlTitle {
  font-size: .8rem !important;
}

/** Layout **/

html, body, form, #main {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#main {
  display: flex;
}

#map {
  position: absolute;
  width: 100%;
  left: 0;
  flex: 1;
}

@media (max-width: 767px) {
  #map {
    top: 3rem;
    height: calc(100% - 3rem);
  }
}

@media (min-width: 768px) {
  #map {
    top: 0;
    height: 100%;
  }
}

/** Not found styles **/

.not-found-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
}

.not-found-wrapper > .container {
  box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.2);
  padding: 0;
  border-radius: .25rem;
  background: white;
  max-width: 500px;
}

.not-found-header {
  background-color: #00B0FF;
  border-radius: .25rem .25rem 0 0;
}

.not-found-header > img {
  height: 3rem;
  padding: .75rem;
}

.not-found-content {
  padding: 1.2rem 1rem 1rem 1rem;
  border-bottom: 1px solid #D6D6D6;
}

.not-found-content.password-input-wrapper {
  padding: 1.2rem 1rem 0 1rem;
}

.not-found-wrapper > .container > .badge {
  color: #0078A8;
  margin-bottom: .25rem;
}

/* Map info dialog / popup */

.map-popup {
  width: 300px;
  background: white;
  position: absolute;
  left: -150px;
  top: 10px;
  display: none;
  padding: 0;
  box-shadow: 0 0.4em 0.8em 0 rgba(0, 0, 0, 0.2), 0 0.6em 2em 0 rgba(0, 0, 0, 0.19) !important;
}

.map-dialog {
  width: calc(100% - 2rem);
  max-width: 300px;
  min-height: 5rem;
  max-height: calc(100% - 3.5rem);
  background: white;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 11;
  display: none;
  box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.2);
  flex-direction: column;
  overflow-y: auto;
}

.map-dialog > .map-close {
  position: absolute;
  top: .35rem;
  right: .35rem;
}

.map-dialog, .map-popup, .map-popup > .content {
  border-radius: .25rem;
}

.map-dialog > .map-dialog-header {
  padding: .25rem .5rem;
}

.map-dialog > .footer {
  padding: .25rem;
  border-top: 1px solid rgba(0,0,0,0.125);
}

.map-dialog > .footer > button {
  width: 100%;
  padding: .25rem;
}

.map-popup:after {
  bottom: 100%;
  border: solid transparent;
  content: " ";
  position: absolute;
  pointer-events: none;
  border-bottom-color: #FFFFFF;
  border-width: 10px;
  margin-left: 140px;
}

.map-popup > .header {
  text-align: center;
  display: flex;
  padding: 0;
  margin: 0;
  max-width: 100%;

  cursor: pointer;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.map-popup > .header > div {
  padding: .25rem .5rem;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-popup > .header > div.active {
  color: black;
}

.map-popup > .header > div:not(.active) {
  color: grey;
}

.map-popup > .header > div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.map-popup > .header > div:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.125);
}

.map-popup > .header > div:last-child {
  border-left: 1px solid rgba(0, 0, 0, 0.125);
}

.map-popup > .header > .map-dialog-header {
  flex: 1;
}

.map-popup > .header > .close {
  width: 40px;
}

.map-popup > .content {
  overflow: auto;
  max-height: 300px;
  padding: 0;
  margin: 0;
  max-width: 100%;
  min-height: 3rem;
}

.message {
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}

.content-loading {
  padding: 10px;
  overflow: hidden;
  margin: auto;
  height: 3rem
}

.map-popup-content > div {
  display: flex;
}

.map-popup-content > div > .title {
  padding: .25rem .5rem;
  flex: 1;
}

.map-popup-content > div > .value {
  padding: .25rem .5rem;
  flex: 1;
}

.map-popup-content > div:not(:first-child) {
  border-top: 1px solid #D6D6D6;
}

.map-popup-content > div:nth-child(odd):not(.loading):not(.message) {
  background: rgb(243, 247, 250);
}

@media (max-width: 767px) {
  .dialog-background.show {
    display: block;
  }
}

@media (min-width: 768px) {
  .map-dialog-header {
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
    text-align: center;
  }

  .dialog-background {
    display: none !important;
  }
}

/** Copyright labels **/

.copyright {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap-reverse;
}

.copyright > * {
  background-color: rgba(255, 255, 255, 0.7);
  color: #0078A8;
  margin: .1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .copyright {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .copyright {
    width: calc(100% - 330px);
  }
}

/** Main control dialog & top bar **/

#control-dialog {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: white;
  overflow: hidden;
}

#control-dialog > div {
  padding: .5rem 1rem;
}

#control-dialog > .header {
  margin: 0;
  display: flex;
  border: 1px solid rgba(0,0,0,0.125);
}

#control-dialog > .header > .h5 {
  margin: auto;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

#control-dialog > .content {
  overflow-y: auto;
  height: 100%;
  flex: 1;
  border-left: 1px solid rgba(0,0,0,0.125);
  border-right: 1px solid rgba(0,0,0,0.125);
}

#control-dialog * hr {
  margin: 1rem -1rem;
}

#control-dialog > .content > .img-wrapper {
  padding: 1rem 0;
}

#control-dialog > .content > .img-wrapper > img {
  height: 3rem;
}

.view-count {
  background-color: white;
  border-top: 1px solid #D6D6D6;
  display: flex;
  align-items: center;
  justify-content: center;
}

#PageViewCountTitle {
  padding-right: .25rem;
}

.top-bar {
  position: fixed;
  left: 0;
  background-color: #00B0FF;
  display: flex;
  z-index: 2;
}

.dialog-background {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: none;
}

@media (min-width: 768px) {
  #control-dialog {
    width: 330px !important;
    height: calc(100% - 2.5rem);
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    box-shadow: 0 0.4em 0.8em 0 rgba(0, 0, 0, 0.2), 0 0.6em 2em 0 rgba(0, 0, 0, 0.19) !important;
    z-index: 1;
  }

  .view-count {
    height: 1.5rem;
    width: 100%;
  }

  #map-popup {
    display: none !important;
  }
  
  #map {
    left: 330px !important;
    height: 100% !important;
    width: calc(100% - 330px) !important;
  }

  .control-close {
    display: none !important;
  }

  .top-bar {
    width: 330px;
    height: 2.5rem;
    bottom: 0 !important;
  }

  .img-logo {
    display: none;
  }
  
  .top-bar > img {
    height: 2rem;
    padding: .5rem;
    margin: auto;
  }

  .top-bar > span {
    display: none !important;
  }
  
  .top-bar > .menu-btn {
    display: none;
  }

  .show-desktop {
    display: block !important;
  }
  
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #map-dialog {
    display: none !important;
  }

  .map-dialog {
    top: 4rem;
  }
  
  #map-controls .map-zoom-in,
  #map-controls .map-zoom-out {
    display: none;
  }

  /** Align close info popups button with autori logo on the top */
  #map-controls {
    left: 0.4rem !important;
  }

  #control-dialog {
    z-index: 12;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem) !important;
    max-width: 500px;
    height: calc(100% - 2rem) !important;
    border-radius: .25rem;
  }

  .top-bar {
    top: 0;
    width: 100% !important;
    height: 3rem !important;
    box-shadow: 0 0.1em 2em 0 rgba(0, 0, 0, 0.19) !important;
  }
  
  .text-logo {
    display: none;
  }

  .top-bar > button,
  .top-bar > img
  {
    width: 3rem;
    text-align: center;
    border-radius: 0 !important;
  }

  .top-bar > button {
    border-left: 1px solid white !important;
    padding: 0;
  }
  
  .top-bar > button > img {
    padding: .5rem;
  }

  .top-bar > img {
    border-right: 1px solid white !important;
    padding: .75rem;
  }

  .top-bar > span {
    color: white;
    margin: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: .75rem;
  }

  .show-mobile {
    display: block !important;
  }

  .hide-mobile {
    display: none !important;
  }
}

/* Dialog description */

#DialogDescription table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

#DialogDescription td, #DialogDescription tr, #DialogDescription th {
  border: 1px solid black;
}

#DialogDescription {
  display: flex;
  flex-direction: column;
}

#DialogDescription > table
{
  margin-top: 1rem;
}

/* Dialog draw options */

#legend-title, #CameraControlTitle {
  margin: .5rem 0;
}

#legend-container > div {
  display: flex;
  padding: .1rem;
  border: none;
}

#legend-container > div > div {
  margin: auto .3rem;
}

#legend-container > div > div:first-child:not(.image-wrapper) {
  height: 0.85714286rem;
  width: 0.85714286rem;
}

#legend-container > div > div:first-child:not(.image-wrapper) {
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.shared-view-legend > .image-wrapper > img {
  height: 0.85714286rem;
  width: 0.85714286rem;
}

.legend-draw-color-presentation {
  height: 0.85714286rem;
  width: 0.85714286rem;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

.legend-draw-color-presentation,
.image-wrapper {
  margin-left: 0 !important;
}

#legend-container > div > div:last-child {
  flex: 1;
}

#map-controls {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

#map-controls > button {
  height: 2rem;
  width: 2rem;
  background: #ffffff;
  border-color: transparent;
  box-shadow: 0 0.4em 0.8em 0 rgba(0, 0, 0, 0.2), 0 0.6em 2em 0 rgba(0, 0, 0, 0.19) !important;
  padding: 0;
}

#map-controls > button > img {
  width: 1rem;
  height: 1rem;
}

#map-controls > button:hover {
  background-color: #f0f0f0 !important;
}

#map-controls > button:active {
  background-color: #e0e0e0 !important;
}

#map-controls > #close-info-popups:hover {
  background-color: red !important;
}

/** Map controls (zoom buttons) **/

@media (max-width: 767px) {
  #map-controls .map-zoom-in,
  #map-controls .map-zoom-out {
    display: none;
  }

  #close-info-popups {
    margin-top: 0;
  }

  #shared-view-closest-selection-dialog {
    margin-top: -2px;
  }
}

@media (min-width: 768px) {

  #map-controls > button:first-child {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  #map-controls > button:nth-child(2) {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}

/** Full screen styles for attachment images **/

.full-screen-attachment-image-container.error > .camera-control > .left,
.full-screen-attachment-image-container.error > .camera-control > .right,
.full-screen-attachment-image-container.error > .camera-control > .index,
.full-screen-attachment-image-container:not(.error) > .image-container > .error,
.full-screen-attachment-image-container.loading > .camera-control > .left,
.full-screen-attachment-image-container.loading > .camera-control > .right,
.full-screen-attachment-image-container.loading > .image-container > .zoom,
.full-screen-attachment-image-container.loading > .image-container > img,
.full-screen-attachment-image-container:not(.loading) > .image-container > .loader,



/** Camera popup styles **/

.full-screen-image-container.error > .camera-control > .left,
.full-screen-image-container.error > .camera-control > .right,
.full-screen-image-container.error > .camera-control > .index,
.full-screen-image-container:not(.error) > .image-container > .error,
.full-screen-image-container.loading > .camera-control > .left,
.full-screen-image-container.loading > .camera-control > .right,
.full-screen-image-container.loading > .image-container > .index,
.full-screen-image-container.loading > .image-container > img,
.full-screen-image-container:not(.loading) > .image-container > .loader,
#camera-popup.error > .camera-control,
#camera-popup.error > .image-container > .index,
#camera-popup.error > .image-container > img,
#camera-popup:not(.error) > .image-container > .error,
#camera-popup:not(.hover) > .image-container > .index,
#camera-popup.loading > .camera-control,
#camera-popup.loading > .image-container > .index,
#camera-popup.loading > .image-container > img,
#camera-popup:not(.loading) > .image-container > .loader {
  display: none !important;
}

.full-screen-attachment-image-container > .image-container > .zoom {
  position: absolute;
  top: .25rem;
  right: .25rem;
  color: white;
  font-weight: 600;
  width: 4rem;
  height: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#camera-popup > .image-container > .index,
.full-screen-image-container > .camera-control > .zoom,
.full-screen-image-container > .image-container > .zoom {
  position: absolute;
  top: .25rem;
  right: .25rem;
  color: white;
  font-weight: 600;
  width: 4rem;
  height: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container > .loader {
  width: 32px;
  height: 32px;
}

#camera-popup > .image-container > .error,
#camera-popup > .image-container > .loader {
  font-weight: 600;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#camera-popup > .image-container > img {
  max-width: 50px;
  max-height: 50px;
  border-radius: .25rem;
  margin: auto;
}

#camera-popup.hover > .image-container > img {
  max-width: 500px !important;
  max-height: 500px !important;
}

#camera-popup {
  padding: .25rem;
  border-radius: .25rem;

  background-color: white;
  box-shadow: 0 0 0.5rem 0.25rem rgba(0, 0, 0, 0.2);

  display: flex;
  position: relative;
  left: -50%;
  top: -50%;
}

#camera-popup:not(.hover) > .camera-control,
#camera-popup.loading > .camera-control
{
  display: none;
}

/** Camera controls **/

.camera-control {
  position: absolute;
  width: calc(100% - .5rem);
  height: calc(100% - .5rem);
  background-color: rgba(0,0,0,0.1);
}

/** Display hover only on desktop */
@media(hover: hover) and (pointer: fine) {
  .camera-control > .left:hover,
  .camera-control > .zoom:hover,
  .image-container > .zoom:hover,
  .camera-control > .right:hover {
    background-color: rgba(255,255,255,0.2);
  }
}

.camera-control > .left,
.camera-control > .zoom,
.camera-control > .index,
.image-container > .zoom,
.camera-control > .right {
  position: absolute;
  color: white;
  font-weight: 600;
  background-color: rgba(255,255,255,0.05);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.camera-control > .index
{
  cursor: auto;
}

.camera-control > .left > i,
.camera-control > .right > i {
  filter: 
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.75));
}

.camera-control > .zoom, .index {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
}

.camera-control > .zoom, .index {
  top: 0;
  width: 100%;
  height: 4rem;
  text-align: center;
  border-radius: .25rem .25rem 0 0;
}

.camera-control > .left,
.camera-control > .right {
  bottom: 0;
  width: 4rem;
  height: calc(100% - 4rem);
}

.camera-control > .left {
  left: 0;
  border-radius: 0 0 0 .25rem;
}

.camera-control > .right {
  right: 0;
  border-radius: 0 0 .25rem 0;
}


/** Full screen styles for cameras **/

.full-screen-image-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  z-index: 9999;
  display: none;
}

.full-screen-image-container > .image-container,
.full-screen-image-container > .camera-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-screen-image-container > .image-container > .error {
  color: white;
  font-weight: 600;
  position: absolute;
  top: calc(50% + 2rem);
}

.full-screen-image-container > .image-container > .zoom {
  top: 0;
  right: 0;
  z-index: 1000;
}

.full-screen-image-container > .image-container > img {
  max-width: 100%;
  max-height: 100%;
}

.full-screen-image-container > .camera-control > .index,
.full-screen-image-container > .camera-control > .right,
.full-screen-image-container > .camera-control > .left {
  border-radius: 0 !important;
}

.full-screen-image-container > .camera-control > .right {
  right: 0 !important;
}

.full-screen-image-container > .camera-control > .left {
  left: 0 !important;
}


/** Full screen styles for attachment images **/

.full-screen-attachment-image-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  z-index: 9999;
  display: none;
}

.full-screen-attachment-image-container > .image-container,
.full-screen-attachment-image-container > .camera-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-screen-attachment-image-container > .image-container > .error {
  color: white;
  font-weight: 600;
  position: absolute;
  top: calc(50% + 2rem);
}

.full-screen-attachment-image-container > .image-container > .zoom {
  top: 0;
  right: 0;
  z-index: 1000;
}

.full-screen-attachment-image-container > .image-container > img {
  max-width: 100%;
  max-height: 100%;
}

.full-screen-attachment-image-container > .camera-control > .index,
.full-screen-attachment-image-container > .camera-control > .right,
.full-screen-attachment-image-container > .camera-control > .left {
  border-radius: 0 !important;
}

.full-screen-attachment-image-container > .camera-control > .right {
  right: 0 !important;
}

.full-screen-attachment-image-container > .camera-control > .left {
  left: 0 !important;
}

 /** Other **/

.btn-primary {
  border-color: #00B0FF !important;
  background-color: #00B0FF !important;
  box-shadow: none !important;
}

i.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

i.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

i.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.password-info {
  color: red;
}

.button {
  border-radius: 0.28em;
  color: #FFFFFF;
  margin: 0.5em 0 1em 0;
  padding: 0 1em 0 1em;
  min-height: 2.3em;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  width: 100%;
}

.primary {
  background-color: #2EACFF;
}

#shared-view-password-input-modal {
  z-index: 99;
  top: 45%;
  background: rgba(0,0,0,.6);
  width: 100vw;
  height: 100vh;
}

.password-input-wrapper {
  display: flex;
  flex-direction: column;
}

.password-info-div {
  border: 1px solid red;
  padding: 0.5em 0 0.5em 0;
  margin-top: 0.5em;
}

.password-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  border-radius: 0.28em;
}

.password-modal > img {
  width: 20em;
  display: block;
  margin: auto;
  margin-bottom: 8px;
}

.password-input-container {
  background: white;
}

.password-input-wrapper > label {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  text-align: justify;
}

label.password-info {
  text-align: inherit;
  padding-bottom: 1rem;
}

.password-input-wrapper > input {
  display: block;
  width: 100% !important;
  height: 40px;
  margin: 10px 0;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 2px !important;
  background-color: #fff !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%) !important;
  color: #555;
  font-size: 14px;
  line-height: 1.42857143;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s !important;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s !important;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s !important;
}

.shared-view-legend {
  cursor: pointer;
}

.disabled-legend {
  color: #B3B8BE;
}

.disabled-legend > .image-wrapper > img {
  /* Color the eye icon in the same color as text */
  filter: invert(85%) sepia(13%) saturate(120%) hue-rotate(173deg) brightness(87%) contrast(85%);
}

.shared-view-error-message {
  color: red;
  font-size: 0.9em;
}

#shared-view-closest-selection-dialog {
  background: rgba(0, 0, 0, 0.1);
  max-height: calc(100% - 50px);
}

@media (max-width: 767px) {
  #shared-view-closest-selection-dialog {
    max-height: calc(100% - 100px);
  }
}

.feature-selection-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.closest-selection-item {
  width: 100%;
  border: 1px solid #D6D6D6;
  border-radius: 0.28571429rem;
  overflow-y: auto;
  background: white;
  cursor: pointer;
}

.closest-selection-item-header {
  text-align: center;
  font-size: 0.85em;
  background: white;
  display: flex;
  padding: 4px;
}

.closest-selection-color-div {
  height: 0.85714286rem;
  width: 0.85714286rem;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.35);
  align-self: center;
  margin-left: 0.3em;
}

.closest-selection-item-header-text {
  margin-left: 0.3em;
}

.closest-selection-item-field {
  border-top: 1px solid #D6D6D6;
  display: flex;
  background: white;
  padding: 1px 4px 1px 4px;
  padding: 0.25rem 0.5rem;
}

.closest-selection-item-field:nth-child(odd) {
  background: #f3f7fa;
}

.closest-selection-item:not(:last-child){
  margin-bottom: 1px;
}

.closest-selection-item-field-title {
  word-break: break-all;
}

#shared-view-summary-text {
  font-size: 0.85em;
  margin-bottom: 0 !important;
}

.margin-top-8px {
  margin-top: 8px !important;
}

#legend-container > .image-wrapper {
  width: 16px;
  height: 16px;
}

.loading-spinner-div {
  z-index: 999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
}

.loading-spinner {
  animation: spin 0.75s linear infinite;
  z-index: 999;
  position: absolute;
  border: 4px solid #2EACFF;
  border-top: 4px solid white;
  border-radius: 50%;
  width: 3em;
  height: 3em;
  color: #2EACFF;
}

.attachment-container > .loading-spinner {
  position: initial;
  margin: 8px 0 8px 0;
}

.attachment-container {
  width: 100%;
  margin-top: 1em;
  flex-direction: column;
  align-items: center;
}

.popup-attachment {
  width: 100%;
  padding-left: 1px;
  padding-right: 1px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.map-close-info-popups {
  margin-top: 1em;
  background: #F64F63 !important;
}

.map-close-info-popups > img {
  width: 24px !important;
  height: 24px !important;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(137deg) brightness(102%) contrast(102%);
}

.ol-scale-line {
  background: rgba(255, 255, 255, 0.5);
}

.ol-scale-line-inner {
  border: 0.13em solid #666;
  border-top: 0;
  border-radius: 0 0 0.3em 0.3em;
  color: #666;
  font-size: 0.85em;
  font-weight: bold;
  font-family: 'Titillium-Web';
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px;
  height: 6px;
}

* ::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:not(hover)
{
  background: #0097FA;
}

::-webkit-scrollbar-thumb:hover
{
  background: #2EACFF;
}

.btn-modal-close {
  margin: 0 1em 1em;
  width: auto;
  display: none;
}

.filter-desaturate {
  filter: saturate(0%);
}

