/*===============================================================================================================================*/
/*                                                            RESET.CSS                                                          */
/*===============================================================================================================================*/
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;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, form {
    -webkit-text-size-adjust: 100%;
    height: 100%;
    min-height: 100%;
}

body {
    line-height: 1;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 100%;
    font-weight: 400;
    color: #111111;
    background: url("../Images/bkg_fixed-body.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    position: relative;
    height: 100%;
    line-height: 1.3;
}

ol, ul {
    list-style: none;
    margin-left: 30px;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Typography/Lists etc -------------------------------------------------------------------------------------------------------- */
strong {
    font-weight: 700;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: .9em;
}

p.large {
    font-size: 1.1em;
    font-weight: 500;
}

p + p {
    margin-top: 1em;
}

a {
    text-decoration: underline;
    color: #004C5A;
    -webkit-transition: color,background 0.2s;
    -o-transition: color,background 0.2s;
    transition: color,background 0.2s;
}

a:hover {
    text-decoration: none;
}

@media only screen and (max-width : 844px) {

    h1 {
        font-size: 2em;
        margin-bottom: 16px;
    }
}

@media only screen and (max-width : 480px) {

    h1 {
        font-size: 1.8em;
    }
}

/*===============================================================================================================================*/
/*                                                            WEBSITE.CSS                                                        */
/*===============================================================================================================================*/
.container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    align-items: stretch;
    align-content: space-between;
}

/* Sitebranding/Navigation ----------------------------------------------------------------------------------------------------- */
div.header-wrapper {
    position: relative;
    padding: 2em 2em 0;
}

div.sitebranding {
    width: 118px;
    height: 70px;
}

.sitebranding img {
    width: 100%;
}

@media only screen and (max-width : 844px) {

    div.sitebranding {
        text-align: center;
    }
}

@media only screen and (max-width : 480px) {

    div.header-wrapper {
        padding: 1.5em 1em 0;
    }

    div.sitebranding {
        width: 101px;
        height: 60px;
        margin: 0 auto;
    }
}

/* Main Content ---------------------------------------------------------------------------------------------------------------- */
div.content-wrapper {
    width: auto;
    height: auto;
    padding: 0;
    position: relative;
    flex: 1;
}

article.main {
    position: relative;
    width: auto;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 3.125em 2em;
    display: -webkit-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.intro {
    flex: 1;
    color: white;
    padding-right: 3em;
}

.intro p.large {
    font-size: 1.3em;
    font-weight: 500;
}

.intro p {
    font-size: 1em;
    font-weight: 400;
}

.delivery-form {
    width: 100%;
    max-width: 400px;
    min-height: 371px;
    padding: 1.5em;
    background-color: white;
    border-radius: 10px;
    color: black;
    -webkit-box-shadow: 0 10px 15px -3px rgb(0 0 0 / 15%),0 4px 6px -2px rgb(0 0 0 / 10%);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 15%),0 4px 6px -2px rgb(0 0 0 / 10%);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.form-inner {
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    flex: 1;
    height: 100%;
}

.action-container img {
    max-height: 80px;
    margin-bottom: 1.5em;
}

.action-container p {
    text-align: center;
    color: #444444;
}

.action-container p:last-child {
    margin-bottom: 0;
}

.ui-message {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 1em 0;
    padding: 1em;
    background: rgba(255,255,255,.2);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.5);
}

.ui-message-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.ui-message-content p {
    line-height: 1.4;
}

.ui-message-icon {
    width: 50px;
    height: 50px;
    margin-right: 1em;
}

@media only screen and (max-width : 844px) {
    article .main {
        padding: 2em;
        flex-direction: column;
        justify-content: flex-start;
    }

    .intro {
        flex: 0;
        text-align: center;
        padding-right: 0;
        padding-bottom: 2em;
    }

    .form-inner {
        min-height: 0;
        height: auto;
    }
}

@media only screen and (max-width : 844px) {

    article.main {
        padding: 2em 1em;
    }

    .intro {
        padding-bottom: 1em;
    }

    .intro p.large {
        font-size: 1.1em;
    }
}

@media only screen and (max-width : 480px) {

    article.main {
        padding: 1.5em 1em;
    }
}

/* Form Sections --------------------------------------------------------------------------------------------------------------- */
.form-section {
    width: 100%;
    height: auto;
}

.form-input-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start
}

.form-input-group + p {
    margin: .5em 0;
}

.form-input {
    position: relative;
    width: 100%;
}

.form-input + .form-input {
    margin-top: .5em;
}

label {
    position: relative;
    display: inline-block;
    width: auto;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 500;
    font-size: .85em;
    margin-bottom: 5px;
    line-height: 1.3;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

label.focussed {
    color: #004C5A;
}

.error label {
    color: #b51220
}

cite {
    font-weight: 700;
    font-size: 1em;
    color: red;
}

input.form-textbox {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: .85em;
    width: 100%;
    max-width: 100%;
    padding: .35em .625em;
    color: #272727;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.error input.form-textbox {
    border-color: #b51220;
}

textarea.form-textarea {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: .85em;
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 100px;
    padding: .35em .625em;
    color: #272727;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border 0.2s ease-out;
    -o-transition: border 0.2s ease-out;
    transition: border 0.2s ease-out;
}

input.form-textbox:hover {
    border-color: #cccccc;
}

input.form-textbox:focus,
input.form-textbox:active,
input.form-textarea:focus,
input.form-textarea:active {
    outline: 0;
    border-color: #004C5A;
    -webkit-box-shadow: 0 0 1px 1px #004C5A;
    box-shadow: 0 0 1px 1px #004C5A;
}

input.form-textbox:disabled {
    background: #eaeaea;
}

::-webkit-input-placeholder {
    color: #555;
}

::-moz-placeholder {
    color: #555;
}

:-ms-input-placeholder {
    color: #555 !important;
}

::-webkit-input-placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

::-moz-placeholder {
    opacity: 1;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

:-ms-input-placeholder {
    opacity: 1;
    -ms-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

::-ms-input-placeholder {
    opacity: 1;
    -ms-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

::placeholder {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
}

*:focus::-webkit-input-placeholder {
    opacity: 0;
}

*:focus::-moz-placeholder {
    opacity: 0;
}

*:focus:-ms-input-placeholder {
    opacity: 0;
}

/* Select Dropdowns ------------------------------------------------------------------------------------------------------------ */
select {
    width: 100% !important
}

.select-css {
    display: block;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
    font-size: .85em;
    color: #272727;
    padding: .35em 1.4em .35em .8em;
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z' fill='%23667080'/%3E%3C/svg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.error .select-css {
    border-color: #b51220;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    z-index: 10;
}

.select-label {
    position: absolute;
    z-index: -1;
    left: 1.25em;
    top: 0;
}

/* Hover style */
.select-css:hover {
    border-color: #CCCCCC;
}

/* Focus style */
.select-css:focus {
    outline: none;
    -webkit-box-shadow: 0 0 1px 1px #004C5A;
    box-shadow: 0 0 1px 1px #004C5A;
    border-color: #004C5A;
}

/* Set options to normal weight */
.select-css option {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1em;
    padding: 15px 0;
    display: block;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
    background-position: left .7em top 50%, 0 0;
    padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
    color: #0a0a0a;
    background-color: #eaeaea;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
    border-color: #aaa;
}

/* Buttons --------------------------------------------------------------------------------------------------------------------- */
.button-area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-top: 1em;
}

input.primary-button {
    height: 36px;
    margin: 0;
    outline: 0;
    border: 0;
    border-radius: 100vh;
    border: 2px solid #004C5A;
    font-size: .95em;
    font-weight: 500;
    -webkit-transition: background-color 0.2s ease-out;
    -o-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    -webkit-appearance: none;
    cursor: pointer;
    white-space: normal;
    text-align: left;
}

input.primary-button {
    color: white;
    padding: 0 48px 0 20px;
    background-position: right;
    background-repeat: no-repeat;
    background-color: #004C5A;
}

input.primary-button.send {
    background-size: 22px;
    background-position: right 10px center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M3.063 13.5q-.062.241-.063.5v3.874a2 2 0 0 0 2.838 1.816l14.695-6.782a1 1 0 0 0 0-1.816L5.838 4.31A2 2 0 0 0 3 6.126V10a2 2 0 0 0 2 2 2 2 0 0 0-1.937 1.5M5 12V6.126L17.727 12 5 17.874z'/%3E%3Cpath d='M14 12.5H5v-1h9a.5.5 0 0 1 0 1'/%3E%3C/svg%3E");  
}

input.primary-button.start-over {
    background-size: 22px;
    background-position: right 10px center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M4 11.99H2.21c-.45 0-.67-.54-.35-.85l2.79-2.8c.2-.2.51-.2.71 0l2.79 2.79c.31.32.09.86-.36.86H6c0 3.31 2.69 6 6 6 .79 0 1.56-.15 2.25-.44.36-.15.77-.04 1.04.23.51.51.33 1.37-.34 1.64-.91.37-1.91.57-2.95.57-4.42 0-8-3.58-8-8m14 0c0-3.31-2.69-6-6-6-.79 0-1.56.15-2.25.44-.36.15-.77.04-1.04-.23-.51-.51-.33-1.37.34-1.64.91-.37 1.91-.57 2.95-.57 4.42 0 8 3.58 8 8h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.51.2-.71 0l-2.79-2.79a.5.5 0 0 1 .36-.85z'/%3E%3C/svg%3E");
}

input.primary-button:disabled {
    background-color: #ccc;
    cursor: default;
    opacity: 0.7;
    pointer-events: none;
}

input.primary-button.send:hover, input.primary-button.send:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23004C5A' viewBox='0 0 24 24'%3E%3Cpath d='M3.063 13.5q-.062.241-.063.5v3.874a2 2 0 0 0 2.838 1.816l14.695-6.782a1 1 0 0 0 0-1.816L5.838 4.31A2 2 0 0 0 3 6.126V10a2 2 0 0 0 2 2 2 2 0 0 0-1.937 1.5M5 12V6.126L17.727 12 5 17.874z'/%3E%3Cpath d='M14 12.5H5v-1h9a.5.5 0 0 1 0 1'/%3E%3C/svg%3E");
}

input.primary-button.start-over:hover, input.primary-button.start-over:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23004C5A' viewBox='0 0 24 24'%3E%3Cpath d='M4 11.99H2.21c-.45 0-.67-.54-.35-.85l2.79-2.8c.2-.2.51-.2.71 0l2.79 2.79c.31.32.09.86-.36.86H6c0 3.31 2.69 6 6 6 .79 0 1.56-.15 2.25-.44.36-.15.77-.04 1.04.23.51.51.33 1.37-.34 1.64-.91.37-1.91.57-2.95.57-4.42 0-8-3.58-8-8m14 0c0-3.31-2.69-6-6-6-.79 0-1.56.15-2.25.44-.36.15-.77.04-1.04-.23-.51-.51-.33-1.37.34-1.64.91-.37 1.91-.57 2.95-.57 4.42 0 8 3.58 8 8h1.79c.45 0 .67.54.35.85l-2.79 2.79c-.2.2-.51.2-.71 0l-2.79-2.79a.5.5 0 0 1 .36-.85z'/%3E%3C/svg%3E");
}

input.primary-button:hover,
input.primary-button:focus {
    background-color: transparent;
    color: #004C5A;
}

/* Errors ---------------------------------------------------------------------------------------------------------------------- */
.errormessage {
    font-size: .85em;
    line-height: 1.3;
    margin: 5px 0 0 0;
    padding: .5em;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    color: #b51220;
    background-color: #fde8ea;
    border-color: #f5c6cb;
    width: 100%;
}

/* Footer ---------------------------------------------------------------------------------------------------------------------- */
div.footer-wrapper {
    width: auto;
    height: 60px;
    padding: 0 20px;
    position: relative;
}

div.footer-wrapper p {
    font-size: .85em;
    color: white;
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0;
}

footer.main {
    width: auto;
    margin: 0 auto;
    padding-bottom: 1em;
}
