/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
.cf,
.clearfix {
    zoom: 1;
}
.cf:after,
.cf:before,
.clearfix:after,
.clearfix:before {
    display: table;
    content: "";
}
.cf:after,
.clearfix:after {
    clear: both;
}
* {
    box-sizing: border-box;
}
.image-replacement,
.ir {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
p {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: none;
    hyphens: none;
    -webkit-hyphenate-before: 2;
    -webkit-hyphenate-after: 3;
    hyphenate-lines: 3;
    -ms-font-feature-settings: "liga", "dlig";
    -o-font-feature-settings: "liga", "dlig";
    font-feature-settings: "liga", "dlig";
}
.foo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.foo-parent {
    position: relative;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.treacle-partners {
    display: block;
    margin: 1em 0;
    text-align: center;
    width: 100%;
}

.treacle-partners ul {
    margin: 0 auto;
    padding: 0;
    width: 80%;
    text-align: center;
    list-style: none;
    vertical-align: middle;
}

.treacle-partners li {
    width: 80%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    padding: 1em;
}

#content {
    position: relative;

}

.listing-breadcrumbs {
    margin: .5em 0;
    font-size: 1.1em;
    font-weight: 500;
    text-align: left;
}

.listing-breadcrumbs a {
    color: white !important;
}

@supports (grid-area: auto) {
    .grid {
        display: grid;
        margin: 0 auto;
        width: 100%;
        height: 100vh;
        grid-gap: 12px;
    }
    .grid #content {
        flex: 1;
        background-color: ghostwhite;
    }
    .grid aside {
        background-color: honeydew;
        min-height: 80px;
    }
    .grid #footer {
        background-color: powderblue;
    }
    .grid-aside {
        grid-template-rows: auto 1fr auto;
    }
    @media only screen and (min-width: 768px) {
        .grid-aside {
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: auto 1fr auto;
        }
        .grid-aside #footer,
        .grid-aside #header {
            grid-column: span 12;
        }
        .grid-aside #content {
            grid-column: 1/8;
        }
        .grid-aside aside {
            grid-column: 8/-1;
        }
        .grid-full {
            grid-template-columns: repeat(12, minmax(0, 1fr));
            grid-template-rows: auto 1fr auto;
        }
        .grid-full #footer,
        .grid-full #header {
            grid-column: span 12;
        }
        .grid-full #content {
            grid-column: 1/-1;
        }
        .grid-full aside {
            display: none;
        }
    }
    @media only screen and (min-width: 1170px) {
        .grid-aside #content {
            grid-column: 2/8;
        }
        .grid-aside aside {
            grid-column: 8/12;
        }
        .grid-full #content {
            grid-column: 0/12;
        }
    }
    @media only screen and (min-width: 1600px) {
        .grid-aside #content {
            grid-column: 3/8;
        }
        .grid-aside aside {
            grid-column: 8/11;
        }
        .grid-full #content {
            grid-column: 0/12;
        }
    }
}


.or {
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    color: white;
    margin: 0 auto;
    padding: 0;
    display: block;
}

.alert-error,
.alert-help,
.alert-info,
.alert-success {
    margin: 10px;
    padding: 5px 18px;
    border: 1px solid;
}
.alert-help {
    border-color: #e8dc59;
    background: #ebe16f;
}
.alert-info {
    border-color: #bfe4f4;
    background: #d5edf8;
}
.alert-error {
    border-color: #f8cdce;
    background: #fbe3e4;
}
.alert-success {
    border-color: #deeaae;
    background: #e6efc2;
}
.button,
.orange-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 0.5em;
    padding: 0.75em 2em;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
}
.button:active,
.orange-button:active {
    top: 1px;
}
.orange-button {
    background: #ffa700;
    color: #fff;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.2s ease-in all;
}
.orange-button:focus,
.orange-button:hover {
    background: #ffb933;
    text-decoration: none;
    color: #fff;
}

.white-button {
    background: #fff;
    color: #ffa700;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.2s ease-in all;
    border: none;
    border-radius: 10px;
    padding: .5em 1.25em;
}
.white-button:focus,
.white-button:hover {
    background: #fff;
    text-decoration: none;
    color: #ffb933;
}
.field,
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select,
textarea {
    display: block;
}
.field.is-disabled,
.field[disabled],
input[type="color"].is-disabled,
input[type="color"][disabled],
input[type="date"].is-disabled,
input[type="date"][disabled],
input[type="datetime-local"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime"][disabled],
input[type="email"].is-disabled,
input[type="email"][disabled],
input[type="month"].is-disabled,
input[type="month"][disabled],
input[type="number"].is-disabled,
input[type="number"][disabled],
input[type="password"].is-disabled,
input[type="password"][disabled],
input[type="search"].is-disabled,
input[type="search"][disabled],
input[type="tel"].is-disabled,
input[type="tel"][disabled],
input[type="text"].is-disabled,
input[type="text"][disabled],
input[type="time"].is-disabled,
input[type="time"][disabled],
input[type="url"].is-disabled,
input[type="url"][disabled],
input[type="week"].is-disabled,
input[type="week"][disabled],
select.is-disabled,
select[disabled],
textarea.is-disabled,
textarea[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}
input[type="password"] {
    letter-spacing: 0.3em;
}
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
select,
textarea {
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #ffc14d;
    padding: 0.75em 1em;
    margin: 0 0 0.5em 0;
    outline: 0;
    line-height: 1;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-sizing: border-box;
    background-clip: padding-box;
    transition: 0.3s ease-out all;
    text-align: left;
    width: 100%;
    font-size: 1.1em;
    font-family: inherit;
    color: #ffa700;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
    border: 1px solid #ffa700;
    box-shadow: 0 0 0 1px #ffa700;
    outline: none;
}
label {
    font-size: 0.9em;
    padding: 0;
    margin: 0 0 0.25em 0;
    text-align: left;
    display: block;
}
textarea {
    max-width: 100%;
    width: 100%;
}
fieldset {
    border: 1px solid #ccc;
}
fieldset label {
    font-weight: 600;
}
fieldset p {
    margin-bottom: 0;
}
legend {
    padding: 0 0.5em;
}
.radio-buttons {
    margin-top: 0;
}
.radio-buttons li {
    margin-left: 2px;
    list-style-type: none;
}
.radio-buttons label {
    font-weight: normal;
}
html {
    font-size: 1em;
}
body {
    color: #ffffff;
    font-size: 100%;
    font-family: faricy-new-web, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
pre code {
    white-space: pre-line;
}
.wrap {
    margin: 0 auto;
    width: 98%;
}

.directory-wrap {
    width: 92%;
    margin: 0 auto;
}

a {
    transition: 0.1s ease-in all;
}
a {
    text-decoration: none;
    color: #fff;
}
a:focus,
a:hover {
    text-decoration: underline;
    color: #e6e6e6;
}
a:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    text-rendering: optimizelegibility;
}
.h1:before,
.h2:before,
.h3:before,
.h4:before,
.h5:before,
.h6:before,
h1:before,
h2:before,
h3:before,
h4:before,
h5:before,
h6:before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((0.7 - 1.2) * 0.5em);
}
.h1:after,
.h2:after,
.h3:after,
.h4:after,
.h5:after,
.h6:after,
h1:after,
h2:after,
h3:after,
h4:after,
h5:after,
h6:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((0.7 - 1.2) * 0.5em);
}
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}
.h1,
h1 {
    margin-top: 0;
    font-size: 3.157em;
}
.h2,
h2 {
    font-size: 2.369em;
}
.h3,
h3 {
    font-size: 1.777em;
}
.h4,
h4 {
    font-size: 1.333em;
}
.h5,
h5 {
    font-size: 1em;
}
.h6,
h6 {
    text-transform: uppercase;
    letter-spacing: 4.333px;
}
.flex-container {
    display: flex;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    -ms-align-content: flex-start;
    align-content: flex-start;
    position: relative;
}
.flex-15 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-33 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-20 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-25 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-50 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-60 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-75 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-80 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-10 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-85 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-40 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-100 {
    flex: 0 0 100%;
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    max-width: 100%;
}
.flex-15:after,
.flex-15:before,
.flex-20:after,
.flex-20:before,
.flex-25:after,
.flex-25:before,
.flex-33:after,
.flex-33:before,
.flex-40:after,
.flex-40:before,
.flex-50:after,
.flex-50:before,
.flex-60:after,
.flex-60:before,
.flex-75:after,
.flex-75:before,
.flex-100:after,
.flex-100:before,
.flex-container:after,
.flex-container:before {
    content: normal;
}
.header {
    background: url(../images/treacle-self-prescribing-health-happy-help-groups-information-directory.jpg) no-repeat;
    background-attachment: scroll;
    -moz-align-items: stretch !important;
    -ms-align-items: stretch !important;
    align-items: stretch !important;
    -ms-align-content: stretch !important;
    align-content: stretch !important;
    -moz-justify-content: stretch !important;
    -ms-justify-content: stretch !important;
    justify-content: stretch !important;
    -ms-flex-pack: stretch !important;
    background-position: center 120%;
    background-size: 140%;
    position: relative;
}
#inner-header {
    padding: 1em;
}
#lower-header {
    background: #ffa700;
    padding: 0.75em 3%;
    -moz-justify-content: space-around !important;
    -ms-justify-content: space-around !important;
    justify-content: space-around !important;
    -ms-flex-pack: space-around !important;
    -moz-align-items: center !important;
    -ms-align-items: center !important;
    align-items: center !important;
}
#logo {
    margin: 0 auto;
    text-align: center;
    display: block;
}
#logo img {
    width: 60%;
    height: auto;
    margin: 0.5em auto 0;
    text-align: center;
    display: inline-block;
}
#header-email {
    text-align: center;
    order: 1;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    display: none;
}
#header-email a {
    color: #fff;
    font-size: 1.1em;
    font-weight: 400;
    letter-spacing: 1px;
    vertical-align: middle;
    text-decoration: none;
}
#header-email a:hover {
    color: white;
}
#header-social {
    order: 2;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    display: none;
}
#site-tagline {
    text-align: center;
    position: relative;
    margin: 1em 0;
    order: 0;
    -webkit-box-ordinal-group: 0;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: 0;
}
#site-tagline h2 {
    color: #fff;
    font-size: 1.3em;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.starting-text {
    color: #ffa700;
    font-size: 1.8em;
    font-weight: 600;
    margin: 0 0 1em 0;
    padding: 0;
}

.starting-text i, .starting-text svg {
    font-size: .8em;
    margin-right: .25em;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: bounce-6;
    animation-timing-function: ease;
}

@keyframes bounce-6 {
    0%   { transform: scale(1,1)      translateY(0); }
    10%  { transform: scale(1.1,.9)   translateY(0); }
    30%  { transform: scale(.9,1.1)   translateY(-10px); }
    50%  { transform: scale(1.05,.95) translateY(0); }
    57%  { transform: scale(1,1)      translateY(-7px); }
    64%  { transform: scale(1,1)      translateY(0); }
    100% { transform: scale(1,1)      translateY(0); }
}
.social-icons {
    list-style: none;
    margin: 0.25em 0;
    padding: 0;
    text-align: center;
}
.social-icons li {
    display: inline;
    padding: 0.25em;
}
.social-icons li a {
    color: #fff;
    font-size: 1.4em;
}
.social-icons li a:hover {
    color: white;
}
.home-heading {
    text-align: center;
    margin-top: 0;
    position: relative;
}

.home-heading hgroup {
    position: relative;
    width: auto;
    text-align: center;
    margin: 0 auto;
}

.home-heading h1 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    background: #ffa700;
    padding: 1em .5em;
    line-height: 1;
    border-radius: 10px;
    vertical-align: middle;
    position: relative;
}

.home-heading h1:after {
    width: 0; 
    height: 0; 
    bottom: -15px;
    content: '';
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;    
    border-top: 15px solid #ffa700;
}

.home-heading h3 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}
.treacle-wheel {
    margin: 2em auto;
    text-align: center;
    background-image: url(../images/treacle-wheel.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
    width: auto;
}
.wheel {
    position: relative;
    list-style: none;
    margin: 30px auto;
    height: 0;
    padding: 0;
    padding-top: 98%;
    width: 98%;
    overflow: hidden;
}
.wheel:after {
    padding: 0.15em;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background: url(../images/treacle-icon.svg) no-repeat center, #afafaa;
    background-size: 40%;
    color: #ffa700;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 2em;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
    border: 3px solid #fff;
}
.wheel li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: url(#sector);
    clip-path: url(#sector);
    transition: 0.1s ease-in all;
}
.wheel li a {
    display: block;
    width: 100%;
    height: 100%;
}
.wheel li:hover {
    background-color: #fff;
}
.one {
    background-color: #fecd47;
    transform: rotate(0deg);
}
.one:hover h2,
.one:hover i,
.one:hover svg {
    color: #fecd47;
}
.two {
    background-color: #fd9c37;
    transform: rotate(-51.45deg);
}
.two:hover h2,
.two:hover i,
.two:hover svg {
    color: #fd9c37;
}
.three {
    background-color: #fe683e;
    transform: rotate(-102.9deg);
}
.three:hover h2,
.three:hover i,
.three:hover svg {
    color: #fe683e;
}
.four {
    background-color: #f10b30;
    transform: rotate(-154.35deg);
}
.four:hover h2,
.four:hover i,
.four:hover svg {
    color: #f10b30;
}
.five {
    background-color: #7711fa;
    transform: rotate(-205.8deg);
}
.five:hover h2,
.five:hover i,
.five:hover svg {
    color: #7711fa;
}
.six {
    background-color: #6986cb;
    transform: rotate(-257.25deg);
}
.six:hover h2,
.six:hover i,
.six:hover svg {
    color: #6986cb;
}
.seven {
    background-color: #accb84;
    transform: rotate(-308.7deg);
}
.seven:hover h2,
.seven:hover i,
.seven:hover svg {
    color: #accb84;
}
.icon-one {
    right: 8%;
    top: 27%;
    transform: rotate(0deg);
}
.icon-two {
    right: 10%;
    top: 24%;
    transform: rotate(51.45deg);
}
.icon-three {
    right: 2%;
    top: 27%;
    transform: rotate(102.9deg);
}
.icon-four {
    right: 7%;
    top: 26%;
    transform: rotate(154.35deg);
}
.icon-five {
    right: 11%;
    top: 26%;
    transform: rotate(205.8deg);
}
.icon-six {
    right: 8%;
    top: 27%;
    transform: rotate(257.25deg);
}
.icon-seven {
    right: 12%;
    top: 27%;
    transform: rotate(308.7deg);
}
.icon {
    position: absolute;
    color: #fff;
    text-align: center;
}
.icon i,
.icon svg {
    font-size: 1.2em;
}
.icon h2 {
    font-size: 0.9em;
    color: #fff;
    font-weight: 600;
    margin: 0.25em 0 0;
}
.home-banner {
    background: url(../images/treacle-self-prescribing-health-happy-help-groups-information-directory.jpg) no-repeat center;
    min-height: 500px;
    min-height: 50vh;
    background-attachment: fixed;
    -moz-align-items: stretch !important;
    -ms-align-items: stretch !important;
    align-items: stretch !important;
    -ms-align-content: stretch !important;
    align-content: stretch !important;
    -moz-justify-content: stretch !important;
    -ms-justify-content: stretch !important;
    justify-content: stretch !important;
    -ms-flex-pack: stretch !important;
    margin-bottom: 6em;
}
.home-banner:after {
    content: "";
    position: absolute;
    background: url(../images/treacle-icon.svg) no-repeat center;
    bottom: -52px;
    display: inline-block;
    width: 100%;
    height: 44px;
    text-align: center;
}
.home-banner .flex-50 {
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -ms-align-content: center;
    align-content: center;
}
.home-banner h2 {
    font-size: 1.6em;
    color: #fff;
}
.home-banner .home-left {
    text-align: center;
    -ms-align-self: strech;
    align-self: strech;
    border-right: 0;
    border-bottom: 6px solid #afafaa;
    padding: 1em;
    vertical-align: middle;
}

.home-left h2, .home-right h2 {
font-weight: bold;
margin-bottom: .5em;
}

.home-banner .home-right {
    text-align: center;
    -ms-align-self: strech;
    align-self: strech;
    border-left: 0;
    padding: 1em;
    vertical-align: middle;
}
p.home-text {
    text-align: center;
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    padding: 5%;
}

.home-lower-banner {
  background-color: #ffa700;
  padding: 1.5em;
  text-align: center;
  margin-bottom: 1em;
}

.home-lower-banner h3 {
  line-height: 1.2;
  margin: 0 auto 1em;
}

.home-lower-banner h5 {
  margin: 0 auto;
}

.blog-page {
    -moz-justify-content: flex-start !important;
    -ms-justify-content: flex-start !important;
    justify-content: flex-start !important;
    -ms-flex-pack: flex-start !important;
    margin-bottom: 2em;
}
.blog-item-container {
    padding: 1em;
}
.blog-item {
    background: #ffa700;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 1.5em;
    text-align: left;
    transition: 0.15s ease-out all;
    box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 400px;
    margin-bottom: 1.5em;
}

.posted-on .entry-date, .posted-on .updated, .byline .author {
  font-weight: bold;
}

.blog-item h2 {
  font-size: 1.5em;
  font-weight: bold;
}
.blog-item a {
    text-decoration: none;
}

.blog-item a:hover {
  color: #f1f1f1;
}
.blog-item:hover {
    background: #ffb529;
}
.blog-item:after {
    content: "";
    position: absolute;
    background: url(../images/treacle-icon.svg) no-repeat right;
    bottom: -2.5em;
    right: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: right;
}
.blog-full {
    text-align: left;
}

.blog-full .entry-content {
  background: #ffa700;
  padding: 2em;
  margin: 1.5em 0 1em;
  border-radius: 10px;
}

.blog-full .page-title {
    margin: 1em 0 0;
    font-size: 2.4em;
}
.blog-full .entry-content p {
    font-size: 1.2em;
}

.blog-full .entry-content li {
    font-size: 1.2em;
}

.post-not-found {
    text-align: center;
    margin: 0 auto;
}
.home-search-block {
    text-align: center;
    background: #323c44;
    padding: 2em;
    margin: 1em 0 2em 0;
}
.home-search-block h2 {
    text-align: center;
    margin: 0.5em 0;
    font-size: 1.8em;
}
.w2dc-search-radius-label,
.w2dc-search-radius-label strong {
    color: #fff !important;
} /*.w2dc-fa,.w2dc-fa-map-marker,.w2dc-map-marker,.w2dc-map-marker-icon{color:#ffa700!important}*/
.w2dc-map-marker {
    background: #ffa700 !important;
}
.w2dc-listing-logo-img img {
    margin: 0 auto !important;
    width: 250px !important;
}

.listings-sidebar {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.listings-main {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.w2dc-map-canvas {
    height: 400px !important;
}

.w2dc-content .w2dc-map-wrapper {
    height: 400px !important;
}

.sub-category-menu {
    background: url(../images/signpost.svg) no-repeat center;
    background-position: center;
    background-size: contain;
    min-height: 60vh;
    position: relative;
    padding: 1em 2em 2em;
}
.split-category-signs {
    -moz-justify-content: center !important;
    -ms-justify-content: center !important;
    justify-content: center !important;
    -ms-flex-pack: center !important;
}
.sub-cat-menu-list {
    position: relative;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    width: 90%;
}
.sub-cat-menu-list a {
    color: #fff;
    text-decoration: none;
}
.sub-cat-menu-list a:hover {
    color: #e6e6e6;
}
.sub-cat-menu-list li {
    text-align: center;
    color: #fff;
    padding: 1.4em 0.5em;
    background-size: contain;
    margin-bottom: 0.75em;
    font-size: 1.2em;
    font-weight: 400;
}
.sub-cat-menu-list li.sign-covid {
    background: url(../images/sign-covid.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-covid-flip {
    background: url(../images/sign-covid-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-money {
    background: url(../images/sign-money.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-money-flip {
    background: url(../images/sign-money-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-happy {
    background: url(../images/sign-happy.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-happy-flip {
    background: url(../images/sign-happy-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-healthy {
    background: url(../images/sign-healthy.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-healthy-flip {
    background: url(../images/sign-healthy-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-friends {
    background: url(../images/sign-friends.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-friends-flip {
    background: url(../images/sign-friends-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-groups {
    background: url(../images/sign-groups.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-groups-flip {
    background: url(../images/sign-groups-flip.svg) no-repeat 60%;
}
.sub-cat-menu-list li.sign-families {
    background: url(../images/sign-families.svg) no-repeat 35%;
}
.sub-cat-menu-list li.sign-families-flip {
    background: url(../images/sign-families-flip.svg) no-repeat 60%;
}
.sub-category-header {
    text-align: center;
}
.sub-category-header h1 {
    text-align: center;
    color: #fff;
    background-size: contain;
    margin: 0.5em auto 1em;
    padding-bottom: 0.25em;
    font-size: 2.4em;
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.sub-category-header h1:after {
    content: "";
    position: absolute;
    background: url(../images/treacle-icon.svg) no-repeat right;
    bottom: 0;
    right: 0.65em;
    display: inline-block;
    width: 18px;
    height: 18px;
}
.sub-category-header h1 a {
    color: #fff;
    text-decoration: none;
}
.sub-category-header h1 a:hover,
.sub-category-header h1 a:visited:hover {
    color: white;
}
p.intro-text {
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    padding: 0 10%;
}
.breadcrumb {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}
.breadcrumb a {
    color: #fff !important;
}
.breadcrumb a:visited,
.breadcrumb a:visited:hover {
    color: #fff;
}
p.about-text {
    text-align: left;
    color: #fff;
    font-size: 1.2em;
    font-weight: 400;
    padding: 0 4%;
}
.about-banner {
    background: url(../images/treacle-self-prescribing-health-happy-help-groups-information-directory-worth-valley-keighley.jpg) no-repeat center;
    background-attachment: fixed;
    position: relative;
    height: 400px;
    height: 50vh;
}
.contact-form {
    padding: 0 2%;
    margin-bottom: 1em;
}
ol,
ul {
    -webkit-padding-start: 20px;
}
.list-square {
    margin-bottom: 1.5em;
    list-style-position: outside;
    list-style-type: square;
}
.nostyle {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}
.related-posts-list {
    display: flex;
}
.page-numbers {
    margin: 1em 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
}
.page-numbers li {
    margin-right: 1em;
}
.grecaptcha-badge {
    opacity: 0;
    visibility: hidden;
}
.error404 .search-outer {
    padding: 1.5em 0;
}
.error404 .search-input {
    display: flex;
    width: 100%;
}
.error404 input[type="search"] {
    margin: 0 1em 0 0;
    height: 40px;
    min-width: 250px;
}
.error404 .search-submit {
    width: 100px;
}
.page-blog .entry-content .alignfull,
.page-blog .entry-content .alignwide {
    margin: 0;
    max-width: 100%;
}
.byline-wrap {
    margin-bottom: 1.5em;
}
.entry-content {
    position: relative;
}
.entry-content table {
    margin-bottom: 1.5em;
    width: 100%;
    border: 1px solid #ccc;
}
.entry-content tr {
    border-bottom: 1px solid #ccc;
}
.entry-content tr:nth-child(2n) {
    background-color: #dedede;
}
.entry-content td {
    padding: 7px;
    border-right: 1px solid #ccc;
}
.entry-content td:last-child {
    border-right: 0;
}
.entry-content th {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #dedede;
}
.entry-content th:last-child {
    border-right: 0;
}
.wp-caption {
}
.article-footer {
    position: relative;
    text-align: center;
    margin-bottom: 3em;
}
.article-footer:after {
    content: "";
    position: relative;
    background: url(../images/treacle-icon.svg) no-repeat center;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    text-align: center;
}
.screen-reader-text {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    white-space: nowrap;
}
.screen-reader-text:focus {
    top: 5px;
    left: 5px;
    z-index: 100000;
    display: block;
    clip: auto !important;
    padding: 15px 23px 14px;
    width: auto;
    height: auto;
    border-radius: 3px;
    background-color: #f1f1f1;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    color: #21759b;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875rem;
    font-size: 14px;
    line-height: normal;
}
.wp-prev-next .prev-link {
    float: left;
}
.w2dc-map-info-window-content {
    color: #ffa700;
}
.wp-prev-next .next-link {
    float: right;
}
#comments-title {
}
.commentlist {
    margin: 0;
    list-style-type: none;
}
.comment {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dotted #ccc;
}
.comment .comment-author {
    display: flex;
    align-items: center;
}
.comment .vcard .avatar {
    margin-right: 1rem;
}
.comment .children {
}
.comment-edit-link {
    margin-right: 6px;
}
.widget ul li {
}
.footer {
    background: #ffa700;
    color: #fff;
    padding: 2em 2em 0;
}
.footer-logo img {
    width: 60%;
    height: auto;
    margin: 0 auto;
}
.footer-links {
    display: block;
}
.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-links ul li {
    display: block;
    text-align: center;
}
.footer-links ul li.current-menu-item:after {
    display: none;
}
.footer-links ul li.current-menu-item:hover:after {
    border-bottom-color: none;
}
.footer-links ul li a {
    color: #fff;
    font-size: 1em;
    font-weight: 400;
}
.footer-links ul li a:hover {
    text-decoration: none;
    color: white;
}
.footer-contact ul {
    list-style: none;
    margin: 1em 0;
    padding: 0;
}
.footer-contact ul li {
    padding: 0 0 0.5em 0;
    text-align: center;
}
.footer-contact ul li a {
    color: #fff;
}
.footer-contact ul li a i,
.footer-contact ul li a svg {
    margin-right: 0.25em;
}
.footer-contact ul li a:hover {
    text-decoration: none;
    color: white;
}
.footer-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.footer-icons li {
    display: inline;
    padding-left: 0;
    padding: 0 0.5em;
}
.footer-icons li a {
    color: #fff;
    font-size: 1.5em;
}
.footer-icons li a:hover {
    text-decoration: none;
    color: white;
}
.copyright,
.kiseki {
    text-align: center;
}
.kiseki a {
    color: #fff;
}
.kiseki a:hover {
    text-decoration: none;
    color: white;
}

.wpcf7-list-item {
    font-size: 1.1em;
    font-weight: 500;
    width: 44%;
    position: relative;
}

@keyframes backgroundColorPalette {
  0% {
    background: #4285aa;
    top: 0;
  }
  50% {
    background: #5eb3e0;
    top: 5px;
  }
  100% {
    background: #4285aa;
    top: 0;

  }
}

.warm-winter {
    position: relative;
    display: block;
    width: 90%;
    background: #4285aa;
    padding: 1.5em;
    font-size: 1.2em;
    color: white;
    border-radius: 50%;
    margin: 1em auto 0 auto;
    border: 2px solid white;
    text-align: center;
    z-index: 100;
    animation-name: backgroundColorPalette;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: 1s ease-in-out all;

}

.warm-winter a {
    margin: 0 auto;
}

.warm-winter a:hover {
    text-decoration: none;
    background-color: #46247e;
}

.warm-winter:hover {
    text-decoration: none;
    background: #46247e !important;
}

@media only screen and (min-width: 375px) {
    .wheel:after {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    .icon {
        position: absolute;
        color: #fff;
        text-align: center;
    }
    .icon i,
    .icon svg {
        font-size: 1.8em;
    }
    .icon h2 {
        font-size: 1.1em;
        color: #fff;
        font-weight: 600;
        margin: 0.25em 0 0;
    }
}
@media only screen and (min-width: 481px) {
    .menu {
    }
    .menu ul {
    }
    .menu ul li {
    }
    .menu ul li a {
    }
    .entry-content {
    }
    .entry-content .alignleft,
    .entry-content img.alignleft {
        margin-right: 1.5em;
        display: inline;
        float: left;
        margin-top: 11px;
    }
    .entry-content .alignright,
    .entry-content img.alignright {
        margin-left: 1.5em;
        display: inline;
        float: right;
        margin-top: 11px;
    }
    .entry-content .aligncenter,
    .entry-content img.aligncenter {
        margin-right: auto;
        margin-left: auto;
        display: table;
        clear: both;
        margin-top: 11px;
    }
    .entry-content .wp-block-media-text.alignfull {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    .wrap {
        padding: 1em;
    }
}
@media only screen and (min-width: 768px) {

    #header-email {
        display: block;
    }
    #header-social {
        display: block;
    }

    .entry-content .alignfull {
        margin-left: calc(-100vw / 2 + 100% / 2);
        margin-right: calc(-100vw / 2 + 100% / 2);
        max-width: 100vw;
    }
    .entry-content .alignwide {
        margin-right: calc(25% - 25vw);
        margin-left: calc(25% - 25vw);
        max-width: 1000%;
        width: auto;
    }
    .entry-content .alignfull img,
    .entry-content .alignwide img {
        display: block;
        margin: 0 auto;
    }
    .wrap {
        padding: 1em 1.5em;
    }
    .flex-container {
        display: flex;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        -ms-align-content: flex-start;
        align-content: flex-start;
    }
    .flex-33 {
        flex: 0 0 33.3%;
        -webkit-box-flex: 0 0 33.3%;
        -moz-box-flex: 0 0 33.3%;
        max-width: 33.3%;
    }
    .flex-25 {
        flex: 0 0 50%;
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        max-width: 50%;
    }
    .flex-15 {
        flex: 0 0 33.3%;
        -webkit-box-flex: 0 0 33.3%;
        -moz-box-flex: 0 0 33.3%;
        max-width: 33.3%;
    }
    .flex-20 {
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
    }
    .flex-50 {
        flex: 0 0 50%;
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        max-width: 50%;
    }
    .flex-60 {
        flex: 0 0 60%;
        -webkit-box-flex: 0 0 60%;
        -moz-box-flex: 0 0 60%;
        max-width: 60%;
    }
    .flex-75 {
        flex: 0 0 75%;
        -webkit-box-flex: 0 0 75%;
        -moz-box-flex: 0 0 75%;
        max-width: 75%;
    }
    .flex-80 {
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
    }
    .flex-10 {
        flex: 0 0 15%;
        -webkit-box-flex: 0 0 15%;
        -moz-box-flex: 0 0 15%;
        max-width: 15%;
    }
    .flex-85 {
        flex: 0 0 85%;
        -webkit-box-flex: 0 0 85%;
        -moz-box-flex: 0 0 85%;
        max-width: 85%;
    }
    .flex-40 {
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
    }
    .flex-100 {
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
    }
    .nav {
        margin: 0;
        padding: 0;
        border-bottom: 0;
        list-style-type: none;
    }
    .nav li {
    }
    .nav li a {
        display: block;
        padding: 0.2em;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.5em;
    }
    .nav li ul.children,
    .nav li ul.sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #lower-header {
        padding: 0.5em 3%;
    }
    #logo img {
        width: 35%;
    }
    #header-email {
        order: 1;
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    #header-email a {
        font-size: 1.1em;
    }
    #header-social {
        order: 2;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
        margin: 0.25em 0 0;
    }
    #site-tagline {
        order: 0;
        -webkit-box-ordinal-group: 0;
        -moz-box-ordinal-group: 0;
        -ms-flex-order: 0;
        flex: 0 0 100%;
        -webkit-box-flex: 0 0 100%;
        -moz-box-flex: 0 0 100%;
        max-width: 100%;
    }
    #site-tagline h2 {
        font-size: 1.6em;
        margin: 0;
        padding: 0;
    }
    .social-icons {
        text-align: center;
        margin: 0;
    }
    .social-icons li {
        display: inline;
        padding: 0 0.75em 0 0;
    }
    .wheel {
        position: relative;
        list-style: none;
        margin: 30px auto;
        height: 0;
        padding: 0;
        padding-top: 90%;
        width: 90%;
    }
    .wheel:after {
        width: 80px;
        height: 80px;
        font-size: 3.2em;
        border: 8px solid #fff;
    }
    .icon i,
    .icon svg {
        font-size: 2.2em;
    }
    .icon h2 {
        font-size: 1.6em;
        margin: 0.5em 0 0;
    }
    .icon-one {
        right: 10%;
        top: 29%;
    }
    .icon-two {
        right: 13%;
        top: 27%;
    }
    .icon-three {
        right: 7%;
        top: 29%;
    }
    .icon-four {
        right: 10%;
        top: 28%;
    }
    .icon-five {
        right: 15%;
        top: 29%;
    }
    .icon-six {
        right: 12%;
        top: 30%;
    }
    .icon-seven {
        right: 15%;
        top: 29%;
    }
    .home-banner {
        background: url(../images/treacle-self-prescribing-health-happy-help-groups-information-directory.jpg) no-repeat center;
        min-height: 500px;
        min-height: 50vh;
        background-attachment: fixed;
        -moz-align-items: stretch !important;
        -ms-align-items: stretch !important;
        align-items: stretch !important;
        -ms-align-content: stretch !important;
        align-content: stretch !important;
        -moz-justify-content: stretch !important;
        -ms-justify-content: stretch !important;
        justify-content: stretch !important;
        -ms-flex-pack: stretch !important;
        margin-bottom: 6em;
    }
    .home-banner h2 {
        font-size: 2em;
    }
    .home-banner .home-left {
        text-align: right;
        -ms-align-self: strech;
        align-self: strech;
        border-right: 6px solid #afafaa;
        border-bottom: 0;
        padding-right: 2em;
    }
    .home-banner .home-right {
        text-align: left;
        -ms-align-self: strech;
        align-self: strech;
        border-left: 6px solid #afafaa;
        padding-left: 2em;
    }
    p.home-text {
        padding: 5%;
    }
    .sub-cat-menu-list {
        width: 45%;
    }
    .single-full #main {
        max-width: 640px;
        float: none;
        margin: 0 auto;
    }
    .widget ul li {
    }

    .w2dc-print {
        color: black;
    }

    .w2dc-print .w2dc-listing-logo-wrap {
        width: 50%;
        margin: 0 auto;
    }

    .w2dc-print .w2dc-fields-group a,
    .w2dc-print .w2dc-field-caption .w2dc-field-icon {
        color: black !important;
    }
    /*!
   *
   * We rarely use these widget classes but they
   * do come in handy sometimes. Know your widgets.
   *
   */
    .footer-logo img {
        width: 40%;
        height: auto;
        margin: 0;
    }
    .footer-links ul li {
        text-align: left;
    }
    .footer-contact ul {
        margin: 0;
    }
    .footer-contact ul li {
        text-align: left;
    }
    .footer-icons {
        text-align: right;
    }
    .footer-icons li {
        padding: 0;
        padding-left: 0.75em;
    }
}
@media only screen and (max-width: 899px) {
}
@media only screen and (max-width: 1029px) {
    .nav {
        margin: 0;
        padding: 0;
        border-bottom: 0;
        list-style-type: none;
    }
    .nav li {
    }
    .nav li a {
        display: block;
        padding: 0.2em;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.3em;
        color: #ffa700;
    }
    .nav li ul.children,
    .nav li ul.sub-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }
}
@media only screen and (min-width: 900px) {
}
@media only screen and (min-width: 1024px) {

    @keyframes warmButton {
        0% {
            background: #4285aa;
            top: 5em;
        }
        50% {
            background: #4d9cc7;
            top: 4.5em;
        }
        100% {
            background: #4285aa;
            top: 5em;

        }
    }

    .warm-winter {
        position: absolute;
        left: 5em;
        top: 5em;
        display: block;
        width: auto;
        background: #4285aa;
        padding: 3em 1.25em;
        color: white;
        margin: 1em auto 0 auto;
        text-align: center;
        animation-name: warmButton;
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }

    .directory-wrap {
        width: 96%;
        margin: 0 auto;
    }

    .w2dc-map-canvas {
        height: 400px !important;
    }

    .w2dc-content .w2dc-map-wrapper {
        height: 400px !important;
    }

    .copyright {
        text-align: left;
    }
    .kiseki {
        text-align: right;
    }
    #lower-header {
        padding: 0.5em 3%;
    }
    #header-email {
        order: 0;
        -webkit-box-ordinal-group: 0;
        -moz-box-ordinal-group: 0;
        -ms-flex-order: 0;
        flex: 0 0 25%;
        -webkit-box-flex: 0 0 25%;
        -moz-box-flex: 0 0 25%;
        max-width: 25%;
        text-align: left;
    }
    #header-email a {
        font-size: 1.1em;
    }
    #header-social {
        order: 2;
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        flex: 0 0 25%;
        -webkit-box-flex: 0 0 25%;
        -moz-box-flex: 0 0 25%;
        max-width: 25%;
        margin: 0;
    }
    #site-tagline {
        order: 1;
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        flex: 0 0 50%;
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        max-width: 50%;
    }
    #site-tagline h2 {
        font-size: 1.8em;
        margin: 0;
        padding: 0;
    }
    .social-icons {
        text-align: right;
        margin: 0;
    }
    .social-icons li {
        display: inline;
        padding: 0 0.75em 0 0;
    }
    #logo img {
        width: 20%;
    }
    .wheel {
        position: relative;
        list-style: none;
        margin: 30px auto;
        height: 0;
        padding: 0;
        padding-top: 65%;
        width: 65%;
    }
    .wheel:after {
        width: 80px;
        height: 80px;
        font-size: 3.2em;
        border: 8px solid #fff;
    }
    .sub-cat-menu-list {
        width: 30%;
    }
    .contact-form {
        padding: 0 10%;
        margin-bottom: 3em;
    }
}
@media only screen and (min-width: 1240px) {

.home-heading h1 {
    font-size: 1.4em;
    padding: .75em;
}

.home-heading h1:after {
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;    
    border-top: 20px solid #ffa700;
}

    .warm-winter {
        position: absolute;
        top: 6em;
        width: auto;

    }

    .w2dc-map-canvas {
        height: 500px !important;
    }

    .w2dc-content .w2dc-map-wrapper {
        height: 500px !important;
    }

    .listings-sidebar {
        padding-right: 2em;
        position: sticky;
        position: -webkit-sticky; /* Safari */
        top: 20px;
        display: block;
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }

    .listings-main {
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }

    .flex-33 {
        flex: 0 0 33.3%;
        -webkit-box-flex: 0 0 33.3%;
        -moz-box-flex: 0 0 33.3%;
        max-width: 33.3%;
    }
    .flex-25 {
        flex: 0 0 25%;
        -webkit-box-flex: 0 0 25%;
        -moz-box-flex: 0 0 25%;
        max-width: 25%;
    }
    .flex-15 {
        flex: 0 0 15%;
        -webkit-box-flex: 0 0 15%;
        -moz-box-flex: 0 0 15%;
        max-width: 15%;
    }
    .flex-20 {
        flex: 0 0 20%;
        -webkit-box-flex: 0 0 20%;
        -moz-box-flex: 0 0 20%;
        max-width: 20%;
    }
    .flex-50 {
        flex: 0 0 50%;
        -webkit-box-flex: 0 0 50%;
        -moz-box-flex: 0 0 50%;
        max-width: 50%;
    }
    .flex-40 {
        flex: 0 0 40%;
        -webkit-box-flex: 0 0 40%;
        -moz-box-flex: 0 0 40%;
        max-width: 40%;
    }
    .flex-60 {
        flex: 0 0 60%;
        -webkit-box-flex: 0 0 60%;
        -moz-box-flex: 0 0 60%;
        max-width: 60%;
    }
    .flex-75 {
        flex: 0 0 75%;
        -webkit-box-flex: 0 0 75%;
        -moz-box-flex: 0 0 75%;
        max-width: 75%;
    }
    .flex-80 {
        flex: 0 0 80%;
        -webkit-box-flex: 0 0 80%;
        -moz-box-flex: 0 0 80%;
        max-width: 80%;
    }
    .flex-10 {
        flex: 0 0 10%;
        -webkit-box-flex: 0 0 10%;
        -moz-box-flex: 0 0 10%;
        max-width: 10%;
    }
    .nav {
        margin: 2em auto 1em;
        text-align: center;
        padding: 0;
        border: 0;
        list-style-type: none;
    }
    .nav li {
        display: inline-block;
        list-style: none;
        text-align: center;
    }
    .nav li.current-menu-item:after {
        content: "";
        height: 2px;
        border-bottom: 2px solid #ffa700;
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 60%;
        transition: 0.1s ease-in all;
    }
    .nav li.current-menu-item:hover:after {
        border-bottom-color: #e6e6e6;
    }
    .nav li a {
        display: block;
        border-bottom: 0;
        padding: 0 0.75em;
        text-decoration: none;
        color: #fff;
        font-size: 1.2em;
        font-weight: 500;
    }
    .nav li a:focus,
    .nav li a:hover {
        text-decoration: none;
        color: #eee;
    }
    .nav li ul.children,
    .nav li ul.sub-menu {
        position: absolute;
        z-index: 8999;
        visibility: hidden;
        text-align: center;
        background: #ffa700;
        padding: 1em 2em;
        text-align: center;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
    }
    .nav li ul.children li,
    .nav li ul.sub-menu li {
        display: block;
        margin-bottom: 0.5em;
    }
    .nav li ul.children li.current-menu-item:after,
    .nav li ul.sub-menu li.current-menu-item:after {
        display: none;
    }
    .nav li ul.children li a,
    .nav li ul.sub-menu li a {
        color: #fff;
        transition: none;
    }
    .nav li ul.children li a:focus,
    .nav li ul.children li a:hover,
    .nav li ul.sub-menu li a:focus,
    .nav li ul.sub-menu li a:hover {
        color: white;
    }
    .nav li ul.children li:last-child a,
    .nav li ul.sub-menu li:last-child a {
        border-bottom: 0;
    }
    .nav li:hover > ul {
        top: auto;
        visibility: visible;
    }
    #logo img {
        width: 18%;
    }
    .home-banner {
        background: url(../images/treacle-self-prescribing-health-happy-help-groups-information-directory.jpg) no-repeat center;
        min-height: 500px;
        min-height: 50vh;
        background-attachment: fixed;
        -moz-align-items: stretch !important;
        -ms-align-items: stretch !important;
        align-items: stretch !important;
        -ms-align-content: stretch !important;
        align-content: stretch !important;
        -moz-justify-content: stretch !important;
        -ms-justify-content: stretch !important;
        justify-content: stretch !important;
        -ms-flex-pack: stretch !important;
        margin-bottom: 6em;
        background-size: cover;
    }
    .home-banner h2 {
        font-size: 3em;
    }
    .home-banner .home-left {
        text-align: right;
        -ms-align-self: strech;
        align-self: strech;
        border-right: 6px solid #afafaa;
        border-bottom: 0;
        padding: 0 2em;
    }
    .home-banner .home-right {
        text-align: left;
        -ms-align-self: strech;
        align-self: strech;
        border-left: 6px solid #afafaa;
        padding: 0  2em;
    }
    p.home-text {
        padding: 3% 20%;
    }
    .sub-cat-menu-list {
        width: 22%;
    }
    .sub-cat-menu-list li {
        text-align: center;
        color: #fff;
        padding: 1em 0.5em;
        background-size: contain;
        margin-bottom: 0.75em;
        font-size: 1.2em;
        font-weight: 400;
    }
    .sub-cat-menu-list li.sign-covid {
        background: url(../images/sign-covid.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-covid-flip {
        background: url(../images/sign-covid-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-money {
        background: url(../images/sign-money.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-money-flip {
        background: url(../images/sign-money-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-happy {
        background: url(../images/sign-happy.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-happy-flip {
        background: url(../images/sign-happy-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-healthy {
        background: url(../images/sign-healthy.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-healthy-flip {
        background: url(../images/sign-healthy-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-friends {
        background: url(../images/sign-friends.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-friends-flip {
        background: url(../images/sign-friends-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-groups {
        background: url(../images/sign-groups.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-groups-flip {
        background: url(../images/sign-groups-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-families {
        background: url(../images/sign-families.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-families-flip {
        background: url(../images/sign-families-flip.svg) no-repeat 60%;
    }
    .wheel {
        padding-top: 45%;
        width: 45%;
    }
    .sub-cat-menu-list-split {
        width: 56%;
    }
}

@media only screen and (min-width: 1440px) {

    .warm-winter {
        top: 6em;
        width: auto

    }
}

@media only screen and (min-width: 1600px) {

    .warm-winter {
        width: auto;

    }

    .wpcf7-list-item {
        font-size: 1.1em;
        font-weight: 500;
        width: 30%;
        position: relative;
    }

    .wrap {
        width: 90%;
    }
    .wheel {
        position: relative;
        list-style: none;
        margin: 30px auto 0;
        height: 0;
        padding: 0;
        padding-top: 36%;
        width: 36%;
    }
    .wheel:after {
        width: 100px;
        height: 100px;
        font-size: 4em;
        border: 12px solid #fff;
    }
    .icon i,
    .icon svg {
        font-size: 2.5em;
    }
    .icon h2 {
        font-size: 1.6em;
    }
    p.home-text {
        padding: 2% 20%;
        margin: 0 0 2em 0;
    }
    .contact-form {
        padding: 0 20%;
        margin-bottom: 4em;
    }
    .sub-cat-menu-list {
        width: 20%;
    }
    .sub-cat-menu-list li {
        text-align: center;
        color: #fff;
        padding: 1.4em 0.5em;
        background-size: contain;
        margin-bottom: 0.75em;
        font-size: 1.2em;
        font-weight: 400;
    }
    .sub-cat-menu-list li.sign-covid {
        background: url(../images/sign-covid.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-covid-flip {
        background: url(../images/sign-covid-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-money {
        background: url(../images/sign-money.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-money-flip {
        background: url(../images/sign-money-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-happy {
        background: url(../images/sign-happy.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-happy-flip {
        background: url(../images/sign-happy-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-healthy {
        background: url(../images/sign-healthy.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-healthy-flip {
        background: url(../images/sign-healthy-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-friends {
        background: url(../images/sign-friends.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-friends-flip {
        background: url(../images/sign-friends-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-groups {
        background: url(../images/sign-groups.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-groups-flip {
        background: url(../images/sign-groups-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list li.sign-families {
        background: url(../images/sign-families.svg) no-repeat 35%;
    }
    .sub-cat-menu-list li.sign-families-flip {
        background: url(../images/sign-families-flip.svg) no-repeat 60%;
    }
    .sub-cat-menu-list-split {
        width: 50%;
    }
}
@media print {
}
@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        -ms-filter: none !important;
        filter: none !important;
    }
    #content {
        width: 100%;
        margin: 0;
        float: none;

    }
    @page {
        margin: 2cm;
    }
    @page :left {
        margin: 1cm;
    }
    @page :right {
        margin: 1cm;
    }
    @page :first {
        margin: 1cm 2cm;
    }
    body {
        font-size: 13pt;
        line-height: 1.3;
        background: #fff !important;
        color: #000;
    }
    h1 {
        font-size: 24pt;
    }
    h2,
    h3,
    h4 {
        font-size: 14pt;
        margin-top: 25px;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    a {
        page-break-inside: avoid;
    }
    blockquote {
        page-break-inside: avoid;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        page-break-inside: avoid;
    }
    img {
        page-break-inside: avoid;
        page-break-after: avoid;
    }
    pre,
    table {
        page-break-inside: avoid;
    }
    dl,
    ol,
    ul {
        page-break-before: avoid;
    }
    blockquote,
    pre {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    a,
    a:link,
    a:visited {
        background: transparent;
        color: #0088cc;
        font-weight: bold;
        text-decoration: underline;
        text-align: left;
    }
    a[href^="http"]:after {
        content: " < " attr(href) "> ";
    }
    article a[href^="#"]:after {
        content: "";
    }
    a:not(:local-link):after {
        content: " < " attr(href) "> ";
    }
    .entry-content iframe,
    ins {
        display: none;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        line-height: 0pt !important;
        white-space: nowrap;
    }
    .embed-container,
    .embed-responsive,
    .embed-youtube {
        display: none;
        position: absolute;
        height: 0;
        overflow: hidden;
    }
    #breadcrumbs,
    #decomments-form-add-comment,
    #footer,
    #header-widgets,
    .author-bio,
    .byline,
    .content-ads,
    .heading,
    .make-comment,
    .meta-single,
    .page-navigation,
    .post-byline,
    .post-tags,
    .readability,
    .related-posts,
    .respond-form,
    .sidebar,
    .sidebar,
    .site-title img,
    .wp-prev-next,
    aside,
    nav {
        display: none;
    }
}

.sign-post-holder {
    background: url(../images/signpost.svg) no-repeat center;
    width: 100%;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 0;
    padding-bottom: 5em;
}

.sign-post-holder-right {
    display: none;
}

/*.home #container {
     pointer-events: none;
   }*/

.home #container.pointers {
    pointer-events: all;
}

.contact-form .orange-button {
    background: white;
    color: #ffa700;
    border-radius: 5px;
}

#big-overlay {
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 1s ease-in-out background;
    z-index: 1000;
}

#big-overlay.hidden {
    background: none;
    display: none;
}

.overlay-close-button {
    position: absolute;
    pointer-events: all;
    top: 1em;
    left: 1em;
    display: inline-block;
}

.overlay-close-button.closed {
    display: none;
}

#search-form-home {
    position: relative;
    z-index: 1001;
    margin: 0 auto;
    pointer-events: all;
}

#container.pointers #search-form-home {
    z-index: 10;
}

.w2dc-search-form-button {
    float: none !important;
    width: 100%;
}

.w2dc-listing-single {
    width: 100%;
    margin: 0 auto;
}

.search-or {
    display: block;
    color: white;
    position: relative;
    font-size: 1.5em;
    font-weight: 600;
    margin-top: -0.75em;
}

.page-template-page-directory .search-or {
    display: none;
}

.w2dc-search-form-button .w2dc-btn {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
    font-weight: 00;
    text-transform: uppercase;
}

.translate-tool-container {
    position: relative;
    left: 0;
    top: 0;
    display: grid;
    background: white;
    z-index: 1000;
}

.translate-tool {
    position: relative;
    padding: 0.25em;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0 auto;
    text-align: center;
}

.translate-tool-toggle {
    position: absolute;
    right: -1.5em;
    top: 0;
    display: none;
    width: 20px;
    height: 20px;
    color: black;
    text-align: center;
    background: white;
    border-radius: 5px;
    padding: 0.15em;
    cursor: pointer;
}

.translate-tool-toggle i,
.translate-tool-toggle svg {
    vertical-align: top;
}

.extra-padding {
    padding: 1.5em 0.5em !important;
}

.about-page {
    padding: 4%;
    background: #ffa700;
    border-radius: 10px;
    width: 96%;
    margin: 0 auto 1em;
}

.about-page h2 {
    font-weight: bold;
    margin-bottom: 0.5em;
}

.look-north {
    text-align: center;
    margin: 0 auto 2em;
    color: white;
}

.look-north img {
    text-align: center;
    margin: 0.5em auto;
}

/* App links */

.app-links-home {
    margin: 1em auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1;
    width: 100%;
    grid-gap: 1em;
    padding: 0 1em;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
}

.app-links-home .android,
.app-links-home .apple {
    grid-column: span 6;
    text-align: center;
    margin: 0 auto;
}

/* Menu button */

.left-reviews,
.right-reviews {
    display: none;
}

.glide {
    display: block;
    text-align: center;
}

.glide blockquote {
    font-size: 1.2em;
    margin: 0;
}

.menu-button a {
    color: white !important;
    background: #ffa700;
    padding: 0.25em 0.75em !important;
    border-radius: 8px;
    transition: 0.2s ease-out all;
    margin: 0 1em;
}

.menu-button a:hover {
    background: #fd9c37;
    color: white !important;
}

.calendar-events-key h5 {
    text-align: center;
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: 600 !important;
}

.calendar-events-key ul {
    margin: 1em 0 0;
    padding: 0;
    list-style: none !important;
    text-align: center;
}

/* Styling the reviews categories */

div.glsr-review[data-assigned='{"assigned_terms":[443]}']:after {
    content: "Social Prescribing Review";
    display: inline-block;
    background: green;
    color: white;
    text-transform: uppercase;
    font-size: 0.8em;
    position: relative;
    margin-left: 1em;
    right: 0;
    top: 0;
    font-weight: 500;
    padding: 0.25em 0.5em;
    border-radius: 5px;
}

div.glsr-review[data-assigned='{"assigned_terms":[444]}']:after {
    content: "Treacle Review";
    display: inline-block;
    background: #ffa700;
    color: white;
    text-transform: uppercase;
    font-size: 0.8em;
    position: relative;
    right: 0;
    top: 0;
    margin-left: 1em;
    font-weight: 500;
    padding: 0.25em 0.5em;
    border-radius: 5px;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 0 #2ba805;
        right: 0em;
    }
    20% {
        box-shadow: 0 0 8px #49e819;
        right: 0.4em;
    }
    40% {
        box-shadow: 0 0 0px #49e819;
        right: 0.25em;
    }
    60% {
        box-shadow: 0 0 8px #49e819;
        right: 0.4em;
    }
    100% {
        box-shadow: 0 0 0 #2ba805;
        right: 0em;
    }
}

.calendar-button {
    position: relative;
    right: 0;
    left: 0;
    top: 0;
    padding: 2em 0 1em;
}

.calendar-button a {
    background: #2ba805;
    color: white;
    padding: 0.75em 1.5em;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    border-radius: 10px;
    animation: glowing 2000ms infinite;
    border: 2px solid transparent;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    text-decoration: none;
    position: relative;
    right: 0;
}

.mec-calendar .mec-event-footer {
}

.treacle-reviews-holder {
    background: white;
    padding: 2em;
    border-radius: 10px;
    color: black;
    margin: 2em auto 1em;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 2;
    width: 96%;
    grid-gap: 2em 0;
}

.treacle-reviews-summary {
    grid-column: span 12;
}

.treacle-reviews-individual {
    grid-column: span 12;
}

.treacle-reviews h3 {
    color: #000;
}

@media only screen and (min-width: 768px) {

    .treacle-partners {
        display: block;
        margin: 1em 0;
        text-align: center;
        width: 100%;
    }

    .treacle-partners ul {
        margin: 0 auto;
        width: 80%;
        text-align: center;
        list-style: none;
        vertical-align: middle;
    }

    .treacle-partners li {
        width: 48%;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        padding: .5em 1em;
    }

    .sign-post-holder {
        background: url(../images/signpost.svg) no-repeat center;
        width: 50%;
        position: absolute;
        top: 0;
        left: auto;
        right: 0;
        bottom: 0;
        height: 100%;
        z-index: 0;
        padding-bottom: 5em;
    }

    .sign-post-holder-right {
        background: url(../images/signpost.svg) no-repeat center;
        width: 50%;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        bottom: 0;
        height: 100%;
        z-index: 0;
        display: inline-block;
        padding-bottom: 5em;
    }

    .w2dc-search-form-button {
        float: none !important;
        width: 100%;
    }

    .w2dc-search-form-button .w2dc-btn {
        width: 40%;
        margin: 0 auto;
        text-align: center;
    }

    .translate-tool-container {
        position: fixed;
        left: 0;
        background: none;
        top: 25%;
    }

    .translate-tool-toggle {
        display: block;
    }

    .translate-tool {
        background: white;
        padding: 0.25em 0.25em 0.25em 0.5em;
        z-index: 1000;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .app-links-home {
        width: 50%;
    }

    .app-links-home .android,
    .app-links-home .apple {
        grid-column: span 6;
        margin: 0;
    }

    .app-links-home .android {
        text-align: right;
    }

    .app-links-home .android img {
        text-align: right;
        display: inline-block;
    }

    .app-links-home .apple {
        text-align: left;
    }

    .calendar-events-key ul {
        text-align: left;
    }

    .calendar-events-key h5 {
        text-align: left;
    }

    /* Menu button */

    .menu-button a {
        margin: 0;
    }

    .header-nav {
        background: none;
    }

    .main-menu {
        margin: 0;
    }

    .header {
        background-position: center 200%;
        background-size: cover;
        background-attachment: fixed;
    }

    .treacle-reviews-holder {
        background: white;
        padding: 2em;
        border-radius: 10px;
        color: black;
        margin: 2em auto 1em;
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: 1;
        width: 96%;
        grid-gap: 2em;
    }

    .treacle-reviews-summary {
        grid-column: span 5;
    }

    .treacle-reviews-individual {
        grid-column: span 7;
    }

    .treacle-reviews h3 {
        color: #000;
    }
}

@media only screen and (min-width: 1024px) {

    
    .treacle-partners {
        display: block;
        margin: 1em 0;
        text-align: center;
        width: 100%;
    }

    .treacle-partners ul {
        margin: 0 auto;
        width: 98%;
        text-align: center;
        list-style: none;
        vertical-align: middle;
    }

    .treacle-partners li {
        width: 22%;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        padding: .5em 1em;
    }

    .w2dc-listing-single {
        width: 60%;
    }

    .w2dc-search-input-field-wrap {
        margin-bottom: 0em;
    }

    .search-or {
        display: flex;
        color: white;
        position: relative;
        font-size: 1.5em;
        vertical-align: middle;
        width: 5%;
        text-align: center;
        font-weight: 600;
        float: left;
        margin: 0 0.25em 0;
    }

    .w2dc-content .w2dc-col-md-5 {
        width: 38% !important;
    }
}

@media only screen and (min-width: 1240px) {
    
    .or {
        font-size: 2.5em;
    }

    .treacle-partners {
        display: block;
        margin: 1em 0;
        text-align: center;
        width: 100%;
    }

    .treacle-partners ul {
        margin: 0 auto;
        width: 80%;
        text-align: center;
        list-style: none;
        vertical-align: middle;
    }

    .treacle-partners li {
        width: 14%;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        padding: .5em 1em;
    }


    .about-page {
        padding: 2%;
        width: 80%;
    }

    .glide {
        display: none;
    }

    .left-reviews {
        position: absolute;
        display: block;
        left: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 26%;
    }

    .left-reviews blockquote {
        font-size: 1.3em;
        font-weight: 700;
        margin: 1em 0;
    }

    .right-reviews {
        position: absolute;
        right: 0;
        top: 50%;
        display: block;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 26%;
        text-align: right;
    }

    .right-reviews blockquote {
        font-size: 1.3em;
        font-weight: 700;
        margin: 1em 0;
    }

    /* Styling the reviews categories */

    div.glsr-review[data-assigned='{"assigned_terms":[443]}']:after {
        position: absolute;
        margin: 0;
    }

    div.glsr-review[data-assigned='{"assigned_terms":[444]}']:after {
        position: absolute;
        margin: 0;
    }

    .treacle-reviews-holder {
        width: 90%;
    }

    .treacle-reviews-summary {
        grid-column: span 4;
    }

    .treacle-reviews-individual {
        grid-column: span 8;
    }
}

@media only screen and (min-width: 1440px) {

    .w2dc-map-canvas {
        height: 600px !important;
    }

    .w2dc-content .w2dc-map-wrapper {
        height: 600px !important;
    }

    .w2dc-listing-single {
        width: 50%;
    }
}

@media only screen and (min-width: 1680px) {
    .about-page {
        padding: 2%;
        width: 60%;
        margin: 0 auto 1em;
    }

    .treacle-reviews-holder {
        width: 70%;
    }

    .w2dc-listing-single {
        width: 40%;
    }
}

@media only screen and (min-width: 1920px) {
    
    .w2dc-map-canvas {
        height: 700px !important;
    }

    .w2dc-content .w2dc-map-wrapper {
        height: 700px !important;
    }

}

#treacle-reviews,
#social-reviews {
    display: none;
}

.review-buttons {
    text-align: center;
    margin: 2em auto 0;
}

.review-buttons .orange-button {
    display: inline;
}

.glsr-pagination nav {
    width: 100%;
}

.glsr-pagination ul.pagination {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.glsr-pagination .pagination .active {
    color: #ffa700;
    font-weight: bold;
}

.glsr-pagination a {
    color: black;
    padding: 0 0.5em;
}

.glsr-review {
    position: relative;
}

.cnet-power {
    background: #fff;
    padding: 1em;
    margin-bottom: 1em;
}

.cnet-power h5 {
    color: black;
    display: block;
}

.cnet-power img {
    display: inline;
    padding-right: 1em;
    vertical-align: middle;
}

.w2dc-listings-block figure.w2dc-listing-logo .w2dc-listing-logo-img img {
    max-width: 80% !important;
}

.home-heading h5 {
    animation: moving 0.5s linear 1;
    -webkit-animation: moving 0.5s linear 1;
    position: relative;
    background: #fd9c37;
    padding: 0.75em 1em;
    margin: 0.5em auto;
    display: inline-block;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 500;
}

@keyframes moving {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.calendar-events-key {
    padding: 1em;
}

.calendar-events-key ul li {
    display: inline-block !important;
    padding: 0.25em 0.75em;
    border-right: 1px solid #cecece;
}

.calendar-events-key ul li:first-of-type {
    padding-left: 0;
}

.calendar-events-key ul li:last-of-type {
    border-right: none;
}

.mec-calendar .mec-calendar-events-side .mec-table-side-day {
    padding: 0.5em;
}

.mec-single-event .mec-event-content {
    background: white;
    padding: 2em;
}

.mec-single-event {
    margin-top: 2em;
}

.postcode-overlay {
    display: none;
}
div#big-overlay {
    display: block !important;
}
span.overlay-close-button {
    cursor: pointer;
}

.w2dc-content .w2dc-glyphicon {
    z-index: 10;
    font-size: 1.3em;
}

div.w2dc-content .w2dc-categories-column,
div.w2dc-content .w2dc-locations-column {
    background: none;
}

div.w2dc-content .w2dc-categories-root.w2dc-category-item a:hover,
div.w2dc-content .w2dc-locations-root.w2dc-location-item a:hover {
    background: none;
}

div.w2dc-content .w2dc-categories-root.w2dc-category-item a,
div.w2dc-content .w2dc-locations-root.w2dc-location-item a {
    background: none;
}

.w2dc-create-listing-form {
    color: #666666;
}

.wcsearch-content .wcsearch-search .wcsearch-search-column-2 .wcsearch-search-grid {
    grid-gap: 0.75em !important;
}

/*#wcsearch_id_97ef640f657674e0801781ca810837ec:after {
    content: "OR";
    display: inline;
    text-align: center;
    position: relative;
    margin: 0;
    font-size: 1.6em;
    vertical-align: bottom;
    font-weight: bold;
    padding: 0;
}*/

.survery-footer {
    background: #d18904;
    padding: .5em;
    margin-top: 1em;
    text-align: center;
    margin: 0 auto;
}

.smcx-embed {
    margin: 0 auto !important; 
}

.wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    position: absolute;
    right: .5em;
}

.w2dc-field-output-block-10 {
    padding: .25em .5em;
    background: #999;
    vertical-align: baseline;
    border-radius: 5px;
}

.w2dc-field-output-block-10 img {
    vertical-align: baseline;
}

.w2dc-field-output-block-10 .w2dc-field-caption, .w2dc-field-output-block-10 .w2dc-field-name  {
    vertical-align: baseline;
}

.wcsearch-search-form {
    margin: 0;
}


/*************** changes for dropdown search bar **********************/

.page-template-page-directory .wcsearch-tax-dropdowns-wrap {
    padding: 2em;
    background: #fff;
    color: #ffa700;
    margin-bottom: 1em;
    border-radius: 5px;
}

.page-template-page-directory .wcsearch-content .wcsearch-form-control {
    padding: 1em;
}