/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-size: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #382D24;
  background-color: #FFF;
  border: 20px solid #FFF;
  background-color: #382D24;
  min-width: 320px;
  min-height: 480px;
}

h1 {
  font-size: 3em;
  color: #80582f;
  text-align: center;
}

a {
  color: #1e2b38;
  text-decoration: none;
}

.logo {
  background: url('../img/citybearslogoWhite.png') no-repeat center center;
}
.logo, .contentSoon {
  width: 100%;
  height: 100%;
}
.contentSoon {
  position: absolute;
  top: 0;
  left: 0;
}

.contentSoon > h1 {
  position: relative;
  top: 70%;
}

@media only screen and (max-width: 768px) {
  .logo {
	background-size: 50%;
  }
  .contentSoon > h1 {
	font-size: 200%;
  }
}

.logo {
  -webkit-animation: bam 0.5s linear;
  animation: bam 0.5s linear;
  -moz-animation: bam 0.5s linear;
}

@-webkit-keyframes bam {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@keyframes bam {
  from {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes bam {
  from {
    opacity: 0;
    -moz-transform: scale3d(1.3, 1.3, 1.3);
  }

  to {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
  }
}


@-webkit-keyframes all {
  0%   {
    -webkit-transform: rotateY(0deg);
  }
  100%    {
    -webkit-transform: rotateY(720deg);
  }
}
@keyframes all {
  0%   {
    -webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	transform: rotateY(0deg);
  }
  100%    {
    -webkit-transform: rotateY(720deg);
	-moz-transform: rotateY(720deg);
	-ms-transform: rotateY(720deg);
	-o-transform: rotateY(720deg);
	transform: rotateY(720deg);
  }
}
@-moz-keyframes all {
  0%   {
    -moz-transform: rotateY(0deg);
  }
  100%    {
    -moz-transform: rotateY(720deg);
  }
}

/* -------------------------------- 

Modules - Loading Pace

-------------------------------- */

.pace .pace-progress {
  background: #80582f;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 2px;

  -webkit-transition: width 1s;
  -moz-transition: width 1s;
  -o-transition: width 1s;
  transition: width 1s;
}

.pace-inactive {
  display: none;
}