/* Reset Box Model */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Remove default margins */
body, h1, h2, h3, h4, h5, h6, p, blockquote, figure {
    margin: 0;
    padding: 0;
}

/* Remove list styles */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left:0 !important;
}

/* Reset hyperlinks */
a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

a:hover, a:focus {
    text-decoration: none;
    color: #337ab7; /* Bootstrap 3 default link color */
}

/* Reset Buttons */
button, input, select, textarea {
    font: inherit;
    margin: 0;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Remove outline on focused elements */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Reset Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    padding: 0;
}

/* Reset Images */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    display: block;
}

/* Normalize Forms */
input, textarea, select {
    width: 100%;
    font-family: inherit;
}

/* Remove default Bootstrap 3.2 button styles */
.btn {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Reset Bootstrap 3.2 Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.2;
}
