.classButton {
    background: #457c68 linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0));
    background: #457c68 -webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,0.8)),to(rgba(255,255,255,0)));
    background: #457c68 -moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0));
}

.fitButton {
    width: 100%;
    background-color: #00df8d !important;
    border: 0px;
    border-radius: 5px;
    padding: 10px;
    color: white !important;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;    
    margin-top:10px;
}

.hideElement {
    display:none;
}

.borderElement {
    border:solid 1px;
}

.tree-table-no-header {
    border:solid 1px;
}
.tree-table-no-header thead {
    display: none;
}

.width300 {
    width:300px;
}

.filterText {
    width:100%; 
    margin-top: 10px; 
    font-family: BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
}

#footPanel {
    float: right;
    right:10px;
    bottom:5px;
    font-size:10pt;
    font-family:Arial, sans-serif;
    color:black;
}

#linkBlog {
    color:black;
}

.errorValidation {
    color:red;
}

.domino {
  position: relative;
  display: inline-block;
  margin: 0 4px;
  width: 5px;
  height: 15px;
  border-radius: 2px;
  border: solid #690;
  border-width: 0 1px 1px 0;
  background: #9b2;
  animation: tilt infinite 5s cubic-bezier(0.955, -0.010, 1.000, 1.000);
  transform-origin: 100% 100%;
}

.domino::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  display: block;
  width: 5px;
  height: 5px;
  background: transparent;
  box-shadow: 0 2px rgba(0,0,0,.3);
  animation: stretch infinite 5s cubic-bezier(0.955, -0.010, 1.000, 1.000);
  opacity: 0;
  transform-origin: 0% 0%;
}

.domino:nth-child(2),
.domino:nth-child(2)::before {
  animation-delay: .3s;
}

.domino:nth-child(3),
.domino:nth-child(3)::before {
  animation-delay: .6s;
}

.domino:nth-child(4),
.domino:nth-child(4)::before {
  animation-delay: .9s;
}

.domino:nth-child(5),
.domino:nth-child(5)::before {
  animation-delay: 1.2s;
}

.domino:last-of-type {
  animation-name: tilt-last;
}

.domino:last-of-type::before {
  animation-name: stretch-last;
}

@keyframes tilt {
  10% { transform: rotate(70deg); }
  60% { transform: rotate(70deg); }
  70% { transform: rotate( 0deg); }
}

@keyframes tilt-last {
  10% { transform: rotate(90deg) }
  60% { transform: rotate(90deg) }
  70% { transform: rotate( 0deg) }
}

@keyframes stretch {
  10% { transform: rotate(-70deg); width: 10px; opacity: 1; left: 0px; bottom: -1px; }
  60% { transform: rotate(-70deg); width: 10px; opacity: 1; }
  70% { width: 5px; transform: rotate(0deg); opacity: 0; }
}

@keyframes stretch-last {
  10% { transform: rotate(-90deg); width: 10px; height: 2px; opacity: .5; left: 3px; bottom: -1px; }
  60% { transform: rotate(-90deg); width: 10px; height: 2px; opacity: .5; }
  70% { transform: rotate(0deg); width: 5px; height: 5px;opacity: 0;}
}

.loader {
  /*position: relative;*/
  border-radius: 10px;
  display: none;
  /*margin: auto;*/
  padding: 50px;
  /*width: 100px;*/
  /*height: 15px;*/
  text-align: center;
  
  z-index: 99999;
  width: 100px;
  height: 20px;
  background-color: #00df8e;
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.ui-dialog-titlebar-close {
    float:left!important;
}
.ui-dialog-title{
    float:right!important;
}

.container_textarea {
    max-width: 820px;
    margin: 0px auto;
}

.subcontainer_textarea {
    float: left;
    width: 100%;
    height: auto;
}

.textinput {
    float: left;
    width: 100%;
    min-height: 75px;
    outline: none;
    resize: none;
    border: 1px solid grey;
}

.lds-spinner {
  /*position: relative;*/
  border-radius: 10px;
  display: none;
  /*margin: auto;*/
  padding: 50px;
  /*width: 100px;*/
  /*height: 15px;*/
  text-align: center;
  
  z-index: 99999;
  width: 180px;
  height: 180px;
  background-color: #00df8e;
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  
  color: official;
  /*position: relative;
  width: 80px;
  height: 80px*/;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}


@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
