/*   
Theme Name: MaxWeb Theme
Theme URI: https://www.sytian-productions.com/
Description: This is a custom wordpress theme for MaxWeb.
Author: Sytian IT Solutions Inc.
Author URI: https://www.sytian-productions.com/
Version: 2.0
*/ 
.loader-icon {
  position: relative;
  margin: 50px auto;
  width: 100px;
  height: 100px;
  padding: 10px;
  font-family: sans-serif;
  font-size: 10px;
  text-align: center;
  color: #0C54C8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.loader-icon::before,
.loader-icon::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.loader-icon::before {
  width: 142%; /* Square root of 2 */
  height: 142%; /* Square root of 2 */
  background-image: linear-gradient(0deg, #0C54C8, transparent 75%);
  animation: loader-gradient-border-rotate 2500ms infinite linear;
  opacity: 0.5;
}

.loader-icon::after {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: #ffffff;
  border-radius: 5px;
}

@keyframes loader-gradient-border-rotate {
  from {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@font-face { 
font-family: HKGrotesk-Regular; 
src: url(https://maxwebdigital.com/wp-content/themes/custom-theme/fonts/HKGrotesk-Regular.otf); 
font-weight: normal; 
}

.image-placeholder {
display: none !important;}