﻿.dotsIfTextTooLong {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@keyframes enterIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
searchOverlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  -moz-backdrop-filter: blur(5px);
  -o-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
searchbox {
  display: block;
  position: fixed;
  top: 40px;
  left: 460px;
  width: 2060px;
  background-color: #FFFFFF;
  z-index: 1;
  box-shadow: 0 30px 50px -50px #000000;
  z-index: 101;
}
searchbox input[name="fullSearch"] {
  padding: 13px 13px 13px 50px !important;
  box-shadow: 0 0 20px -18px #000000;
}
searchbox::before {
  content: '\f002';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  top: 15px;
  left: 15px;
  font-weight: 800;
}
searchbox .searchResults {
  max-height: 400px;
  overflow: auto;
}
searchbox .searchResults loader {
  position: relative;
  display: block;
  margin-top: 90px;
}
searchbox .searchResults:empty::before {
  content: attr(data-empty);
  padding: 20px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
searchbox .searchResults .row {
  padding: 10px;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
  transition: background-color 0.5s;
}
searchbox .searchResults .row .rule {
  width: 100%;
  overflow: hidden;
}
searchbox .searchResults .row .rule .name {
  float: left;
  width: calc(100% - 100px);
  font-weight: 800;
  text-transform: uppercase;
}
searchbox .searchResults .row .rule .date {
  float: left;
  width: 100px;
}
searchbox .searchResults .row .rule .address {
  margin-top: 5px;
}
searchbox .searchResults .row:hover,
searchbox .searchResults .row:focus {
  outline: none;
  background: linear-gradient(130deg, #cf4e98 0%, #fa5e67 100%);
  color: #FFFFFF;
  border-color: #fa5e67;
}