@font-face {
font-family: LeagueSpartan-Bold; 
src: url("/loading-new/font/LeagueSpartan-Bold.otf") format("opentype"); 
} 

body {
  margin: 0;
  padding: 0;
  height: 100vh;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f5f5f5+0,ffffff+97 */
background: #f5f5f5; /* Old browsers */
background: -moz-linear-gradient(top,  #f5f5f5 0%, #ffffff 97%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #f5f5f5 0%,#ffffff 97%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #f5f5f5 0%,#ffffff 97%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    
    margin: 0 auto; text-align: center; font-family: "LeagueSpartan-Bold"; color: #e0b942;

} .loading-effect{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw 0 0 0;
}
.logo{margin: 0 auto;max-width: 440px;}

@media screen and (max-width: 600px){
    .logo{  max-width: 70vw;}
}

h1{font-family: "LeagueSpartan-Bold"; text-transform: uppercase; margin: 12px 0 10px 0; font-size: 19px; 
animation: scale linear 2s infinite;}
h1 b{color: #f77272;}
@media only screen and (max-width: 600px){
    h1{ font-size:24px !important; margin: 0px !important;}
    h1 b{display: block;}
}

@media only screen and (max-width: 420px){
    h1{ font-size:21px !important; margin: 0px !important; padding: 0px 30px 0px 30px;}
    h1 b{display: block;}
}

h3{ margin:0px; font-size:19px;}

@keyframes scale {	
50%{transform: scaleX(0.9);	}
}


.loading {
  padding: 5vh 0vh 8vh 0vh;
  width: 330px;
  height: 330px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transform: rotate(45deg);
}

@media screen and (max-width: 600px){
 .loading {
  padding: 10vh 0vh 10vh 0vh;
  width: 50vw;
  height: 50vw;
    }
}


.loading span {
  flex-shrink: 0;
  width: 30%;
  height: 30%;
  --c: gray;
  background-image: var(--c);
    background-size: contain;
    background-repeat: no-repeat;
  position: relative;
  transform: scale(0);
  animation: blinking 2s linear infinite;
  animation-delay: var(--d);
}
.loading span::before {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: rotate(-45deg);
}

.loading span:nth-child(1){
  --c: url("/loading-new/images/silver-oak.png");
  --d: 0.4s;
}

.loading span:nth-child(2){
  --c: url("/loading-new/images/dr.png");
  --d: 0.6s;
}

.loading span:nth-child(3) {
  --c: url("/loading-new/images/eg.png");
  --d: 0.8s;
}

.loading span:nth-child(4){
  --c: url("/loading-new/images/cards.png");
  --d: 0.2s;
}

.loading span:nth-child(5){
  --c: url("/loading-new/images/cb3.png");
  --d: 0.4s;
}

.loading span:nth-child(6) {
  --c: url("/loading-new/images/bb3.png");
  --d: 0.6s;
}

.loading span:nth-child(7) {
  --c: url("/loading-new/images/lh.png");
  --d: 0s;
}

.loading span:nth-child(8) {
  --c: url("/loading-new/images/lr.png");
  --d: 0.2s;
}


.loading span:nth-child(9) {
  --c: url("/loading-new/images/dg.png");
  --d: 0.4s;
}


@keyframes blinking {
  0%,
  100% {
    transform: scale(0);
  }
  20%,
  80% {
    transform: scale(1);
  }
}


