/*  flex    */
.flex {
  display: flex;
}
.vCenter {
  display: flex;
  align-items: center;
}
.hCenter {
  display: flex;
  justify-content: center;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.grow {
  flex-grow: 1;
}

/*  grid    */
.grid {
  display: grid;
  padding-top: 5px;
}
.r-merge {
  grid-column: 1/-1;
}
.c-merge {
  grid-row: 1/-1;
}

/* common */
.full {
  width: 100%;
  height: 100%;
}
.border {
  border: 1px solid var(--gray70);
}
.dashed {
  border: 1px dashed var(--gray70);
}
.noBorder {
  border: none !important;
}
.borderBottom {
  border-bottom: 1px solid var(--gray70);
}
.noBG {
  background: #fff !important;
}
.v-s {
  background: var(--gray70);
}

/* clickables & mouse effects */
.clickable {
  cursor: pointer;
}
.clickable:hover {
  opacity: 1;
  background: var(--gray90);
}
.selected {
  background: var(--gray90);
  filter: contrast(95%) brightness(95%);
} /* */

.pointer {
  cursor: pointer;
}

.mt2 {
  margin-top: 2px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }
}

.blinking {
  animation: fade 1s infinite alternate;
}

.custom-popup .leaflet-popup-content-wrapper {
  border-radius: 0px;
}

.inlineToolbar {
  padding-top: 15px;
}

.inlineToolbar img {
  padding: 4px;
  height: 24px;
}

.noDisplay {
  display: none;
}
.display {
  display: block;
}
.hidden {
  visibility: hidden;
}
.visible {
  visibility: visible;
}

.greenLandmark {
  background: #1ea362;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}
.yellowLandmark {
  background: #ffe047;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}
.blueLandmark {
  background: #4a89f3;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}
.grayLandmark {
  background: #d3d3d3;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}
.redLandmark {
  background: #dd4b3e;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}
.blackLandmark {
  background: #000000;
  width: 16px !important;
  height: 16px !important;
  border-radius: 8px;
  padding: 2px;
}

.blueBadg {
  height: 24px;
  width: 24px;
  border-radius: 16px;
  background-color: var(--info) !important;
  color: #fff;
}

.grayBadg {
  height: 24px;
  width: 24px;
  border-radius: 16px;
  background-color: #ddd !important;
  color: #000;
}

.ticketBox {
  height: auto;
  display: grid;
  grid-template-columns: auto 30px;
  grid-template-rows: 20px;
  grid-gap: 2px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  font-size: 9px;
  padding: 5px;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif !important;
  display: none;
  background: rgb(239, 249, 255);
}

.ticketBox:hover {
  background: var(--gray98);
  cursor: pointer;
}

.bgWhiteSmoke {
  background: var(--gray98);
}

.bgBlack {
  background: var(--gray20);
  color: #fff;
}

.leaflet-tooltip-pane > * {
  direction: rtl;
}
.leaflet-tooltip-pane {
  direction: ltr;
}
