.loadingpage-fibora{
  position: fixed !important;
  z-index: 9999999999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.9);display: block
}

.contenedor-loader-fibora {
    font-size: calc(22px + (24 - 16) * (100vw - 320px) / (1280 - 320));
    width: 180px;
                /*height: 30px;*/
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 35%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
}

.loader-fibora {
              /*position: relative;*/
  position: fixed;
  margin-bottom:100px;
  width: 200px;
  height: 200px;
}

.loader-fibora:before , .loader-fibora:after{
  content: '';
  border-radius: 50%;
  position: absolute;
  inset: 0;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}
.loader-fibora:after {
  box-shadow: 0 5px 0 #FF3D00 inset;
  animation: rotatefibora 2s linear infinite;
}

@keyframes rotatefibora {
  0% {  transform: rotate(0)}
  100% { transform: rotate(360deg)}
}