.containerLoading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  background: white;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000000;
}
.containerLoadingProcess {
  position: relative;
}
.containerLoadingNoAnimation {
  /*top: var(--navbar-height);*/
  /*margin-bottom: var(--navbar-height);*/
}
.containerLoading svg {
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.containerLoading--success {
  background: #1f3deb;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.containerLoading--success div {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}

.containerLoading--err {
  background: #ff2602;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.containerLoading--err div {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}


.containerLoading--warn {
  background: #F9C647;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.containerLoading--warn div {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}


.containerLoading--in {
  -webkit-animation: containerLoading-animation-exit 1s ease-in-out forwards;
  animation: containerLoading-animation-exit 1s ease-in-out forwards;
}

.containerLoading--exit {
  background: white;
  -webkit-animation: containerLoading-animation-exit 1s ease-in-out forwards;
  animation: containerLoading-animation-exit 1s ease-in-out forwards;
}

.containerLoading--exit div {
  display: none;
}

.containerLoading--exit svg:nth-of-type(1) {
  display: none;
}

.containerLoading--exit svg:nth-of-type(2) {
  display: none;
}

@-webkit-keyframes containerLoading-animation-rotate {
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes containerLoading-animation-rotate {
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes containerLoading-animation-svg {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes containerLoading-animation-svg {
  0% {
    stroke-dashoffset: 1000;
  }
  70% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes containerLoading-animation-exit {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes containerLoading-animation-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes containerLoading-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes containerLoading-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes containerLoading-animation-uthere {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1000;
  }
}

@keyframes containerLoading-animation-uthere {
  0% {
    stroke-dashoffset: 1000;
  }
  90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
.containerLoadingUthere {
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 50px;
  height: 50px;
  stroke: #1f3deb;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: containerLoading-animation-uthere 1.6s ease-in-out infinite;
  animation: containerLoading-animation-uthere 1.6s ease-in-out infinite;
}
#containerLoadingUthereFill {
  -webkit-animation: containerLoading-animation-uthereFill 2s ease-in-out
    infinite;
  /* animation: containerLoading-animation-uthereFill 2s ease-in-out infinite; */
}
.containerLoadingUthereSuccess {
  opacity: 0;
}
.containerLoadingUthereErr {
  opacity: 0;
}
.containerLoadingUthereWarn {
  opacity: 0;
}
@keyframes containerLoading-animation-uthereFill {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.containerLoadingUthereSpan {
  opacity: 0;
  -webkit-animation: containerLoading-animation-uthereFill 1.4s ease-in-out
    forwards;
  animation: containerLoading-animation-uthereFill 1.4s ease-in-out forwards;
}

.containerLoading--success .containerLoadingUthere {
  opacity: 1;
  animation: containerLoading-animation-exit 0.5s ease-in-out forwards;
}
.containerLoading--err .containerLoadingUthere {
  opacity: 1;
  animation: containerLoading-animation-exit 0.5s ease-in-out forwards;
}

.containerLoading--warn .containerLoadingUthere {
  opacity: 1;
  animation: containerLoading-animation-exit 0.5s ease-in-out forwards;
}

@keyframes containerLoading-animation-exit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.containerLoading--success .containerLoadingUthereSuccess {
  opacity: 1;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  animation: containerLoading-animation-uthere-success 1.5s ease-in-out forwards;
}

.containerLoading--err .containerLoadingUthereErr {
  opacity: 0;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  animation: containerLoading-animation-uthere-success 1.5s ease-in-out forwards;
}
.containerLoading--warn .containerLoadingUthereWarn {
  opacity: 0;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  animation: containerLoading-animation-uthere-success 1.5s ease-in-out forwards;
}
@keyframes containerLoading-animation-uthere-success {
  0% {
    opacity: 1;
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
/*
.containerLoadingUthereProcessExit {
  opacity: 1;
  animation: fadeOut ease 1s;
  -webkit-animation: fadeOut ease 1s;
  -moz-animation: fadeOut ease 1s;
  -o-animation: fadeOut ease  1s;
  -ms-animation: fadeOut ease  1s;
}
@keyframes containerLoading-process {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
*/

.containerLoadingU {
  background: white;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
}

.containerLoadingU svg:nth-of-type(1) {
  width: 15%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.containerLoadingU svg:nth-of-type(2) {
  width: 15%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.containerLoadingUPathU {
  position: absolute;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 50px;
  /* height: 50px; */
  stroke: #1f3deb;
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: animation-containerLoadingUPathU 1.6s ease-in-out infinite;
  animation: animation-containerLoadingUPathU 1.6s ease-in-out infinite;
}
@keyframes animation-containerLoadingUPathU {
  0% {
    stroke-dashoffset: 1000;
  }
  90% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
.containerLoadingUfade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 101ss;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}
.containerLoadingUfade-out {
  opacity: 1;
  animation: fadeOut ease 1s forwards;
  -webkit-animation: fadeOut ease 1s forwards;
  -moz-animation: fadeOut ease 1s forwards;
  -o-animation: fadeOut ease 1s forwards;
  -ms-animation: fadeOut ease 1s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.containerLoadingU-displayNone {
  display: none;
}
.fade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 101ss;
}

@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

.spinner-border{
  border: 4px solid #4f66ec;
  border-left-color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
  position:absolute;
  right: 10px;
}
@keyframes spin {
to {
  transform: rotate(360deg);
}
}