html,
body,
div,
span,
applet,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 0;
  font: inherit;
  font-weight: normal;
  vertical-align: baseline;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
html {
  /* overflow: hidden; */
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul,
li {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: middle;
}
/* custom */
a {
  outline: none;
  color: #333333;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
a:focus {
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 0;
}
.navbar-toggle {
  /* border:1px solid #333 */
  border: 0;
}
.fl {
  float: left;
}
.fr {
  float: right;
}

.hover-shadow {
  display: inline-block;
  position: relative;
  -o-transition:
    0.8s,
    box-shadow 0.4s linear;
  -moz-transition:
    0.8s,
    box-shadow 0.4s linear,
    -moz-box-shadow 0.4s linear;
  transition:
    0.8s,
    box-shadow 0.4s linear;
  transition:
    0.8s,
    box-shadow 0.4s linear,
    -moz-box-shadow 0.4s linear;
  transform: translateZ(0);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
  /* display: none; */
}
::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  /* display: none; */
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.3);
  /* display: none; */
}

@keyframes rave {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em;
  }
  100% {
    transform: translate3d(0, -1em, 0);
    text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em;
  }
}
