/* shimmer common css code */
.shimmer-main-section{
	background: linear-gradient(to right, #151d4c, #0080ff00);
}
.shimmerBG {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: shimmer;
          animation-name: shimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: #ddd;
/* background: linear-gradient(90deg, #151d4c 30%, #ffffff 50%, #151d4c 80%);   */
background: linear-gradient(to right, #151d4c, #0080ff00);
  background-size: 1200px 100%;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0; 
  }
}

.shimmer-header-div{
	height: 15rem;
}
.shimmer-second-div{
	background: #fff;
	margin-top: -3rem;
	padding: 1rem;
}
.shimmer-breadcrumb-section{
	display: flex;
	justify-content: space-between;
}
.shimmer-breadcrumb-div{
	height: 1.5rem;
    width: 30%;
    border-radius: 1rem;	
}

.shimmer-content-load-div {
	height: 30rem;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: shimmerdetails;
          animation-name: shimmerdetails;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  	background: #ddd;
 	background: linear-gradient(to right, #F6F6F6 8%, #DDDDDD 18%, #F6F6F6 33%);
  	background-size: 1200px 100%;
}
@-webkit-keyframes shimmerdetails {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes shimmerdetails {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0; 
  }
}