:root {
    /* body colors  */
    --bodyBG: #fff;
    /* nav colors */
    --navIcon: #575c5f;
    --navBG: #fff;
    --navHover: #ea1916;

    /* form colors */
    /* main text color */
    --bodyText: #000;
    --formText: #333;
    --formColorBG: #fff;
    --formBorder: #ea1916;
    --formBtnBG: #ea1916;
    --transparent: #0000;
    --mandatoryStar: #ea1916;
    --errorRed: #ea1916;
    --a: #fff;

    --red: #ea1916;
    --textWhite: #fff;
    --cream: #efece4;
    --pink: #ff9bac;
    --darkGrey: #333333;
    /* footer colors */
    --footerBG: #333333;
    --footerHover: #575c5f;

    /* font */

    /* this one placed on the body... changes the form fields, text, form labels , btns, error msg etc.  */
    --mainFont: 'LGEIHeadline-Regular', sans-serif;
    /* this changes the font for the input form fields */
    --inputFont: 'LGEIHeadline-Light', sans-serif;
}

@font-face {
    font-family: 'Nunito Sans';
    src: url('/fonts/nunitoExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'LGEIHeadline-Bold';
    src: url('/fonts/LGEIHeadline-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'LGEIHeadline-Regular';
    src: url('/fonts/LGEIHeadline-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LGEIHeadline-Light';
    src: url('/fonts/LGEIHeadline-Light.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}

body {
    margin: 0;
    font-size: 16px;
    background: var(--bodyBG);
    color: var(--bodyText);
    font-family: var(--mainFont);
    font-weight: 400;
    font-style: normal;
}

input[type=text],
select,
textarea,
button {
    font-family: var(--inputFont);
}

a {
    color: inherit;
    text-decoration: underline;
    word-wrap: break-word;
    color: var(--a);
}

select::-ms-expand {
    display: none;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pb::before {
    content: "";
    display: block;
    padding-top: 1px;
    margin-bottom: 30px;
}

.pa::after {
    content: "";
    display: block;
    padding-bottom: 1px;
    margin-top: 30px;
}

/* .main {
	min-height: calc(100vh - 235px);
} */

@media screen and (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .pb::before {
        margin-bottom: 20px;
    }

    .pa::after {
        margin-top: 20px;
    }
}

.alignL {
    text-align: left;
}

.alignC {
    text-align: center;
}

.alignR {
    text-align: right;
}

.clear {
    display: block;
    clear: both;
}

.title_XL {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1
}

.title_L {
    font-size: 41px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1
}

.title_M {
    font-size: 27px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1
}

.title_S {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1
}

.title_XS {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.1
}

.largeText {
    font-size: 1.3em;
}

.smallText {
    font-size: 0.9em;
}

header {
    position: relative;
    /* height: 85px; */
    background: var(--cream);
}

a.navButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px 40px;
    z-index: 12
}

a.navButton b {
    position: relative;
    display: block;
    width: 40px;
    height: 23px;
}

/* nav bar three lines */
a.navButton b i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s;
    background: var(--navIcon);
}

a.navButton b i:nth-child(1) {
    top: 0;
}

a.navButton b i:nth-child(2) {
    top: 10px;
}

a.navButton b i:nth-child(3) {
    top: 10px;
}

a.navButton b i:nth-child(4) {
    bottom: 0;
}

a.navButton:hover b i {
    background: var(--navHover);
}

a.navButton.open {
    position: fixed;
}

a.navButton.open span {
    background: black;
    outline: none;
}

/* the navbar cross this also does the nav text color */
a.navButton.open b i {
    background: var(--navIcon);
}

a.navButton.open:hover b i {
    background: var(--navHover);
}

a.navButton.open b i:nth-child(1) {
    top: 50%;
    width: 0;
    left: 50%;
}

a.navButton.open b i:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.navButton.open b i:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

a.navButton.open b i:nth-child(4) {
    bottom: 50%;
    width: 0;
    left: 50%;
}

.nav {
    position: fixed;
    display: block;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s;
}

.nav>div {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
}


.nav>div>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    padding-top: 90px;
    /* this is the background color for the nav */
    background: var(--navBG);
    box-sizing: border-box;
}

.nav>div>div .navContainer {
    position: absolute;
    top: 0;
    bottom: 55px;
    left: 0;
    width: 100%;
    overflow: auto;
    padding-top: 85px;
}

.nav>div>div .navContainer ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav>div>div .navContainer ul li {
    position: relative;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav>div>div .navContainer ul li a {
    position: relative;
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 20px;
    color: var(--navIcon);
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
}

.nav>div>div .navContainer ul li a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    box-sizing: border-box;
    border-style: solid;
    /* text Color for the nav */
    border-color: var(--formBorder);
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    opacity: 0.5;
    transition: all 0.3s;
}

.nav>div>div .navContainer ul li a:hover {
    padding-left: 25px;
}

.nav>div>div .navContainer ul li a:hover::after {
    opacity: 1;
}

.nav>div>div .socials {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0 20px 0;
    text-align: center;
}

.nav>div>div .socials a {
    display: inline-block;
    position: relative;
    font-size: 22px;
    color: #fff;
    padding: 15px 0;
    line-height: 0;
    width: 30px;
    vertical-align: middle;
    text-align: center;
    background: #222;
    border-radius: 3px;
    text-decoration: none;
    margin: 0 5px;
    transition: all 0.2s;
}

.nav>div>div .socials a:hover {
    transform: scale(1.1);
    background: #111;
}

.nav>div>div .socials a.fa-facebook:before {
    position: absolute;
    bottom: 9px;
    right: 5px;
    font-size: 26px;
}

.nav.open>div {
    width: 300px;
}

.nav.open {
    pointer-events: all;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 600px) {
    a.navButton {
        padding: 25px 20px;
    }

    .nav>div>div .navContainer {
        padding-top: 70px;
    }
}

@media screen and (max-height: 500px) {
    .nav>div>div .navContainer ul li a {
        padding: 10px 20px;
    }
}

@media screen and (max-height: 420px) {
    .nav>div>div .navContainer ul li a {
        padding: 8px 20px;
        font-size: 18px;
    }
}

.banner {
    position: relative;
    padding-bottom: 23.55%;
    background: url("../img/banner.jpg") center no-repeat #000;
    background-size: cover;
}

@media screen and (max-width: 1000px) {
    .banner {
        padding-bottom: 59.7%;
        background-image: url("../img/banner2.jpg");
    }
}

.buttonContainer {
    position: relative;
    margin: 20px 0;
}

.buttonContainer a,
.buttonContainer button {
    display: inline-block;
    position: relative;
    font-size: 18px;
    padding: 10px 20px;
    min-width: 160px;
    background: #000;
    color: #fff;
    text-align: center;
    border: none;
    outline: none;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.formContainer.waiting .buttonContainer button:after {
    border: 4px solid rgba(0, 0, 0, 0.5);
    border-top: 4px solid #000;
}

.faqs {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
}

.faqs .faq {
    margin: 10px 0;
}

.faqs .faq>a {
    display: block;
    position: relative;
    background: #ffc20e;
    border-radius: 3px;
    padding: 30px 20px;
    color: #212121;
    text-decoration: none;
    font-weight: 700;
}

.faqs .faq>div {
    position: relative;
    height: 0;
    overflow: hidden;
}

.faqs .faq>div>div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    background: #f4f6f8;
    border-radius: 4px;
}

.faqs .faq>div>div:before {
    content: "";
    display: block;
    padding-top: 1px;
    margin-bottom: 20px;
}

.faqs .faq>div>div:after {
    content: "";
    display: block;
    padding-bottom: 1px;
    margin-top: 30px;
}

.faqs .faq.open>div {
    height: auto;
}

.faqs .faq.open>div>div {
    position: relative;
}

footer {
    position: relative;
    background: var(--footerBG);
    min-height: 150px;
    color: var(--textWhite);
}

footer .legal {
    opacity: .85;
    font-size: 14px;
}

footer ul {
    padding: 0;
    margin: 15px auto;
    text-align: center;
    margin-top: 0;
}

footer ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    margin: 10px;
}

footer ul li a {
    text-decoration: none;
    transition: all .3s;
    font-weight: 600;
    font-size: 18px;
}

footer ul li a:hover {
    color: var(--footerHover);
}

table {
    margin: 10px 0;
    border: 1px solid #ccc;
    border-collapse: collapse
}

table td,
table th {
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-align: left;
}

table th {
    font-weight: 700;
}

.cookie {
    display: none;
}

.cookie.active {
    position: fixed;
    z-index: 10;
    display: block;
    overflow: hidden;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 40%)
}

.cookie.active .cookieInner {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    background: var(--bodyBG);
    pointer-events: all;
    color: var(--mainFont);
    font-size: 14px;
    border: solid 1px var(--formBorder);
}

.cookie.active .cookieInner .bottom {
    margin-top: 20px;
}

.cookie.active .cookieInner:before {
    content: "";
    padding-top: 1px;
    margin-bottom: 15px;
    display: block;
}

.cookie.active .cookieInner:after {
    content: "";
    padding-bottom: 1px;
    margin-top: 15px;
    display: block;
}

.cookie.active .buttonContainer {
    margin: 20px 0;
}

.cookie.active .cookieInner a {
    color: var(--bodyText);
}

.cookie.active .cookieInner a.cookieCta {
    display: inline-block;
    position: relative;
    font-size: 17px;
    padding: 10px 20px;
    border-radius: 0;
    margin-top: 10px;
    background: transparent;
    border: 2px solid var(--formBorder);
    color: var(--bodyText);
    text-align: center;
    outline: none;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    margin-left: 10px;
    cursor: pointer;
}

@media screen and (max-width: 450px) {
    .cookie.active .cookieInner:before {
        margin-bottom: 20px;
    }

    .cookie.active .cookieInner:after {
        margin-top: 20px;
    }
}

#modal.cookies .inner {
    max-width: 900px;
}

#modal.cookies .inner .formContainer {
    max-width: 100%;
}

#modal.cookies .inner .formContainer label {
    font-size: 16px;
    margin-left: 10px;
    margin-top: -2px;
    padding-right: 15px;
}


.formContainer .field.switch .checkboxContainer>a {
    width: 34px;
    height: 20px;
    border-radius: 10px;
    transition: all 0.2s;
    background: #cb3525;
    border: none;
    outline: none;
    box-shadow: none;
}

.formContainer .field.switch .checkboxContainer>a i {
    position: absolute;
    top: 3px;
    left: 3px;
    background: #fff;
    width: 16px;
    height: 14px;
    border-radius: 7px;
    transition: all 0.2s;
}

.formContainer .field.switch .checkboxContainer.checked>a {
    background: #7cab29
}

.formContainer .field.switch .checkboxContainer.checked>a i {
    left: 16px;
}

.formContainer .field.switch .checkboxContainer>a i:before {
    display: none;
}

.formContainer .field.switch .checkboxContainer>a i:after {
    display: none;
}

.formContainer .field.field_cookiesEssential.switch .checkboxContainer {
    pointer-events: none;
}

.formContainer .field.field_cookiesEssential.switch .checkboxContainer>a {
    border-color: #c2c3c5;
    background: #c2c3c5;
    pointer-events: none;
}

.formContainer .field.field_cookiesEssential.switch .checkboxContainer>a i {
    background: #fff;
}

#modal.cookies .inner .formContainer label .concertina>div {
    display: flex;
    justify-content: space-between;
}

#modal.cookies .inner .formContainer label .concertina>div>div {
    padding-right: 15px;
}

#modal.cookies .inner .formContainer label .concertina a {
    pointer-events: all;
    white-space: nowrap;
    flex-grow: 0;
}

#modal.cookies .inner .formContainer label .concertina .opener {
    position: relative;
    display: block;
    height: 0;
    overflow: hidden;
}

#modal.cookies .inner .formContainer label .concertina .opener>div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#modal.cookies .inner .formContainer label .concertina.open .opener {
    height: auto;
}

#modal.cookies .inner .formContainer label .concertina.open .opener>div {
    position: relative;
}

@media screen and (max-width: 550px) {
    #modal.cookies .inner .formContainer label .concertina>div {
        flex-direction: column;
    }

}

.cookies .buttons {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.cookies .buttons>button {
    display: block;
    padding: 20px 5px;
    min-width: 48%;
    min-width: calc(50% - 15px);
    color: #333;
    border: 1px solid #1c2025;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    background: white;
    font-family: inherit;
    font-size: 18px;
    cursor: pointer;
}

.cookies .buttons>button:last-child {
    background: var(--red);
    color: #fff;
}

@media screen and (max-width: 750px) {
    .cookies .buttons {
        display: block;
    }

    .cookies .buttons>button {
        width: 100%;
        min-width: 0;
        margin: 5px 0;
        padding: 10px 5px;
    }

}

#modal.cookies .inner {
    max-width: 900px;
}

#modal.cookies .inner .formContainer {
    max-width: 100%;
}

.validationChecks {
    display: none !important;
}

.addressList ul li {
    text-decoration: none;
    list-style: none;
    padding-block: 8px;
    padding-left: 8px;
}

.addressList ul li:nth-child(odd) {
    background-color: #e2dddd;
}

.addressList ul li:hover {
    background-color: #b0a8a8;
}

.addressList ul {
    padding-left: 0;
}

.addressList .title {
    font-weight: bold;
}

.addressList ul li a {
    width: 100%;
    height: 100%;
    display: block;
}

.postcodeLookupContainer .pclManualLink {
    max-width: 200px;
}

.formContainer .focused {
    box-shadow: 0 0 2px 2px #999999;
}

.postcodeLookupContainer .pclButton {
    color: #ffffff;
}







/* new form styling */



/* button color and background */
.buttonContainer a,
.buttonContainer button {
    background: var(--formBtnBG);
    color: #fff;
    border-radius: 50px;
    transition: color .4s, background-color .4s;
    border: 1px solid var(--formBorder);

}

/* hover effect on button, recommend to reverse color from normal button, to match to brand or delete if not necessary */
.buttonContainer button:hover {
    color: var(--formBtnBG);
    background-color: var(--transparent);
}

/* check boxes */

/* the color of the tick for checkboxes */
.formContainer .checkboxContainer.checked>a i {
    color: var(--formBorder);
}

/* for the border of the checkbox but this can be also where the height, width, positioning of checkbox can be changed.  */
.formContainer .checkboxContainer>a {
    border: 1px solid var(--formBorder);
}

/* end of checkboxes */


/* multi uploader */
/* multi upload button  you can change padding, font size etc.*/
.formContainer .multiUploaderContainer a.uploadLink {
    color: var(--formColorBG);
    background: var(--formBtnBG);
    border: 1px solid var(--formBorder);
    transition: color .4s, background-color .4s;
    border-radius: 50px;
}

/* upload b hover effect can be deleted if not wanted */
.formContainer .multiUploaderContainer a.uploadLink:hover {
    color: var(--formBtnBG);
    background: var(--transparent);
}

/* can change the size of whats each individual pic of inside uploader also border  bg of ones that are not loaded in */
.formContainer .multiUploaderContainer .thumbs .thumb>div {
    border: 1px solid var(--formText);
}

/* the mock camera inside of each change the font size to make camera bigger or smaller */
.formContainer .multiUploaderContainer .thumbs .thumb>div>i {
    color: var(--formText);

}

/* progress bar for uploading the images can change size of the bar */
/* .formContainer .multiUploaderContainer .thumbs .thumb>div>div.progress {
} */
/* to change the color of the progress bar */
.formContainer .multiUploaderContainer .thumbs .thumb>div>div.progress div {
    background: var(--formText);
}

/* container of the of multi upload  can change height, width, bg, padding, border*/
.formContainer .multiUploaderContainer .thumbs {
    border: 1px solid var(--formBorder);
}

/* empy camera and and text  in multi upload  can change position of it */
.formContainer .multiUploaderContainer .thumbs .empty {
    color: var(--bodyText);
}

.formContainer .multiUploaderContainer .thumbs .empty i {
    color: var(--formBtnBG);
}

/* select form field */

/* where you can change the font size of the options and the color of the options */
.formContainer select {
    color: var(--formText);
    font-size: 1em;
    background: #fff;
}

/* for the select border */
.selectContainer {
    border: 1px solid var(--formBorder);
}

/* this is where the select arrorw / chevron is selected */
.formContainer .selectContainer i.arrow {
    color: var(--formText);
}

/* for the select label where you can chane font size, padding, color and positioning */
.formContainer .floatingLabel label {
    color: var(--formText);
}



/* text area */

/* This class is where you can change the color, bg, font size, padding and size of the text area box */
.formContainer textarea {
    border: 1px solid var(--formBorder);
    color: var(--formText);
}

/* radio button */
/* This is for the size of the radio btn, and border */
.formContainer .radioContainer .radio>a {
    border: 1px solid var(--formBtnBG);
}

/* this is whats on the radio button itself, can change the size, color etc */
.formContainer .radioContainer .radio.checked>a:after {
    background: var(--formBtnBG);
}

/* drop down list  */

/* text input and labels*/

/* text input color */
.formContainer .field .inputContainer {
    color: var(--formText);

}

/* inside text input, text color, border, change font size here, aad padding for for inside form field */
.formContainer input[type="text"] {
    color: var(--formText);
    background: var(--formColorBG);
    font-size: 1em;
    padding: 10px;
    line-height: 1;
    /* border: 1px solid var(--formBorder); */
    /* uncomment below to have border radius for more oval looking form field */
    border-radius: 50px;
}

/* can change font size for the label also positioning of where the label is */
.formContainer label {
    padding-left: 0px;
}

/* this is the mandatory star "*" you can change the color for it here or add padding */
.formContainer label .mandatory {
    color: var(--mandatoryStar);
}

/* change the mandatory fields text */
.mandatoryFields {
    color: var(--formText);
}

/* end of input and labels*/



/* error color */
/* this is where the error color and positioning can be changed. */
.formContainer .error {
    color: var(--errorRed);
}

/* date */
/* the label on the date, can change font size for when an option had been selected*/
.formContainer .floatingLabel.active>.label {
    font-size: 1em;
}



/* end of date */

/* postcode */

.formContainer .postcodeLookupContainer .pclButton {
    background: var(--formBtnBG);
    color: var(--formColorBG);
    border: 1px solid var(--formBorder);
    transition: color .4s, background-color .4s;
}

.formContainer .postcodeLookupContainer .pclButton:hover {
    background: var(--transparent);
    color: var(--formText);
}


/* form margin */

/* inside form padding */

/* title tags / labels */

/* header ?? */

/* logo */
.logo {
    display: inline-block;
    height: 45px;
    margin: 20px;
}

.logo>i {
    background: url(/img/lgLogo.svg) left no-repeat;
    background-size: contain;
    display: block;
    width: 44px;
    height: 40px;
}