@charset "utf-8";
/* reset.css */
/* Order: 1) Global reset 2) Element reset 3) Form reset */

/*************** Reset all element margins/paddings ************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: normal;
  /* Line height auto */
}

::before,
::after {
  display: block;
}

/*************** HTML and Body Reset ************************/
html,
body {
  position: relative;
  overflow-x: hidden;
  /* Prevent x-axis scroll */
  overflow-y: auto;
  /* Allow y-axis scroll */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  background: transparent;
  display: block;
}

strong {
  display: inline-block;
}

/*************** Prevent text overflow from container ************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li {
  overflow-wrap: break-word;
}

/*************** Make inline SVG elements block ************************/
svg {
  display: block;
}


/*************** Hyperlink Reset ************************/
a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/*************** List Reset ************************/
ul,
ol,
li {
  list-style: none;
}

/*************** Image and Video Reset ************************/
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/************ Completely remove video controls and UI elements ***************/
video {
  outline: none;
  border: none;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-panel {
  display: none !important;
}

video::-webkit-media-controls-play-button {
  display: none !important;
}

video::-webkit-media-controls-volume-slider {
  display: none !important;
}

video::-webkit-media-controls-timeline {
  display: none !important;
}

video::-webkit-media-controls-current-time-display {
  display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

video::-webkit-media-controls-mute-button {
  display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

/*************** Table Reset ************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

tr {
  display: table-row;
}

th,
td {
  display: table-cell;
}

/*************** Input, Button Reset ************************/
button,
input,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: default;
}

/********************** Block Element Reset ************************/
section,
article,
header,
footer,
nav,
aside {
  display: block;
}

/*************** Blockquote Reset ************************/
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/*************** Horizontal Rule Reset ************************/
hr {
  border: 0;
  height: 0;
  background: none;
}

/*************** Other Resets ************************/
fieldset {
  border: none;
}

legend {
  display: none;
}

/* <i> font style reset */
i {
  font-style: normal;
}