/*****************************************************
LESS compilation failed due a JavaScript error!

Input: /apps/atvi/callofduty/warzonemobile/components/pages/legal/clientlibs/css/general.less
Error: NameError: .container-responsive is undefined in /apps/atvi/callofduty/warzonemobile/components/pages/legal/clientlibs/css/general.less on line 11, column 5:
10     padding: 100px 0;
11     .container-responsive(true);
12 


(uncompiled LESS src is included below)
*****************************************************/
@import "/apps/atvi/callofduty/warzonemobile/core/utils/all.less";

#wzmobile-header {
	display: none; //hide header on all legal/sweepstake pages
}

.legal-container {

    background: black;
    padding: 100px 0;
    .container-responsive(true);

    h1 {
		.section-header();
        margin-bottom: 30px;
    }

    h4 {
		.sub-header();
        margin-bottom: 5px;
    }

    p {
        margin-bottom: 15px;
    }

    sup {
        line-height: 1.3em;
    }

    ul, ol {
        margin-left: 3.5vw;
        margin-bottom: 15px;
    }
    ul {
        list-style: disc;
    }
    ol {
        list-style: auto;

        &.lettered { // uppercase lettered formatting
            list-style-type: upper-alpha;
        }
        &.parentheses { // numbered with right parentheses
            list-style: none;
            counter-reset: list;
            position: relative;

            li:before {
                content: counter(list) ") ";
                counter-increment: list;
                position: absolute;
                left: -2em;
            }
        }
    }

    .legal-cta {
        a {
			.body-txt();
            text-align: left !important;
            color: #d2d4cd;
        }
    }

    .wzm-cta-nav {
        //display: none;
    }
}
