@charset "UTF-8";

.myProgressContainer {
	position: fixed;
    bottom: 5px;
    right: 30px;
    width: 350px;
    text-align: center;
    z-index: 9999;
    font-family: roboto-regular, tahoma, arial;
}

.myProgress {
    height: 100px;
    background-color: white;
    padding: 5px;
    text-align: left;
    margin-top: 5px;
    border: solid #EE0033;
    border-width: 35px 2px 2px 2px;
    position: relative;
}

.progress-header {
	position: absolute;
	top: -26px;
	left: 5px; 
	color: white;
}

.progress-bar-filename {
	margin: 5px 0 5px 0;
	width: 100%;
	overflow: hidden; /* make sure it hides the content that overflows */
  	white-space: nowrap; /* don't break the line */
  	text-overflow: ellipsis;
}

.progress-bar-filename-icon {
	margin-right: 5px;
    color: #3C66A0;
    font-size: 16px;
}

.progress-bar-filename-text {
	font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

.progress-bar {
  height: 8px;
  border-radius: 3px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: #3C66A0;
  animation: indeterminateAnimation 1.5s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform:  translateX(0) scaleX(0);
  }
  40% {
    transform:  translateX(0) scaleX(0.4);
  }
  100% {
    transform:  translateX(100%) scaleX(0.5);
  }
}
