@import url(https://fonts.googleapis.com/css?family=Roboto);
html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  direction: rtl;
  background-color: #e9ebee;
  overflow: hidden;
  height: 100%;
  font-family: sans-serif;
}

a {
  color: black;
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
div:focus {
  outline: none;
}

.pointer {
  cursor: pointer;
}

.hide {
  display: none !important;
}

.alert.error {
  background: #e55039;
}

.alert.ok {
  background: #27ae60;
}

.alert {
  min-width: 400px;
  text-align: center;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 9999999;
}

.center-screen {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.center-screen.logged {
  right: 64%;
}

.center-screen-content {
  position: absolute;
  top: 65%;
  right: 65%;
  transform: translate(50%, -50%);
}

.loading-screen {
  background: rgba(0, 0, 0, 0.4509803922);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.submit-button {
  background-color: #f9ca24;
}

.center-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spacer {
  background: #eeeeee;
  height: 5px;
}

.ui-state-active {
  background: #f9ca24 !important;
  border: 1px solid #f9ca24 !important;
}

:focus {
  box-shadow: none;
  outline: none;
}

body {
  font-family: Roboto, sans-serif;
}

#chart {
  max-width: 650px;
  margin: 35px auto;
}

.modal {
  height: 600px;
}
.modal .title {
  font-size: 21px;
  padding-bottom: 20px;
  padding-top: 10px;
  text-decoration: underline;
}
.modal .modal-content {
  direction: rtl;
  text-align: right;
  overflow: scroll;
  height: 520px;
}
.modal .modal-body {
  margin-top: 20px;
}

.modal-box .image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal.manage-parking-popup {
  max-width: 730px;
  height: 700px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.blocker {
  background-color: rgba(0, 0, 0, 0.555) !important;
}

#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -416px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 100000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 40%; /* 30px from the bottom */
}

#snackbar.ok {
  background-color: #2ecc71; /* Black background color */
}

#snackbar.error {
  background-color: #e55039; /* Black background color */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.dir-rtl {
  direction: rtl;
}

.dir-ltr {
  direction: ltr;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 40%;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 40%;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 40%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 40%;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

/*# sourceMappingURL=general.css.map */
