body.noscroll {
  overflow: hidden; }

.loading-authenticate {
  position: relative;
  top: -120px;
  max-width: 270px;
  margin: auto;
  background-color: rgba(250, 250, 250, 0.75);
  border-radius: 100px;
  padding: 12px; }

.loading-plane {
  position: absolute;
  -webkit-animation: loadingPlane 4s infinite linear both;
  animation: loadingPlane 4s infinite linear both;
  overflow: hidden;
  z-index: 1; }

.loading-palm {
  position: relative;
  z-index: 100;
  width: 120px;
  margin: auto; }

.clickable-div {
  transform: scale(1);
  transition: all 0.2s ease; }
  .clickable-div:hover {
    cursor: pointer;
    transform: scale(1.01); }

.my-trips {
  position: relative; }

.table table th {
  font-weight: 600; }

.table table td,
.table table th {
  text-align: left;
  background: white;
  font-family: Cairo, Arial, Helvetica, sans-serif;
  padding: 6px; }

.popup.open {
  position: fixed;
  width: 100%;
  left: 0;
  height: 100vh;
  top: 0;
  padding-top: 32px;
  background: white;
  overflow: scroll;
  z-index: 200; }

.popup.overlay {
  background: black; }

.action-field {
  display: flex;
  justify-content: space-between; }

.edit-trip input {
  width: 100%; }

.popup-accept-warning {
  position: absolute;
  background: white;
  padding: 46px;
  z-index: 99999;
  top: 50px; }

.full-width-position-absolute {
  width: 100vh;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center; }

.hide-it {
  visibility: hidden; }
  .hide-it .show {
    visibility: visible; }

@keyframes loadingPlane {
  0% {
    transform: rotate(-20deg) scale(1);
    left: -70px;
    bottom: 10px;
    opacity: 0; }
  25% {
    opacity: 1; }
  50% {
    opacity: 1; }
  90% {
    opacity: 1; }
  100% {
    transform: rotate(-30deg) scale(0.4);
    left: calc(100% - 70px);
    bottom: 80px;
    opacity: 0; } }
