/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 12 2025 | 12:11:42 */
header{
	position:fixed !important;
	width:100%
}

.forminator-field input{
	border-radius:30px !important;
	border-color:#eee;
	padding-left:15px !important;
}

.forminator-field textarea{
	border-radius:15px !important;
	border-color:#eee;
	padding-left:15px !important;
}

.forminator-field button {
	display: block !important;
    width: 100% !important;
    border-radius: 30px !important;
	
}





.star {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
 background: #fff;
  overflow: hidden;
  z-index: 2;
  animation: glitter 4.5s linear 0s infinite normal;
  -webkit-animation: glitter 4.5s linear 0s infinite normal;
  -moz-animation: glitter 4.5s linear 0s infinite normal;
  -ms-animation: glitter 4.5s linear 0s infinite normal;
  -o-animation: glitter 4.5s linear 0s infinite normal;
}
.star-top,
.star-bottom {
  position: relative;
  display: block;
}
.star-top:before,
.star-top:after,
.star-bottom:before,
.star-bottom:after {
  content: '';
  width: 48px;
  height: 48px;
  background: #0A3F87;
  border-radius: 50%;
  position: absolute;
}
/*CSS3 pseudo class for positioning curves*/

.star-top:before {
  top: -24px;
  left: -24px;
}
.star-top:after {
  bottom: -24px;
  left: 24px;
}
.star-bottom:before {
  top: 24px;
  left: -24px;
}
.star-bottom:after {
  top: 24px;
  left: 24px;
}
/*CSS3 keyframes for glittering effect*/

@-webkit-keyframes glitter {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes glitter {
  0% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  25% {
    -moz-transform: scale(0.5);
    opacity: 0;
  }
  50% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  75% {
    -moz-transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}