*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
/* Header, Menu */

/* ***** STRUCTURE ***** */
/* Grid */
.container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 100px auto;
    padding: 0 35px;
    box-sizing: border-box;
}

/* For devices larger than 400px */
@media (max-width: 768px) {

    .container {
      margin: 50px auto;
    }
}

/* Blocks */

.mllr-accordion__panel[aria-hidden=true] {
  display: none;
}

.mllr-accordion__header {
  display: block;
}

/* title opened */
.mllr-accordion__header[aria-expanded="true"]:after {
  content: " - ";
}
/* title closed */
.mllr-accordion__header[aria-expanded="false"]:after {
  content: " + ";
}

.js-accordion h2, button.mllr-accordion__header {
  /*margin:0;*/
}

button.mllr-accordion__header {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

button.mllr-accordion__header span {
  pointer-events: none;
}

.js-accordion__panel {
  /*padding: 10px 20px;*/
}

.js-accordion h2.mllr-accordion__title {
  /*border-bottom: 1px solid var(--background);*/
}

/* Base Styles */
/* NOTE ... html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
/* html, body {
  height:100%;
} */
html {
    font-size: 62.5%;
}

body {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.5em;
    line-height: 1.6;
    font-weight: 400;
    color: #000000;
    /* max-width: 1580px; */
    margin: auto;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  font-weight: normal;
}

p {line-height: 1.35;}


h1 {
  font-size: 5.5rem;
}

h2, p.heading, p.about-location {
    font-size: 5.5rem;
}

h3 {
    font-size: 4.6rem;
}

h4 {
    font-size: 3.8rem;
}

p, li {
    font-size: 3rem;
    margin-top: 0;
}

/* Links */

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    display: inline-block;
    height: auto;
    /*padding: 10px 20px;*/
    text-align: center;
    /*font-size: 1.8rem;*/
    /*line-height: 1.4;*/
    /* letter-spacing: .1rem; */
    /*text-transform: uppercase;*/
    text-decoration: none;
    white-space: pre-wrap;
    /*border-radius: 2px;*/
    /*border: none;*/
    cursor: pointer;
    box-sizing: border-box;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
.woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:focus, .woocommerce button.button.alt:focus, .woocommerce input.button.alt:focus,
 {

    outline: 0;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #c1272d !important;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {

}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {

}

.search-no-results form {
  display: flex;
  gap: 1rem;
}

.search-no-results form input[type="submit"] {
  margin-bottom: 0;
  height: 40px;
}

/* Forms */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    /*height: 38px;*/
    padding: 8px 10px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    border: 1px solid #283179;
    border-radius: 5px;
    box-shadow: none;
    box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 65px;
    padding-top: 6px;
    padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: 1px solid var(--colorDarkGrey);
    outline-offset: -1px;
}

label,
legend {
    display: block;
    margin-bottom: .5rem;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

label>.label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal;
}

/* Lists */
ul {
    list-style: disc inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    /*margin-bottom: 2rem;*/
    /*margin-left: 20px;*/
    /*list-style-position: outside;*/
}

/* Code */
code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 4px;
}

pre>code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}

/* Tables */
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

/* Spacing */
/*button,
.button { margin-bottom: 1rem; }*/

input,textarea,select,fieldset { margin-bottom: 1.5rem; }

pre,blockquote,dl,figure,table,p,ul,ol,form { margin-bottom: 2.5rem; }

figure img {
  /* cursor: zoom-in; */
  width: 100%;
}

/* Utilities */
.u-full-width {
    width: 100%;
    box-sizing: border-box;
}

.u-max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

.wp-block-button__link {border-radius: 2px;}
.additional-content a {text-decoration:underline;}

/* Accessibility */

.screen-reader-label, .screen-reader-text, .screen-reader-text span, .screen-reader-shortcut {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.off_screen {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: .5em;
    margin: .5em;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr { background-color: #333133; }

iframe, img, .wp-caption.aligncenter { max-width: 100%; }

.fa-phone {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* Self Clearing */
.container:after,
.row:after,
.u-cf {
    content: "";
    display: table;
    clear: both;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

* html .clearfix {
    zoom: 1;
}

/* IE6 */
*:first-child+html .clearfix {
    zoom: 1;
}