﻿/*
    CSS for Igc.Common.ProgressIndicator internal plugin
*/
.igc-progress-primary {
    position: relative;
}

.igc-progress-primary .icon{
    background-image: url(/Images/Icon-Upload.svg);
    width: 20px;
    height: 20px;
}

.igc-progress-primary .progress-percent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    font-size: 42px;
    font-family: Roboto;
}

.igc-progress-primary .percent-symbol {     
    position: absolute;
    font-size: 16px;
    font-weight: 300;
    transform: translate(-0%, -50%);
    opacity: 0.54;
}

.igc-progress-box{
    text-align: center;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
    border: solid 0 #979797;
}

.igc-progress-box .igc-progress-primary {
    top: calc(50% - 65px);
}

.igc-progress-box .percent-symbol {
    top: 37%;
}

/*overlay*/
.igc-progress-overlay{
    z-index: 20;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    display: block;
    background-color: rgba(39, 54, 71, 0.1);
    text-align: center;
}


.igc-progress-primary.continous:before {
    content: ' ';
    display: block;
    height: 110px;
    width: 110px;
    animation: rotation .9s infinite linear;
    border-left: 6px solid rgba(238,238,238, 1);
    border-right: 6px solid rgba(238,238,238, 1);
    border-bottom: 6px solid rgba(238,238,238, 1);
    border-top: 6px solid rgba(30,136,229, 1);
    border-radius: 100%;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}