/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/styles.sass?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* You can add global styles to this file, and also import other style files */
.material {
  /***************
   ** Modifiers **
   **************/
}
.material .snotifyToast {
  animation-fill-mode: both;
}
.material .snotify-leftTop .fadeIn,
.material .snotify-leftCenter .fadeIn,
.material .snotify-leftBottom .fadeIn {
  animation-name: fadeInLeft;
}
.material .snotify-leftTop .fadeOut,
.material .snotify-leftCenter .fadeOut,
.material .snotify-leftBottom .fadeOut {
  animation-name: fadeOutLeft;
}
.material .snotify-rightTop .fadeIn,
.material .snotify-rightCenter .fadeIn,
.material .snotify-rightBottom .fadeIn {
  animation-name: fadeInRight;
}
.material .snotify-rightTop .fadeOut,
.material .snotify-rightCenter .fadeOut,
.material .snotify-rightBottom .fadeOut {
  animation-name: fadeOutRight;
}
.material .snotify-centerTop .fadeIn {
  animation-name: fadeInDown;
}
.material .snotify-centerTop .fadeOut {
  animation-name: fadeOutUp;
}
.material .snotify-centerCenter .fadeIn {
  animation-name: fadeIn;
}
.material .snotify-centerCenter .fadeOut {
  animation-name: fadeOut;
}
.material .snotify-centerBottom .fadeIn {
  animation-name: fadeInUp;
}
.material .snotify-centerBottom .fadeOut {
  animation-name: fadeOutDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scaleX(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) scaleX(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scaleY(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0) scaleY(1.2);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes appear {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 50vh;
  }
}
@keyframes disappear {
  0% {
    max-height: 50vh;
  }
  100% {
    max-height: 0;
  }
}
.material .snotify {
  display: block;
  position: fixed;
  width: 275px;
  z-index: 99;
  box-sizing: border-box;
  pointer-events: none;
}
.material .snotify * {
  box-sizing: border-box;
}
.material .snotify-leftTop,
.material .snotify-leftCenter,
.material .snotify-leftBottom {
  left: 10px;
}
.material .snotify-rightTop,
.material .snotify-rightCenter,
.material .snotify-rightBottom {
  right: 10px;
}
.material .snotify-centerTop,
.material .snotify-centerCenter,
.material .snotify-centerBottom {
  left: calc(50% - 275px / 2);
}
.material .snotify-leftTop,
.material .snotify-centerTop,
.material .snotify-rightTop {
  top: 10px;
}
.material .snotify-leftCenter,
.material .snotify-rightCenter,
.material .snotify-centerCenter {
  top: 50%;
  transform: translateY(-50%);
}
.material .snotify-leftBottom,
.material .snotify-rightBottom,
.material .snotify-centerBottom {
  bottom: 10px;
}
.material .snotify-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  opacity: 0;
  z-index: 98;
  transition: opacity 0.3s;
}
.material .snotifyToast {
  display: block;
  cursor: default;
  background-color: #fff;
  height: 100%;
  margin: 5px;
  opacity: 0;
  border-radius: 0;
  overflow: hidden;
  pointer-events: auto;
  border-radius: 5px;
  box-shadow: 0px 0px 6px 0px #b6d9f5;
  font-family: "Poppins", sans-serif;
}
.material .snotifyToast--in {
  animation-name: appear;
}
.material .snotifyToast--out {
  animation-name: disappear;
}
.material .snotifyToast__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 65px;
  font-size: 16px;
  color: #000;
}
.material .snotifyToast__progressBar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: #c7c7c7;
}
.material .snotifyToast__progressBar__percentage {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background-color: #4c4c4c;
  max-width: 100%;
}
.material .snotifyToast__title {
  font-size: 13px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 6px 12px;
}
.material .snotifyToast__body {
  font-size: 12px;
  box-sizing: border-box;
  width: calc(100% - 42px);
  line-height: 1;
  padding: 12px;
  align-self: center;
  line-height: 1.25;
}
.material .snotifyToast-show {
  transform: translate(0, 0);
  opacity: 1;
}
.material .snotifyToast-remove {
  max-height: 0;
  overflow: hidden;
  transform: translate(0, 50%);
  opacity: 0;
}
.material .fadeOutRight {
  animation-name: fadeOutRight;
}
.material .snotify-simple .snotifyToast__title,
.material .snotify-simple .snotifyToast__body {
  color: #000;
  white-space: pre-line;
}
.material .snotify-success {
  background-color: #4caf50;
}
.material .snotify-success .snotifyToast__progressBar {
  background-color: #388e3c;
}
.material .snotify-success .snotifyToast__progressBar__percentage {
  background-color: #81c784;
}
.material .snotify-success .snotifyToast__body {
  color: #c8e6c9;
  white-space: pre-line;
}
.material .snotify-info {
  background-color: #155a90;
}
.material .snotify-info .snotifyToast__progressBar {
  background-color: #1565c0;
}
.material .snotify-info .snotifyToast__progressBar__percentage {
  background-color: #64b5f6;
}
.material .snotify-info .snotifyToast__body {
  color: #e3f2fd;
  white-space: pre-line;
}
.material .snotify-warning {
  background-color: #ff9800;
}
.material .snotify-warning .snotifyToast__progressBar {
  background-color: #ef6c00;
}
.material .snotify-warning .snotifyToast__progressBar__percentage {
  background-color: #ffcc80;
}
.material .snotify-warning .snotifyToast__body {
  color: #fff3e0;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  white-space: pre-line;
}
.material .snotify-error {
  background-color: #f44336;
}
.material .snotify-error .snotifyToast__progressBar {
  background-color: #c62828;
}
.material .snotify-error .snotifyToast__progressBar__percentage {
  background-color: #ef9a9a;
}
.material .snotify-error .snotifyToast__body {
  color: #ffebee;
  white-space: pre-line;
}
.material .snotify-async {
  background-color: #155a90;
}
.material .snotify-async .snotifyToast__progressBar {
  background-color: #1565c0;
}
.material .snotify-async .snotifyToast__progressBar__percentage {
  background-color: #64b5f6;
}
.material .snotify-async .snotifyToast__body {
  color: #e3f2fd;
  white-space: pre-line;
}
.material .snotify-confirm {
  background-color: #0c2b43;
}
.material .snotify-confirm .snotifyToast__progressBar {
  background-color: #485563;
}
.material .snotify-confirm .snotifyToast__progressBar__percentage {
  background-color: #607285;
}
.material .snotify-confirm .snotifyToast__body {
  color: #e0f2f1;
  padding: 12px;
  white-space: pre-line;
  width: 100%;
}
.material .snotify-confirm .snotify-icon {
  display: none;
}
.material .snotify-prompt {
  background-color: #009688;
}
.material .snotify-prompt ng-snotify-prompt {
  width: 100%;
}
.material .snotify-prompt .snotifyToast__title {
  margin-bottom: 0;
}
.material .snotify-prompt .snotifyToast__body {
  color: #e0f2f1;
  white-space: pre-line;
}
.material .snotify-confirm .snotifyToast__inner,
.material .snotify-prompt .snotifyToast__inner {
  padding: 0;
}
.material .snotifyToast__input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  width: 100%;
  vertical-align: top;
  transition: all 0.5s;
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.material .snotifyToast__input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.85em 0.5em;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #333;
  font-weight: bold;
  -webkit-appearance: none; /* for box shadows to show on iOS */
  opacity: 0;
  transition: opacity 0.3s;
}
.material .snotifyToast__input__field:focus {
  outline: none;
}
.material .snotifyToast__input__label {
  display: inline-block;
  float: right;
  padding: 0 0.85em;
  width: 100%;
  color: #e0f2f1;
  font-weight: bold;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  left: 0;
  height: 100%;
  text-align: left;
  pointer-events: none;
}
.material .snotifyToast__input__label::before, .material .snotifyToast__input__label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s;
}
.material .snotifyToast__input__label::before {
  border-top: 2px solid #fff;
  transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
  transition-delay: 0.3s;
}
.material .snotifyToast__input__label::after {
  z-index: -1;
  background: #b2dfdb;
  transform: scale3d(1, 0, 1);
  transform-origin: 50% 0;
}
.material .snotifyToast__input__labelContent {
  position: relative;
  display: block;
  padding: 1em 0;
  width: 100%;
  transition: transform 0.3s 0.3s;
}
.material .snotifyToast__input--filled {
  margin-top: 2.5em;
}
.material .snotifyToast__input--filled:focus,
.material .snotifyToast__input--filled .snotifyToast__input__field {
  opacity: 1;
  transition-delay: 0.3s;
}
.material .snotifyToast__input__field:focus + .snotifyToast__input__label .snotifyToast__input__labelContent,
.material .snotifyToast__input--filled .snotifyToast__input__labelContent {
  transform: translate(0, -80%);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.material .snotifyToast__input__field:focus + .snotifyToast__input__label::before,
.material .snotifyToast__input--filled .snotifyToast__input__label::before {
  transition-delay: 0s;
}
.material .snotifyToast__input__field:focus + .snotifyToast__input__label::before,
.material .snotifyToast__input--filled .snotifyToast__input__label::before {
  transform: translate(0, 0);
}
.material .snotifyToast__input__field:focus + .snotifyToast__input__label::after,
.material .snotifyToast__input--filled .snotifyToast__input__label::after {
  transform: scale(1, 1);
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.material .snotifyToast--invalid .snotifyToast__input__label::before {
  border-color: #f44336;
}
.material .snotifyToast--valid .snotifyToast__input__label::before {
  border-color: #4caf50;
}
.material .snotifyToast__buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.material .snotifyToast__buttons button {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 6px;
  text-transform: capitalize;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
  margin: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  font-size: 12px;
}
.material .snotifyToast__buttons button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.material .snotifyToast__buttons button:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}
.material .snotifyToast__buttons button:hover, .material .snotifyToast__buttons button:focus {
  background: rgba(0, 0, 0, 0.1);
  outline: none;
}
.material .snotifyToast__buttons button:active {
  background: rgba(0, 0, 0, 0.15);
}
.material .snotifyToast__buttons--bold {
  font-weight: 700;
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
.material .snotify-icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  flex: 1 1 auto;
  align-self: center;
  justify-self: center;
}
.material .snotify-icon--error {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23ffcdd2%22%3E%3Cg%3E%3Cpath%20d=%22M437,75A256,256,0,1,0,75,437,256,256,0,1,0,437,75ZM416.43,416.43a226.82,226.82,0,0,1-320.86,0C7.11,328,7.11,184,95.57,95.57a226.82,226.82,0,0,1,320.86,0C504.89,184,504.89,328,416.43,416.43Z%22/%3E%3Cpath%20d=%22M368.81,143.19a14.5,14.5,0,0,0-20.58,0L256,235.42l-92.23-92.23a14.55,14.55,0,0,0-20.58,20.58L235.42,256l-92.23,92.23a14.6,14.6,0,0,0,10.24,24.89,14.19,14.19,0,0,0,10.24-4.31l92.23-92.23,92.23,92.23a14.64,14.64,0,0,0,10.24,4.31,14,14,0,0,0,10.24-4.31,14.5,14.5,0,0,0,0-20.58l-92-92.23,92.23-92.23A14.5,14.5,0,0,0,368.81,143.19Z%22/%3E%3C/g%3E%3C/svg%3E");
}
.material .snotify-icon--warning {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23ffccbc%22%3E%3Cg%3E%3Cpath%20d=%22M256,512c141.15,0,256-114.84,256-256S397.15,0,256,0,0,114.84,0,256,114.85,512,256,512Zm0-480.49c123.79,0,224.49,100.71,224.49,224.49S379.79,480.49,256,480.49,31.51,379.79,31.51,256,132.21,31.51,256,31.51Z%22/%3E%3Ccircle%20cx=%22260.08%22%20cy=%22343.87%22%20r=%2226.35%22/%3E%3Cpath%20d=%22M254.68,278.39a15.76,15.76,0,0,0,15.75-15.75V128.72a15.75,15.75,0,1,0-31.51,0V262.63A15.76,15.76,0,0,0,254.68,278.39Z%22/%3E%3C/g%3E%3C/svg%3E");
}
.material .snotify-icon--info {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23bbdefb%22%3E%3Cg%3E%3Cpath%20d=%22M256,0C114.84,0,0,114.84,0,256S114.84,512,256,512,512,397.16,512,256,397.15,0,256,0Zm0,478.43C133.35,478.43,33.57,378.64,33.57,256S133.35,33.58,256,33.58,478.42,133.36,478.42,256,378.64,478.43,256,478.43Z%22/%3E%3Cpath%20d=%22M251.26,161.24a22.39,22.39,0,1,0-22.38-22.39A22.39,22.39,0,0,0,251.26,161.24Z%22/%3E%3Cpath%20d=%22M286.84,357.87h-14v-160A16.79,16.79,0,0,0,256,181.05H225.17a16.79,16.79,0,0,0,0,33.58h14.05V357.87H225.17a16.79,16.79,0,0,0,0,33.57h61.67a16.79,16.79,0,1,0,0-33.57Z%22/%3E%3C/g%3E%3C/svg%3E");
}
.material .snotify-icon--success {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23c8e6c9%22%3E%3Cg%3E%3Cpath%20d=%22M256,0C114.85,0,0,114.84,0,256S114.85,512,256,512,512,397.16,512,256,397.15,0,256,0Zm0,492.31c-130.29,0-236.31-106-236.31-236.31S125.71,19.69,256,19.69,492.31,125.71,492.31,256,386.29,492.31,256,492.31Z%22/%3E%3Cpath%20class=%22cls-1%22%20d=%22M376.64,151,225.31,321.24l-91.17-72.93a9.85,9.85,0,0,0-12.3,15.38l98.46,78.77a9.86,9.86,0,0,0,13.52-1.15L391.36,164.08A9.85,9.85,0,0,0,376.64,151Z%22/%3E%3C/g%3E%3C/svg%3E");
}
.material .snotify-icon--async {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23bbdefb%22%3E%3Cg%3E%3Cpath%20d=%22M256,0a32,32,0,0,0-32,32V96a32,32,0,0,0,64,0V32A32,32,0,0,0,256,0Zm0,384a32,32,0,0,0-32,32v64a32,32,0,0,0,64,0V416A32,32,0,0,0,256,384ZM391.74,165.5,437,120.22A32,32,0,0,0,391.74,75L346.5,120.22a32,32,0,0,0,45.25,45.28Zm-271.52,181L75,391.74A32,32,0,0,0,120.22,437l45.25-45.25a32,32,0,0,0-45.25-45.25Zm0-271.52A32,32,0,1,0,75,120.22l45.25,45.28a32,32,0,1,0,45.25-45.28ZM391.74,346.5a32,32,0,0,0-45.25,45.25L391.74,437A32,32,0,0,0,437,391.74ZM480,224H416a32,32,0,0,0,0,64h64a32,32,0,0,0,0-64ZM128,256a32,32,0,0,0-32-32H32a32,32,0,0,0,0,64H96A32,32,0,0,0,128,256Z%22/%3E%3C/g%3E%3C/svg%3E");
  animation: async 3s infinite linear;
  transform-origin: 50% 50%;
}
@keyframes async {
  0% {
    transform: translate(0, -50%) rotate(0deg);
  }
  100% {
    transform: translate(0, -50%) rotate(360deg);
  }
}
.material * {
  font-family: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
}
body::after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
}

input, textarea, button {
  outline: 0;
}

input:focus, textarea:focus, button:focus {
  border-color: #155a90 !important;
}

router-outlet.loading-module {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  background-color: #e5eaef;
}

router-outlet + * {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.loading-spinner {
  width: 128px;
  height: 128px;
  animation: spin 1.5s infinite;
}

.ps-feature-nav-header {
  background-color: #e5eaef;
  box-shadow: 0 0 4px #aaa;
  flex: 0 0 auto;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 10;
}
.ps-feature-nav-header ul {
  margin: 0;
  padding: 0 4px;
  list-style-type: none;
  white-space: nowrap;
  transition: left 0.2s ease-in-out;
  display: flex;
  flex: 1 1 auto;
  font-family: "Fira Sans Condensed", sans-serif;
  letter-spacing: 0.01rem;
}
.ps-feature-nav-header ul li {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}
.ps-feature-nav-header ul li a {
  color: #333333;
  padding: 0 16px;
  white-space: nowrap;
  outline: 0;
  background-color: transparent;
  text-decoration: none;
}
.ps-feature-nav-header ul li a:hover {
  color: #155a90;
}
.ps-feature-nav-header ul li a.active {
  color: #155a90;
}
.ps-feature-nav-header ul li a.active:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #155a90;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 5s ease-in;
}

router-outlet.ps-feature-router-outlet + * {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1 1 auto;
  box-sizing: border-box;
  min-height: 480px;
  position: relative;
  overflow: auto;
}

.ps-badge {
  min-width: 16px;
  display: inline-block;
  border-radius: 16px;
  text-align: center;
  color: #ddd;
  padding: 2px;
  font-size: 13px;
}

.ps-badge-success {
  background-color: #28a745;
}

.ps-badge-danger {
  background-color: #dc3545;
}

.ps-badge-info {
  background-color: #155a90;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button {
  opacity: 1;
}

/* Customize the label (the container) */
/* Hide the browser's default checkbox */
.custom-checkbox {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom-checkbox-label {
  flex: 1 1 auto;
}

.checkmark {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

/* On mouse-over, add a grey background color */
/* When checkbox is not checked, add background */
.custom-checkbox input:not(:checked) ~ .checkmark {
  -webkit-mask-image: url(/assets/svg/square.svg);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(/assets/svg/square.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: #666666;
}

/* Different color styles */
.custom-checkbox-white input:not(:checked) ~ .checkmark {
  background-color: #dddddd;
}

.custom-checkbox-error input:not(:checked) ~ .checkmark {
  background-color: #c21d00;
}

/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox .checkmark:after {
  height: 20px;
  width: 20px;
  -webkit-mask-image: url(/assets/svg/square-checked.svg);
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(/assets/svg/square-checked.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: #666666;
}

/* Different color styles */
.custom-checkbox-white .checkmark:after {
  background-color: #dddddd;
}

.custom-checkbox-error .checkmark:after {
  background-color: #c21d00;
}

/* Special classes for dispay images in grid */
.grid-image {
  display: inline-block;
  height: 24px;
  width: 24px;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-position: center center;
  mask-repeat: no-repeat;
  background-color: #155a90;
}

.grid-image-cog {
  -webkit-mask-image: url(/assets/svg/cog.svg);
  -webkit-mask-image-mask-image: url(/assets/svg/cog.svg);
}

.grid-image-check {
  height: 16px;
  width: 16px;
  -webkit-mask-image: url(/assets/svg/check.svg);
  -webkit-mask-image-mask-image: url(/assets/svg/check.svg);
}

.grid-image-text {
  display: flex;
}
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotating {
  animation: rotating 2s linear infinite;
}

.spinner {
  animation: spin 1s linear infinite;
  margin: 0;
  padding: 0;
  background: url(/assets/svg/spinner.svg);
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 0.9rem;
  width: 0.9rem;
  min-height: 0.9rem;
  min-width: 0.9rem;
  position: relative;
  display: inline-block;
  vertical-align: text-bottom;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./src/preloaded-styles.sass?ngGlobalStyle ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
body:after {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  z-index: -1;
  background-color: rgba(197, 232, 241, 0.75);
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #222222;
  z-index: 8;
  transform: translateX(0);
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loader {
  display: block;
  position: relative;
  left: calc(50% - 75px);
  top: calc(50% - 75px);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #2691d9;
  webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1;
}
.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e3301c;
  animation: spin 3s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00b33c;
  animation: spin 1.5s linear infinite;
}

.loader-component {
  z-index: 13;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*!***********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./node_modules/cropperjs/dist/cropper.css?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************/
/*!
 * Cropper.js v1.6.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2023-09-17T03:44:17.565Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
          user-select: none;
}

.cropper-container img {
    backface-visibility: hidden;
    display: block;
    height: 100%;
    image-orientation: 0deg;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%;
  }

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: calc(100% / 3);
    left: 0;
    top: calc(100% / 3);
    width: 100%;
  }

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: calc(100% / 3);
    top: 0;
    width: calc(100% / 3);
  }

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
  .cropper-center::after {
    background-color: #eee;
    content: ' ';
    display: block;
    position: absolute;
  }

.cropper-center::before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px;
  }

.cropper-center::after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px;
  }

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px;
  }

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px;
  }

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0;
  }

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%;
  }

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px;
  }

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%;
  }

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px;
  }

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px;
  }

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px;
  }

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px;
  }

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px;
  }

@media (min-width: 768px) {

.cropper-point.point-se {
      height: 15px;
      width: 15px;
  }
    }

@media (min-width: 992px) {

.cropper-point.point-se {
      height: 10px;
      width: 10px;
  }
    }

@media (min-width: 1200px) {

.cropper-point.point-se {
      height: 5px;
      opacity: 0.75;
      width: 5px;
  }
    }

.cropper-point.point-se::before {
    background-color: #39f;
    bottom: -50%;
    content: ' ';
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%;
  }

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

/*!******************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./node_modules/ol/ol.css?ngGlobalStyle ***!
  \******************************************************************************************************************************************************************************************************************************/
:root,
:host {
  --ol-background-color: white;
  --ol-accent-background-color: #F5F5F5;
  --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  --ol-foreground-color: #333333;
  --ol-subtle-foreground-color: #666666;
  --ol-brand-color: #00AAFF;
}

.ol-box {
  box-sizing: border-box;
  border-radius: 2px;
  border: 1.5px solid var(--ol-background-color);
  background-color: var(--ol-partial-background-color);
}

.ol-mouse-position {
  top: 8px;
  right: 8px;
  position: absolute;
}

.ol-scale-line {
  background: var(--ol-partial-background-color);
  border-radius: 4px;
  bottom: 8px;
  left: 8px;
  padding: 2px;
  position: absolute;
}

.ol-scale-line-inner {
  border: 1px solid var(--ol-subtle-foreground-color);
  border-top: none;
  color: var(--ol-foreground-color);
  font-size: 10px;
  text-align: center;
  margin: 1px;
  will-change: contents, width;
  transition: all 0.25s;
}

.ol-scale-bar {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.ol-scale-bar-inner {
  display: flex;
}

.ol-scale-step-marker {
  width: 1px;
  height: 15px;
  background-color: var(--ol-foreground-color);
  float: right;
  z-index: 10;
}

.ol-scale-step-text {
  position: absolute;
  bottom: -5px;
  font-size: 10px;
  z-index: 11;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-text {
  position: absolute;
  font-size: 12px;
  text-align: center;
  bottom: 25px;
  color: var(--ol-foreground-color);
  text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
}

.ol-scale-singlebar {
  position: relative;
  height: 10px;
  z-index: 9;
  box-sizing: border-box;
  border: 1px solid var(--ol-foreground-color);
}

.ol-scale-singlebar-even {
  background-color: var(--ol-subtle-foreground-color);
}

.ol-scale-singlebar-odd {
  background-color: var(--ol-background-color);
}

.ol-unsupported {
  display: none;
}

.ol-viewport,
.ol-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ol-viewport canvas {
  all: unset;
  overflow: hidden;
}

.ol-viewport {
  touch-action: pan-x pan-y;
}

.ol-selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  user-select: text;
}

.ol-grabbing {
  cursor: grabbing;
}

.ol-grab {
  cursor: move;
  cursor: grab;
}

.ol-control {
  position: absolute;
  background-color: var(--ol-subtle-background-color);
  border-radius: 4px;
}

.ol-zoom {
  top: .5em;
  left: .5em;
}

.ol-rotate {
  top: .5em;
  right: .5em;
  transition: opacity .25s linear, visibility 0s linear;
}

.ol-rotate.ol-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s linear, visibility 0s linear .25s;
}

.ol-zoom-extent {
  top: 4.643em;
  left: .5em;
}

.ol-full-screen {
  right: .5em;
  top: .5em;
}

.ol-control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: .4em;
  background-color: var(--ol-background-color);
  border: none;
  border-radius: 2px;
}

.ol-control button::-moz-focus-inner {
  border: none;
  padding: 0;
}

.ol-zoom-extent button {
  line-height: 1.4em;
}

.ol-compass {
  display: block;
  font-weight: normal;
  will-change: transform;
}

.ol-touch .ol-control button {
  font-size: 1.5em;
}

.ol-touch .ol-zoom-extent {
  top: 5.5em;
}

.ol-control button:hover,
.ol-control button:focus {
  text-decoration: none;
  outline: 1px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}

.ol-zoom .ol-zoom-in {
  border-radius: 2px 2px 0 0;
}

.ol-zoom .ol-zoom-out {
  border-radius: 0 0 2px 2px;
}

.ol-attribution {
  text-align: right;
  bottom: .5em;
  right: .5em;
  max-width: calc(100% - 1.3em);
  display: flex;
  flex-flow: row-reverse;
  align-items: center;
}

.ol-attribution a {
  color: var(--ol-subtle-foreground-color);
  text-decoration: none;
}

.ol-attribution ul {
  margin: 0;
  padding: 1px .5em;
  color: var(--ol-foreground-color);
  text-shadow: 0 0 2px var(--ol-background-color);
  font-size: 12px;
}

.ol-attribution li {
  display: inline;
  list-style: none;
}

.ol-attribution li:not(:last-child):after {
  content: " ";
}

.ol-attribution img {
  max-height: 2em;
  max-width: inherit;
  vertical-align: middle;
}

.ol-attribution button {
  flex-shrink: 0;
}

.ol-attribution.ol-collapsed ul {
  display: none;
}

.ol-attribution:not(.ol-collapsed) {
  background: var(--ol-partial-background-color);
}

.ol-attribution.ol-uncollapsible {
  bottom: 0;
  right: 0;
  border-radius: 4px 0 0;
}

.ol-attribution.ol-uncollapsible img {
  margin-top: -.2em;
  max-height: 1.6em;
}

.ol-attribution.ol-uncollapsible button {
  display: none;
}

.ol-zoomslider {
  top: 4.5em;
  left: .5em;
  height: 200px;
}

.ol-zoomslider button {
  position: relative;
  height: 10px;
}

.ol-touch .ol-zoomslider {
  top: 5.5em;
}

.ol-overviewmap {
  left: 0.5em;
  bottom: 0.5em;
}

.ol-overviewmap.ol-uncollapsible {
  bottom: 0;
  left: 0;
  border-radius: 0 4px 0 0;
}

.ol-overviewmap .ol-overviewmap-map,
.ol-overviewmap button {
  display: block;
}

.ol-overviewmap .ol-overviewmap-map {
  border: 1px solid var(--ol-subtle-foreground-color);
  height: 150px;
  width: 150px;
}

.ol-overviewmap:not(.ol-collapsed) button {
  bottom: 0;
  left: 0;
  position: absolute;
}

.ol-overviewmap.ol-collapsed .ol-overviewmap-map,
.ol-overviewmap.ol-uncollapsible button {
  display: none;
}

.ol-overviewmap:not(.ol-collapsed) {
  background: var(--ol-subtle-background-color);
}

.ol-overviewmap-box {
  border: 1.5px dotted var(--ol-subtle-foreground-color);
}

.ol-overviewmap .ol-overviewmap-box:hover {
  cursor: move;
}

/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].rules[0].oneOf[0].use[2]!./node_modules/ol-geocoder/dist/ol-geocoder.css?ngGlobalStyle ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
/*!
 * ol-geocoder - v4.3.3
 * A geocoder extension compatible with OpenLayers v6.x to v9.0
 * https://github.com/Dominique92/ol-geocoder
 * Built: 15/03/2024 08:57:06
 */
 
 .ol-touch .ol-control.gcd-gl-control button {
  font-size: 1.14em; }

.ol-touch .ol-geocoder.gcd-gl-container {
  font-size: 1.1em; }

.ol-geocoder.gcd-gl-container {
  position: absolute;
  top: 4.875em;
  left: .5em;
  box-sizing: border-box;
  font-size: 0.9em; }
  .ol-geocoder.gcd-gl-container *,
  .ol-geocoder.gcd-gl-container *::before,
  .ol-geocoder.gcd-gl-container *::after {
    box-sizing: inherit; }

.ol-geocoder .gcd-gl-control {
  width: 2.1875em;
  height: 2.1875em;
  overflow: hidden;
  transition: width 200ms, height 200ms; }

.ol-geocoder .gcd-gl-expanded {
  width: 15.625em;
  height: 2.1875em; }

.ol-geocoder .gcd-gl-input {
  position: absolute;
  z-index: 99;
  top: 0.25em;
  left: 2.5em;
  width: 14.84375em;
  padding: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 0.875em;
  background-color: #fff;
  color: #222; }
  .ol-geocoder .gcd-gl-input:focus {
    border: none;
    outline: none;
    box-shadow: inset 0 0 0 1px #4d90fe, inset 0 0 5px #4d90fe; }

.ol-geocoder .gcd-gl-search {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 1.5625em;
  height: 100%;
  line-height: 1.4;
  border: none;
  background-color: transparent;
  display: inline-block;
  outline: 0;
  cursor: pointer; }
  .ol-geocoder .gcd-gl-search::after {
    content: "\2386";
    display: inline-block;
    color: #333;
    font-size: 1.5em;
    cursor: pointer; }

.ol-geocoder .gcd-gl-btn {
  position: absolute;
  width: 1.5625em;
  height: 1.5625em;
  top: 0.125em;
  left: 0.125em;
  cursor: pointer; }

.ol-geocoder .gcd-gl-btn:after {
  content: "\1F50D"; }

.ol-geocoder ul.gcd-gl-result {
  position: absolute;
  top: 2.1875em;
  left: 2em;
  width: 16.25em;
  max-height: 18.75em;
  white-space: normal;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
  transition: max-height 300ms ease-in; }
  .ol-geocoder ul.gcd-gl-result > li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding: 0;
    line-height: 0.875rem; }
    .ol-geocoder ul.gcd-gl-result > li > a {
      display: block;
      text-decoration: none;
      padding: 3px 5px; }
      .ol-geocoder ul.gcd-gl-result > li > a:hover {
        background-color: #d4d4d4; }
  .ol-geocoder ul.gcd-gl-result > li:nth-child(odd) {
    background-color: #e0ffe0; }

.ol-geocoder ul.gcd-gl-result:empty {
  display: none; }

.ol-geocoder.gcd-txt-container {
  position: absolute;
  width: 25em;
  height: 4.375em;
  top: .5em;
  left: calc(50% - 12.5em);
  box-sizing: border-box; }
  .ol-geocoder.gcd-txt-container *,
  .ol-geocoder.gcd-txt-container *::before,
  .ol-geocoder.gcd-txt-container *::after {
    box-sizing: inherit; }

.ol-geocoder .gcd-txt-control {
  position: relative;
  width: 100%;
  height: 4.375em;
  border: 1px solid #ccc;
  background-color: #fff;
  overflow: hidden; }

.ol-geocoder .gcd-txt-label {
  display: inline-block;
  width: 100%;
  text-align: center; }

.ol-geocoder .gcd-txt-input {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 5px 30px 5px 40px;
  border: none;
  text-indent: 6px;
  background-color: transparent;
  font-family: inherit;
  font-size: 0.875em; }
  .ol-geocoder .gcd-txt-input:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px #4d90fe, inset 0 0 6px #4d90fe; }

.ol-geocoder .gcd-txt-search {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 2.5em;
  height: 100%;
  line-height: 100%;
  border: none;
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  outline: 0;
  cursor: pointer; }
  .ol-geocoder .gcd-txt-search::after {
    content: "\2386";
    display: inline-block;
    color: #333;
    font-size: 2em;
    cursor: pointer; }

.ol-geocoder .gcd-txt-glass {
  position: absolute;
  top: 26px;
  left: 9px;
  z-index: 100;
  display: inline-block;
  width: 2.5em;
  height: 100%; }

.ol-geocoder .gcd-txt-glass:after {
  content: "\1F50D"; }

.ol-geocoder ul.gcd-txt-result {
  position: absolute;
  top: 4.575em;
  left: 0;
  width: 25em;
  max-height: 18.75em;
  white-space: normal;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.8);
  transition: max-height 300ms ease-in; }
  .ol-geocoder ul.gcd-txt-result > li {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding: 0;
    line-height: 0.875rem; }
    .ol-geocoder ul.gcd-txt-result > li > a {
      display: block;
      text-decoration: none;
      padding: 3px 5px; }
      .ol-geocoder ul.gcd-txt-result > li > a:hover {
        background-color: #d4d4d4; }
  .ol-geocoder ul.gcd-txt-result > li:nth-child(odd) {
    background-color: #e0ffe0; }

.ol-geocoder ul.gcd-txt-result:empty {
  display: none; }

.ol-geocoder .gcd-hidden {
  opacity: 0;
  visibility: hidden; }

.ol-geocoder .gcd-pseudo-rotate::after {
  animation: spin .7s linear infinite; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.gcd-address {
  font-size: 0.875em;
  font-weight: 500;
  color: #333; }

.gcd-road {
  font-size: 0.875em;
  font-weight: 500;
  color: #333; }

.gcd-city {
  font-size: 0.75em;
  font-weight: normal;
  color: #333; }

.gcd-country {
  font-size: 0.75em;
  font-weight: lighter;
  color: #333; }

