/*
Theme Name: Boilerplate
Theme URI: https://drapersclub.com/
Author: Pankaj@Drapersclub
Author URI: https://drapersclub.com/
Description: A modern, modular boilerplate theme for WordPress and WooCommerce.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boilerplate
Tags: woocommerce, e-commerce, custom-logo, custom-menu, featured-images, translation-ready
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 CSS Reset
    - Box Sizing
    - Reset Margins and Padding
    - Typography and Elements
    - Media Defaults
    - Form Resets
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 CSS Reset
--------------------------------------------------------------*/

/* Box Sizing
--------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset Margins and Padding
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
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: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers
--------------------------------------------- */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Typography and Elements
--------------------------------------------- */
body {
    line-height: 1;
}

ol, ul {
    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;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Media Defaults
--------------------------------------------- */
img,
video,
iframe,
object,
embed {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Form Resets
--------------------------------------------- */
input,
button,
textarea,
select {
    font: inherit;
    margin: 0;
    appearance: none;
    border-radius: 0;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/*--------------------------------------------------------------
2.0 Layout Containers
--------------------------------------------------------------*/

/* Basic container: 1rem padding on left and right */
.container, .content-area {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* Relaxed container: 90% width on wide screens, 96% on smaller screens */
.container-relax {
    width: 90%;
    padding-left: 2%;
    padding-right: 2%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 1024px) {
    .container-relax {
        width: 96%;
        padding-left: 2%;
        padding-right: 2%;
    }
}
