@keyframes disappearAnimation{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0.5;
    transform: rotateX(0deg);
  }
  100%{
    display: none;
    opacity: 0;
    position: absolute;
  }
}

body {
    background-color: rgba(169, 169, 169, .15);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.disappear {
    animation-name: disappearAnimation;
    animation-duration: 6000ms;
    animation-fill-mode: forwards;
}

.btn.trash-icon-list {
    padding: 0;
    border: 0;
}

#outputCard {
  height: 366.3px;
  overflow: auto;
}


.htmx-request.query-btn {
  box-shadow: var(--mdb-btn-box-shadow);
  box-shadow: 0 4px 9px -4px #3b71ca;
  color: var(--mdb-btn-disabled-color);
  pointer-events: none;
  background-color: var(--mdb-btn-disabled-bg);
  border-color: var(--mdb-btn-disabled-border-color);
  opacity: var(--mdb-btn-disabled-opacity);
  cursor: pointer;
}

.htmx-indicator-d {
    display:none;
}
.htmx-request .htmx-indicator-d {
    display:inline;
}
.htmx-request.htmx-indicator-d {
    display:inline;
}

.htmx-request .disappear-click {
  opacity:0;
}

.new {
    color: red;
    transition: all ease-in 1s ;
}

#etl-content {
  height: 70vh;
  overflow: auto;
}



.list-head {
  font-weight: 500;
  padding: 1rem 1.4rem;
  background-color: var(--mdb-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--mdb-table-accent-bg);
}

/* Spinner */

.spinner {
  height: 60px;
  width: 60px;
  margin: auto;
  display: flex;
  position: absolute;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, .15);
  border-right: 6px solid rgba(0, 174, 239, .15);
  border-bottom: 6px solid rgba(0, 174, 239, .15);
  border-top: 6px solid rgba(0, 174, 239, .8);
  border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 5;
  cursor: pointer;
}


.htmx-request.overlay {
  display: flex;
}

.query-btn-text {
    max-width: 130px;
}

.primary-heading {
  font-weight: 700;
  letter-spacing: 4px;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;           
}


.navbar-brand {
    text-transform: uppercase;
    backface-visibility: hidden;
    font-weight: 400;
    letter-spacing: .5rem;
    margin-right: 0;
}

.rm-card {
}

@media only screen and (max-width: 768px) {
    #footer {
        position: relative;
      width: 100%;
}
    .navbar-brand {
        letter-spacing: .2rem;
    }
}
