* {
  font-family: 'Open Sans', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  border: 0;
  min-height: 100%;
  background: rgb(248, 249, 253);
}
#body-container {
  height: 100%;
  overflow-y: auto;
  position: relative;
}
#root {
  height: 100%;
}
.Checked_Out_Message {
  color: red;
  line-height: 40px;
  font-size: 14px;
}
.Form_Footer {
  padding: 15px;
  margin: 20px 0;
  letter-spacing: 1px;
  font-size: 18px;
}
.Float_Right {
  float: right;
}

.fade-in {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.shake-lr {
  -webkit-animation: shake-lr 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
  animation: shake-lr 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@keyframes shake-lr {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9e9e9e;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* Treeview */
.checkbox {
  font-size: 16px;
  user-select: none;
  min-height: 320px;
  padding: 20px;
  box-sizing: content-box;
  transition: all 0.2s;
}

.tree-node-group--expanded {
  transition: all 0.2s;
  height: 100%;
}

.tree-node--selected {
  transition: all 0.2s;
  height: 100%;
}

.checkbox .tree,
.checkbox .tree-node,
.checkbox .tree-node-group {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
}

.checkbox .tree-branch-wrapper,
.checkbox .tree-node__leaf {
  outline: none;
  transition: all 0.2s;
}

.checkbox .tree-node {
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox .tree-node .name:hover {
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.checkbox .tree-node--focused .name {
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.checkbox .tree-node {
  display: inline-block;
  transition: all 0.2s;
}

.checkbox .checkbox-icon {
  margin: 0 5px;
  vertical-align: middle;
  border-radius: 0.3rem;
}

.checkbox button {
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox .arrow {
  margin-left: 5px;
  vertical-align: middle;
  transition: all 0.2s;
  transform: rotate(0deg);
}

.checkbox .arrow--open {
  transform: rotate(90deg);
  transition: all 0.2s;
}
.userListAnchorTag{
  margin-left: 12px;
  text-decoration: unset;
}
