/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
@use "sass:math";// Breakpoints
$b-sm:320px;$b-md:768px;$b-lg:1024px;$b-xl:1280px;$b-xxl:1440px;// Spotify embed breakpoints
$seb-sm:310px;$seb-md:452px;$seb-max:665px;$b-sm-max:($b-sm - 1);$b-md-max:($b-md - 1);$b-lg-max:($b-lg - 1);$b-xl-max:($b-xl - 1);$b-xxl-max:($b-xxl - 1);$text-max-width:773px;$img-max-width:971px;$container-max-width:1440px;// Brand colours (Rebrand 25)
$black:#000;$white:#FFF;$orange-core:#D03B20;$orange-core-10:#FAEBE9;$orange-core-20:#F6D8D2;$orange-core-80:#D9624D;$black-25:#BFBFBF;$black-50:#808080;$light-grey:#E7EAF1;$body-text-colour:#404040;$heading-colour:$orange-core;$terracotta-light:#FFDA7B;$terracotta-mid:#FB5732;$terracotta-dark:#7B0019;$blue-light:#9FC4FF;$blue-mid:#1800CC;$blue-dark:#111368;// Spacing
$spacing-1:0.25rem;// [4px]
$spacing-2:0.5rem;// [8px]
$spacing-3:0.75rem;// [12px]
$spacing-4:1rem;// [16px]
$spacing-5:1.25rem;// [20px]
$spacing-6:1.5rem;// [24px]
$spacing-7:1.75rem;// [28px]
$spacing-8:2rem;// [32px]
$spacing-9:2.25rem;// [36px]
$spacing-10:2.5rem;// [40px]
$spacing-11:2.75rem;// [44px]
$spacing-12:3rem;// [48px]
$spacing-13:3.25rem;// [52px]
$spacing-14:3.5rem;// [56px]
$spacing-15:3.75rem;// [60px]
$spacing-16:4rem;// [64px]
$spacing-17:4.25rem;// [68px]
$spacing-18:4.5rem;// [72px]
$spacing-19:4.75rem;// [76px]
$spacing-20:5rem;// [80px]
$spacing-21:5.25rem;// [84px]
$spacing-22:5.5rem;// [88px]
$spacing-23:5.75rem;// [92px]
$spacing-24:6rem;// [96px]
$spacing-25:6.25rem;// [100px]
$spacing-26:6.5rem;// [104px]
$spacing-27:6.75rem;// [108px]
$spacing-28:7rem;// [112px]

// Fonts
$font-light:'Roboto',sans-serif;$font-regular:'Roboto',sans-serif;$font-bold:'Roboto',sans-serif;$font-sans:'MND Sans',sans-serif;$font-heading:'MND Heading',sans-serif;$font-weight-bold:700;$remBase:16px;//MIXINS:// Shared component layout and spacing.@mixin component{@include body;box-sizing:border-box;width:100%;height:100%;margin:1.5rem auto;padding:0;@media screen and (min-width:$b-lg){margin:2rem 0;}}// Constrain width of text content.@mixin text-max-width{@media screen and (min-width:$b-lg){p,h1,h2,h3,h4,h5,h6,ul li,ol li,blockquote,cite,hr{max-width:$text-max-width;}img,iframe{max-width:$img-max-width;}}}// Links@mixin link{color:$orange-core;font-weight:bold;&:active,&:hover{text-decoration:none;}&:focus-visible{@include linkFocusState;}}// Buttons@mixin button{@include body;display:inline-block;padding:7px $spacing-5;font-size:1.25rem;border-radius:$spacing-7;color:$blue-dark;border:2px solid $light-grey;background-color:$light-grey;font-weight:bold;text-align:center;text-decoration:none;transition:all 0.2s ease-out;-webkit-appearance:none;&:active,&:focus-visible,&:hover{cursor:pointer;}}@mixin buttonPrimary{@include button;color:$white;border-color:$blue-mid;background-color:$blue-mid;&:hover{background-color:$blue-dark;border-color:$blue-dark;}&:focus-visible{@include buttonFocusState;background-color:$blue-mid;}}@mixin buttonSecondary{@include button;color:$white;border-color:$orange-core;background-color:$orange-core;&:hover{background-color:$terracotta-dark;border-color:$terracotta-dark;}&:focus-visible{@include buttonFocusState;}}@mixin buttonSecondaryDark{@include button;background-color:$white;border-color:$white;color:$orange-core;&:hover{color:$terracotta-dark!important;background-color:$orange-core-20;border-color:$orange-core-20;}&:focus-visible{@include buttonFocusState;background-color:$white;color:$orange-core;}}@mixin buttonTertiary{@include button;border-color:$orange-core;color:$orange-core;background-color:$white;&:focus-visible{@include buttonFocusState;background-color:$orange-core-10;color:$terracotta-dark;}}@mixin buttonFocusState{border-color:$black;outline:2px solid $terracotta-light;}@mixin linkFocusState{background-color:$terracotta-light;text-decoration:none;border-bottom:2px solid $black;outline:0;color:$black;padding-bottom:0;}@mixin inputFieldFocus{border:2px solid $black;outline:2px solid $terracotta-light;}@mixin filterChip{cursor:pointer;font-size:1.125rem;display:flex;align-items:center;padding:$spacing-1 $spacing-2;background-color:$orange-core-10;color:$orange-core;font-weight:700;&:hover{background-color:$orange-core-20;color:$terracotta-dark;text-decoration:underline;}&:focus-visible{border:2px solid $black;outline:2px solid $terracotta-light;}}@mixin container{@include body;width:100%;height:100%;max-width:1230px;margin:0 auto;padding:0 20px;box-sizing:border-box;@media screen and (min-width:$b-md){padding:0 34px;}@media screen and (min-width:$b-xxl){padding:0 20px;}}@mixin container-padding($side:''){padding:0 20px;@media screen and (min-width:$b-md){padding:0 34px;}@media screen and (min-width:$b-xxl){padding:0 20px;}@if $side == 'right'{padding:0 20px 0 0;@media screen and (min-width:$b-md){padding:0 34px 0 0;}@media screen and (min-width:$b-xxl){padding:0 20px 0 0;}}@if $side == 'left'{padding:0 0 0 20px;@media screen and (min-width:$b-md){padding:0 0 0 34px;}@media screen and (min-width:$b-xxl){padding:0 0 0 20px;}}}@mixin main-container{box-sizing:border-box;margin:0 auto;@media screen and (min-width:$b-lg){margin:2rem auto;}}@mixin body{font-family:$font-regular;font-size:1.125rem;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.5;color:$body-text-colour;}@mixin body-small{font-family:$font-regular;font-size:1rem;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.5;color:$body-text-colour;}@mixin subline{font-size:1.5rem;font-family:$font-sans;color:$orange-core;line-height:1.2;}// Headings@mixin h1{margin:24px 0 12px;font-family:$font-heading;font-weight:400;font-size:2.5rem;line-height:1;color:$heading-colour;@media screen and (min-width:$b-md){margin:2rem 0 1rem;font-size:5rem;line-height:1;}}@mixin h2{margin:24px 0 12px;font-family:$font-heading;font-weight:400;font-size:2rem;line-height:1;color:$heading-colour;@media screen and (min-width:$b-md){margin:2rem 0 1rem;font-size:3.5rem;}}@mixin h3{margin:24px 0 12px;font-family:$font-heading;font-weight:400;font-size:1.75rem;line-height:1;color:$heading-colour;@media screen and (min-width:$b-md){margin:2rem 0 1rem;font-size:2.5rem;}}@mixin h4{margin:24px 0 12px;font-family:$font-heading;font-size:1.5rem;font-weight:400;line-height:1.1;color:$heading-colour;@media screen and (min-width:$b-md){margin:2rem 0 1rem;font-size:2rem;}}@mixin h5{margin:24px 0 12px;font-family:$font-heading;font-weight:400;font-size:1.25rem;line-height:1.1;color:$heading-colour;@media screen and (min-width:$b-md){margin:2rem 0 1rem;font-size:1.5rem;}}@mixin h6{margin:24px 0 12px;font-family:$font-heading;font-weight:400;font-size:1.125rem;line-height:1.5;color:$heading-colour;}@mixin primaryCategory{font-size:1.125rem;color:$orange-core;font-weight:bold;background-color:$light-grey;margin:12px;padding:0 8px;border-radius:4px;display:inline;line-height:1.75rem;letter-spacing:0.019rem;}@function stripUnit($num){@return math.div($num,($num * 0 + 1));}@function convertToRem($value,$base-value:$remBase){$value:math.div(stripUnit($value),stripUnit($base-value)) * 1rem;@if ($value == 0rem){$value:0;}// Turn 0rem into 0@return $value;}@function remCalc($values,$base-value:$remBase){$max:length($values);@if $max == 1{@return convertToRem(nth($values,1),$base-value);}$remValues:();@for $i from 1 through $max{$remValues:append($remValues,convertToRem(nth($values,$i),$base-value));}@return $remValues;}// end - remCalc function,borrowed from Foundation

.is-hidden{display:none !important;}.hidden{display:none !important;}@mixin richText{h1{@include h1;}h2{@include h2;}h3{@include h3;}h4{@include h4;}h5{@include h5;}h6{@include h6;}a[href]{@include link;}p{@include body;margin:12px 0;> .button{margin:0.75rem 0;}@media screen and (min-width:$b-lg){margin:1rem 0;> .button{margin:1rem 0;}}}ol,ul{@include body;list-style-position:outside;padding:0 0 0 1.5rem;margin:12px 0;@media screen and (min-width:$b-lg){margin:1rem 0;}li{margin:0 0 12px;@media screen and (min-width:$b-lg){margin:0 0 8px;}&:last-of-type{margin-bottom:0;}&::marker{color:$blue-dark;font-weight:bold;width:28px;}}}img{display:block;max-width:100%;height:auto;}img,svg{vertical-align:middle;}button{border:0;padding:0;-webkit-appearance:none;}button,input[type=submit]{@include button;}.button,a[href].button{@include button;&--primary{@include buttonPrimary;}&--secondary{@include buttonSecondary;}margin:1.5rem 0;@media screen and (min-width:$b-lg){margin:2rem 0;}}blockquote{@include body;font-weight:bold;position:relative;margin:24px 0;padding-left:1rem;@media screen and (min-width:$b-lg){margin:2rem 0;padding-left:1.5rem;}&::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background-color:$blue-dark;}cite{font-weight:normal;font-style:normal;margin-top:1.5rem;color:$blue-dark;@media screen and (min-width:$b-lg){margin-top:1rem;}}p{font-weight:bold;}}blockquote{position:relative;margin:24px 0;padding-left:1rem;font-size:1.25rem;@media screen and (min-width:$b-lg){margin:2rem 0;font-size:1.5rem;padding-left:1.5rem;}&::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background-color:$orange-core;}cite,.author{font-weight:normal;font-style:normal;margin-top:1.5rem;color:$black;@media screen and (min-width:$b-lg){margin-top:1rem;}}img{margin-bottom:0!important;}p{font-weight:bold;}}.blockquote--author{display:inline-block;width:100%;font-weight:normal;line-height:1.4;font-size:1.25rem;margin-bottom:0;color:$black;padding:0 0 0 $spacing-6;border-left:4px solid $orange-core;box-sizing:border-box;@media screen and (min-width:$b-lg){font-size:1.5rem;}&:before,&:after{content:'';display:block;width:48px;height:36px;background-repeat:no-repeat;}&:after{background-image:url(/themes/custom/mnda_theme/icons/icon-quotes-end.svg);background-position:right;width:100%;margin-top:$spacing-3;}&:before{background-image:url(/themes/custom/mnda_theme/icons/icon-quotes.svg);margin-bottom:$spacing-3;border-left:20px solid $white;border-bottom:12px solid $white;margin-left:-48px;background-color:$white;}}div{margin:0;}img{float:none;max-width:100vw;margin:1.5rem -20px;@media screen and (min-width:$b-md){width:auto;margin:1.5rem -34px;}@media screen and (min-width:$b-lg){max-width:$img-max-width;margin:2rem 0;}}.align-center{max-width:$text-max-width;margin:0;figcaption,img{float:none;max-width:100%;margin:1.5rem auto;@media screen and (min-width:$b-md){margin:1.5rem auto;}@media screen and (min-width:$b-lg){margin:2rem auto;}}figcaption{text-align:center;}}.align-left{max-width:$text-max-width;margin:0;float:none;figcaption,img{@media screen and (min-width:$b-md){max-width:50%;float:left;margin:0 20px 2rem 0;}}}.align-right{max-width:$text-max-width;margin:0;float:none;figcaption,img{@media screen and (min-width:$b-md){max-width:50%;float:right;margin:0 0 2rem 20px;}}}.align-center,.align-left,.align-right{figcaption{clear:both;margin:-20px 0 0 0;@media screen and (min-width:$b-lg){margin:-30px 0 0 0;}}}.responsive-embed{padding-bottom:56.25%;min-width:100%;max-width:100vw;margin:1rem auto;@media screen and (min-width:$b-md){margin:1rem auto;}@media screen and (min-width:$b-lg){max-width:$img-max-width;margin:1rem 0;}}.align-right.embedded-entity,.align-left.embedded-entity,.align-center.embedded-entity,.align-right.media--type-image,.align-left.media--type-image,.align-center.media--type-image{img{@media screen and (min-width:$b-sm){margin:0px;}@media screen and (min-width:$b-lg){margin-right:20px;}}}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}.u-fullscreen{position:absolute;top:0px;right:0px;bottom:0;left:0;}.u-center{display:flex;align-items:center;justify-content:center;}.u-container{@include container;}
#edit-field-branch-geolocation-wrapper,#edit-custom-location-address-label{display:none;}.branch_search #block-heroblock h1{color:#001e60;}
.progress{position:relative;}.progress__track{min-width:100px;max-width:100%;height:16px;margin-top:5px;border:1px solid;background-color:#fff;}.progress__bar{width:3%;min-width:3%;max-width:100%;height:1.5em;background-color:#000;}.progress__description,.progress__percentage{overflow:hidden;margin-top:0.2em;color:#555;font-size:0.875em;}.progress__description{float:left;}[dir="rtl"] .progress__description{float:right;}.progress__percentage{float:right;}[dir="rtl"] .progress__percentage{float:left;}.progress--small .progress__track{height:7px;}.progress--small .progress__bar{height:7px;background-size:20px 20px;}
.ajax-progress{display:inline-block;padding:1px 5px 2px 5px;}[dir="rtl"] .ajax-progress{float:right;}.ajax-progress-throbber .throbber{display:inline;padding:1px 5px 2px;background:transparent url(/themes/contrib/stable/images/core/throbber-active.gif) no-repeat 0 center;}.ajax-progress-throbber .message{display:inline;padding:1px 5px 2px;}tr .ajax-progress-throbber .throbber{margin:0 2px;}.ajax-progress-bar{width:16em;}.ajax-progress-fullscreen{position:fixed;z-index:1000;top:48.5%;left:49%;width:24px;height:24px;padding:4px;opacity:0.9;border-radius:7px;background-color:#232323;background-image:url(/themes/contrib/stable/images/core/loading-small.gif);background-repeat:no-repeat;background-position:center center;}[dir="rtl"] .ajax-progress-fullscreen{right:49%;left:auto;}
.text-align-left{text-align:left;}.text-align-right{text-align:right;}.text-align-center{text-align:center;}.text-align-justify{text-align:justify;}.align-left{float:left;}.align-right{float:right;}.align-center{display:block;margin-right:auto;margin-left:auto;}
.fieldgroup{padding:0;border-width:0;}
.container-inline div,.container-inline label{display:inline;}.container-inline .details-wrapper{display:block;}
.clearfix:after{display:table;clear:both;content:"";}
.js details:not([open]) .details-wrapper{display:none;}
.hidden{display:none;}.visually-hidden{position:absolute !important;overflow:hidden;clip:rect(1px,1px,1px,1px);width:1px;height:1px;word-wrap:normal;}.visually-hidden.focusable:active,.visually-hidden.focusable:focus{position:static !important;overflow:visible;clip:auto;width:auto;height:auto;}.invisible{visibility:hidden;}
.item-list__comma-list,.item-list__comma-list li{display:inline;}.item-list__comma-list{margin:0;padding:0;}.item-list__comma-list li:after{content:", ";}.item-list__comma-list li:last-child:after{content:"";}
.js .js-hide{display:none;}.js-show{display:none;}.js .js-show{display:block;}
.nowrap{white-space:nowrap;}
.position-container{position:relative;}
.reset-appearance{margin:0;padding:0;border:0 none;background:transparent;line-height:inherit;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
.resize-none{resize:none;}.resize-vertical{min-height:2em;resize:vertical;}.resize-horizontal{max-width:100%;resize:horizontal;}.resize-both{max-width:100%;min-height:2em;resize:both;}
.system-status-counter__status-icon{display:inline-block;width:25px;height:25px;vertical-align:middle;}.system-status-counter__status-icon:before{display:block;content:"";background-repeat:no-repeat;background-position:center 2px;background-size:20px;}.system-status-counter__status-icon--error:before{background-image:url(/themes/contrib/stable/images/core/icons/e32700/error.svg);}.system-status-counter__status-icon--warning:before{background-image:url(/themes/contrib/stable/images/core/icons/e29700/warning.svg);}.system-status-counter__status-icon--checked:before{background-image:url(/themes/contrib/stable/images/core/icons/73b355/check.svg);}
.system-status-report-counters__item{width:100%;margin-bottom:0.5em;padding:0.5em 0;text-align:center;white-space:nowrap;background-color:rgba(0,0,0,0.063);}@media screen and (min-width:60em){.system-status-report-counters{display:flex;flex-wrap:wrap;justify-content:space-between;}.system-status-report-counters__item--half-width{width:49%;}.system-status-report-counters__item--third-width{width:33%;}}
.system-status-general-info__item{margin-top:1em;padding:0 1em 1em;border:1px solid #ccc;}.system-status-general-info__item-title{border-bottom:1px solid #ccc;}
.tablesort{display:inline-block;width:16px;height:16px;background-size:100%;}.tablesort--asc{background-image:url(/themes/contrib/stable/images/core/icons/787878/twistie-down.svg);}.tablesort--desc{background-image:url(/themes/contrib/stable/images/core/icons/787878/twistie-up.svg);}
.caption{display:table;}.caption > *{display:block;max-width:100%;}.caption > figcaption{display:table-caption;max-width:none;caption-side:bottom;}.caption > figcaption[contenteditable=true]:empty:before{content:attr(data-placeholder);font-style:italic;}
.caption .media .field,.caption .media .field *{float:none;margin:unset;}
