.error {
  color: red;
  position: absolute;
  right: 10px;
  bottom: -3.5vh;
  font-size: 12px;
  font-style: italic;
}

/* Button Loader */
.btn_loading {
  display: flex;
  justify-content: center;
  height: 6vh;
  width: 20vh !important;
  padding: inherit;
  border-radius: 0.25rem;
  align-items: center;
  float: right;
}

.spinner {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  border-top: 4px dotted white;
  border-left: 4px dotted white;
  border-right: 4px dotted white;
  border-bottom: 4px dotted white;
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -ms-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Button Loader */

.text_justify{
  text-align: justify;
}

.table p,
.table ol,
.table ul{
  margin: 0 !important;
}

.nowrap{
  white-space: nowrap;
}