/* cmsms stylesheet: Bv4 Preloader modified: 07/15/22 10:44:02 */
.preloader1 {
  	position: fixed;
  	left: 0px;
  	top: 0px;
  	width: 100%;
  	height: 100%;
  	display: table;
  	z-index: 999999;
  	background: rgba(255,255,255,0.5);
  }
  #loader {
  	animation: animate 1.5s linear infinite;
  	/*clip: rect(0, 80px, 80px, 40px);*/
  	height: 146px;
  	width: 146px;
  	position: absolute;
  	left: calc(50% - 1em);
  	top: calc(50% - 1em);
  }
  .spinner4 {
  	animation: spinnerFour 1s linear infinite;
  	border: solid 7px transparent;
  	border-top: solid 7px #2E548C;
  	border-radius: 100%;
  	width: 3em;
  	height: 3em;
  }
  @keyframes spinnerFour {
  	0% {
  		transform: rotate(0deg);
  	}
  	100% {
  		transform: rotate(360deg);
  	}
  }
