/* cmsms stylesheet: Bv4 Preloader modified: 10/11/22 12:55:15 */
.preloader {
  	position: fixed;
  	left: 0px;
  	top: 0px;
  	width: 100%;
  	height: 100%;
  	display: table;
  	z-index: 999999;
  	background: rgb(255,255,255);
  }
  #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 #38a9a0;
  	border-radius: 100%;
  	width: 3em;
  	height: 3em;
  }
  @keyframes spinnerFour {
  	0% {
  		transform: rotate(0deg);
  	}
  	100% {
  		transform: rotate(360deg);
  	}
  }
