.content-wrapper {
    min-height: none;
}

.legal {
    text-align: center;
    background: #3aaba1;
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
    width: 100%;
    left: 0;
}

.body {
    background: #13968a;
}

.dvToTop {
    position: fixed;
    bottom: 110px;
    right: 10px;
    background-color: #CCC;
    /*background:transparent;*/
    cursor: pointer;
    display: none;
    z-index: 999;
    margin-top: -9px;
    border-radius: 100%;
    color: green;
    /*background-color: #ddd;*/
}

.loading-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
    z-index: 1001;
    text-align: center;
    display: none;
}



/* Datatable Styles -> #no-more-tables*/
#no-more-tables_filter {
    padding: 0;
    float: right;
    margin-top: 5px;
    margin-right: 10px;
}

#no-more-tables_length, #no-more-tables_info {
    margin-top: 15px;
    margin-left: 10px;
    padding: 0;
    width: 48%;
    float: left;
}

#no-more-tables_paginate, #no-more-tables_info {
    display: none;
}

/*-----------------Progress Bar--------------------------*/
.loader {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  perspective: 800px;
}

.inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #EFEFFA;
}

.inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #EFEFFA;
}

.inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #EFEFFA;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
