/****************************
-- General --
****************************/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-y: visible;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.wf-loading {
  position: relative;
}

.wf-arloicons-n4-active.wf-loading:before {
  color: #00a84f;
  content: 'a';
  font-family: arloicons;
  font-size: 23px;
  left: 50%;
  line-height: 29px;
  margin-left: -25px;
  margin-top: -14px;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 50px;
  -webkit-animation: fly 1s linear infinite;
  animation: fly 1s linear infinite;
  -webkit-backface-visibility: hidden;
}

body {
  background-color: #e5e5e5;
  color: #4d4d4d;
  height: 100%;
  -webkit-backface-visibility: hidden;
}

.wf-loading body {
  opacity: 0;
}

.wf-active body {
  opacity: 1;
}

#container {
  background-color: #fff;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  width: 100%;
  z-index: 1;
}

main {
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/****************************
-- Slide animation on Mobile Menu --
****************************/
#header,
#header > *,
main,
#footer {
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -ms-transform 200ms ease;
  transition: transform 200ms ease;
  -webkit-backface-visibility: hidden;
}

.menu-open #header > *,
.menu-open main,
.menu-open #footer {
  -webkit-transform: translate(-68.75%, 0);
  -ms-transform: translate(-68.75%, 0);
  transform: translate(-68.75%, 0);
}

/****************************
-- Media Queries --
****************************/