:root {
  --primary-color: #259d90;
  --gradient: linear-gradient(90deg, rgb(0 136 161) 10%, rgb(85 217 157) 100%);
  --gradient-180: linear-gradient(180deg, rgb(0 136 161) 10%, rgb(85 217 157) 100%);
}

html {
  background: #e6f2f2;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  user-select: none;
}

.btn-ibis {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-ibis:hover:not(:disabled) {
  color: #fff;
  opacity: 0.9;
}

.btn-ibis:focus,
.btn-ibis.focus {
  color: #fff;
  opacity: 0.9;
  box-shadow: var(--primary-color);
}

.btn-ibis.disabled,
.btn-ibis:disabled {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  cursor: not-allowed;
}

.btn-ibis:not(:disabled):not(.disabled):active,
.btn-ibis:not(:disabled):not(.disabled).active,
.show > .btn-ibis.dropdown-toggle {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(var(--primary-color));
}

.btn-ibis:not(:disabled):not(.disabled):active:focus,
.btn-ibis:not(:disabled):not(.disabled).active:focus,
.show > .btn-ibis.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(84, 196, 212, 0.5);
}

.badge-ibis {
  color: #fff;
  background-color: rgb(0 136 161);
}

a.badge-ibis:hover,
a.badge-ibis:focus {
  color: #fff;
  background-color: rgb(0 111 136);
}

a.badge-ibis:focus,
a.badge-ibis.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(54, 185, 204, 0.5);
}

.bg-ibis {
  background-color: var(--primary-color) !important;
}

a.bg-ibis:hover,
a.bg-ibis:focus,
button.bg-ibis:hover,
button.bg-ibis:focus {
  background-color: var(--primary-color) !important;
}

.border-ibis {
  border-color: var(--primary-color) !important;
}

.text-ibis {
  color: var(--primary-color) !important;
}

a.text-ibis:hover,
a.text-ibis:focus {
  color: var(--primary-color) !important;
}

.bg-primary-ibis {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-primary-ibis-180 {
  background-image: var(--gradient-180);
}

.border-left-ibis {
  border-left: 0.25rem solid var(--primary-color) !important;
}

.border-bottom-ibis {
  border-bottom: 0.25rem solid var(--primary-color) !important;
}

.card-header,
.modal-header {
  border-radius: 12px 12px 0 0 !important;
}

.card {
  border-radius: 12px 12px 12px 12px !important;
  box-shadow: 0px 11px 22px #b9d5d5;
  border: none;
}

.modal-content {
  border-radius: 12px 12px 12px 12px !important;
  border: none;
}

.snackbar {
  visibility: hidden;
  min-width: 250px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 10;
  left: 50%;
  bottom: 1rem;
  box-shadow: 1px 1px 2px black;
}

.delete {
  background-color: #dc3545;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 1rem;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 1rem;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 1rem;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 1rem;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

.ReactModal__Overlay {
  -webkit-perspective: 600;
  perspective: 600;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.ReactModal__Overlay--after-open {
  opacity: 1;
  transition: opacity 150ms ease-out;
  z-index: 1050;
}

.ReactModal__Content {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.ReactModal__Content--after-open {
  -webkit-transform: scale(1) rotateX(0deg);
  transform: scale(1) rotateX(0deg);
  transition: all 300ms ease-out;
}

.ReactModal__Overlay--before-close {
  opacity: 0;
}

.ReactModal__Content--before-close {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  transition: all 300 ease-out;
}

.ReactModal__Content.modal-dialog {
  border: none;
  background-color: transparent;
}

.react-date-picker__wrapper {
  border: none !important;
}

.react-date-picker__calendar {
  width: 17em;
}

.react-calendar {
  width: 17em;
}

.react-calendar__navigation {
  border: 1px solid #ddd;
  background: #e9e9e9;
  color: #333;
  font-weight: bold;
}

.react-date-picker__inputGroup__input:invalid {
  background: none !important;
}

.text-danger {
  font-size: 80%;
}

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--primary-color);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: var(--primary-color);
  }
  50%,
  100% {
    background-color: #fff;
  }
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.custom-control-label::before,
.custom-control-label::after {
  cursor: pointer;
}

.btn-danger:disabled {
  cursor: not-allowed;
}

.popover {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3) 0 3px 10px;
  display: none;
}

.popover ul {
  list-style: 'none';
  padding: '0';
  font-size: '1rem';
  margin: '0';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popover-list-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.popover ul {
  list-style: 'none';
  padding: 0;
  margin: 0;
}

.popover li {
  display: flex;
  padding: 10px 0 10px 0.5rem;
  width: 100%;
  cursor: pointer;
  text-align: left;
  align-items: center;
  font-size: 1rem;
}

.popover hr {
  border-top: 1px solid white;
  margin: 0;
  padding: 0;
  width: 100%;
}

.popover-link:hover {
  background-image: linear-gradient(rgb(0 0 0/20%) 0 0);
}

.popover-delete:hover {
  background-color: #c60000 !important;
}

.popover-link {
  text-decoration: none;
  color: #fff;
}
.popover-link:hover {
  text-decoration: none;
  color: #fff;
}

.fa-circle-notch {
  background-color: var(--primary-color);
  background-image: linear-gradient(180deg, rgb(0 136 161) 10%, rgb(85 217 157) 100%);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  color: transparent;
}

.fa-spin {
  -webkit-animation: fa-spin 1.2s infinite linear;
  animation: fa-spin 1.2s infinite linear;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary-color);
}

.sidebar-ibis-rebrand {
  box-shadow: rgba(0, 0, 0, 0.05) 2px 2px 25px 12px;
}

.sidebar .nav-link,
.sidebar .nav-link span {
  padding: 0;
  color: #35485f;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sidebar .nav-item.active .nav-link span,
.sidebar .nav-item.active .nav-link i {
  color: var(--primary-color);
}

.sidebar .nav-item .nav-link span {
  font-size: 1rem;
}
