* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  background-color: transparent;
  box-shadow: none;
}

a {
  text-decoration: none !important;
}

mark {
  background-color: transparent;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

button {
  border: none;
  display: inline-block;
  background-color: transparent;
  transition: all .3s linear;
  cursor: pointer;
}

button:hover>i[class*="icon-"] {
  background-color: #f1902c;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

table {
  width: 100%;
  caption-side: bottom;
  border-collapse: collapse;
}
ins {
  text-decoration: none;
  background-color: #d4fcbc;
}

del {
  text-decoration: line-through;
  background-color: #ff975f;
  color: #8d4646;
}