.showbox {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    padding: 5%;
    z-index: 10003;
    background-color: rgba(255, 255, 255, 0.7);
}

.loader {
    left: 50%;
    margin: -30px auto 0 -62.5px;
    position: absolute;
    top: 50%;
    width: 125px;
}
.loader:before {
  content: '';
  display: block;
  padding-top: 100%;
  font-size: 20px;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

.portal-loader p { 
    width: 100%; 
    display: block; 
    text-align: center; 
    font-size: 20px; 
    padding-top: 100%; 
    margin-top: 25px; 
    margin-bottom: 0; 
} 
.portal-loader:before { 
    display: none; 
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}

/*== Vadoori-loader-style start==*/
.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
}
.wrapper:before {
  content: '';
  display: block;
  padding-top: 100%;
  font-size: 15px;
  position: absolute;
  bottom: -20px;
  left: 5px;
}
.ball {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  border:6px solid green;
}

.ball:nth-child(1) {
  animation: ball-1 .5s ease-out infinite alternate;
}
.ball:nth-child(2) {
  animation: ball-2 .5s ease-in infinite alternate;
  margin-left: -18px;
}

@keyframes ball-1 {
  0% {transform: scale(1);}
  100% {transform: scale(0.6);}
}

@keyframes ball-2 {
  0% {transform: scale(.6);}
  100% {transform: scale(1);}
}
/*== Vadoori-loader-style end==*/

/*== My blue-docs-loader-style start==*/
.my-bluedocs-loader {
    left: 50%;
    margin: -30px auto 0 -35px;
    position: absolute;
    top: 50%;
    width: 70px;
}
.my-bluedocs-loader:before {
  content: '';
  display: block;
  padding-top: 100%;
  font-size: 14px;
  position: absolute;
  font-weight: 600;
  bottom: -25px;
  width: 70px;
  text-align: center;
}
.my-bluedocs-loader img{
  max-width: 100%;
}

.loader-metro:before {
  content: attr(data-text)!important;
}
/*== My blue-docs-loader-style end==*/

.bluebrix-inner .showbox, 
.showbox.bluebrix-loader,
.bluebrix-inner .time-line-outer .timeline-overlay  {
    display: none !important;
}

@media only screen and (max-width: 850px) {
    .my-bluedocs-loader {
        top: 44%;
    }
    .my-bluedocs-loader:before {
        display: none;
    }
    .loader{
      width: 80px;
      margin-left: -40px;
      text-align: center;
    }
    .loader:before{
      content: '';
    }
}