/* @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;$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
$dark-blue:#001e60;$light-blue:#183c72;$dark-grey:#444;$light-grey:#e7eaf1;$dark-orange:#d4431c;$light-orange:#e87722;$bright-blue:#0077c8;$pale-blue:#e4f1f2;$purple:#93328e;$white:#ffffff;$teal:#00818a;$dark-teal:#005157;$green:#008a00;$text-colour:$dark-grey;$heading-colour:$dark-blue;$highlight-colour:$light-orange;$primary-colour:$dark-blue;$secondary-colour:$dark-orange;// Fonts
$font-light:'TeXGyreAdventor',sans-serif;$font-regular:'TeXGyreAdventor',sans-serif;$font-bold:'TeXGyreAdventor',sans-serif;$font-heading:'TeXGyreAdventor',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:$dark-orange;font-weight:bold;&:active,&:focus,&:hover{text-decoration:none;}}// Buttons@mixin button{@include body;display:inline-block;padding:2px 12px;border-radius:4px;color:$dark-blue;border:2px solid $light-grey;background-color:$light-grey;font-size:1.125rem;font-weight:bold;line-height:1.78;text-align:center;text-decoration:none;transition:all 0.2s ease-out;-webkit-appearance:none;@media screen and (min-width:$b-lg){padding:2px 1rem;font-size:1.5rem;line-height:1.5;}&:active,&:focus,&:hover{color:$white;background-color:$highlight-colour;border-color:$highlight-colour;cursor:pointer;}}@mixin buttonPrimary{@include button;color:$white;border-color:$dark-orange;background-color:$dark-orange;}@mixin buttonSecondary{@include button;color:$dark-orange;border-color:$dark-orange;background-color:$white;}@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 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:1rem;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.5;letter-spacing:0.3px;color:$text-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){font-size:1.125rem;line-height:1.56;}}// Headings@mixin h1{margin:24px 0 12px;font-family:$font-heading;font-size:2rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.38;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:3.5rem;line-height:1.14;}}@mixin h2{margin:24px 0 12px;font-family:$font-heading;font-size:1.5rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.5;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:2.25rem;line-height:1.22;}}@mixin h3{margin:24px 0 12px;font-family:$font-heading;font-size:1.375rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.45;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:1.75rem;line-height:1.29;}}@mixin h4{margin:24px 0 12px;font-family:$font-heading;font-size:1.25rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.4;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:1.5rem;line-height:1.33;}}@mixin h5{margin:24px 0 12px;font-family:$font-heading;font-size:1.125rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.33;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:1.25rem;line-height:1.4;}}@mixin h6{margin:24px 0 12px;font-family:$font-heading;font-size:1rem;font-weight:bold;font-stretch:normal;font-style:normal;line-height:1.5;letter-spacing:0.5px;color:$heading-colour;@media screen and (min-width:$b-md){}@media screen and (min-width:$b-lg){margin:2rem 0 1rem;font-size:1.125rem;line-height:1.33;}}@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;}@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:$dark-blue;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:$dark-blue;}cite{font-weight:normal;font-style:normal;margin-top:1.5rem;color:$dark-blue;@media screen and (min-width:$b-lg){margin-top:1rem;}}p{font-weight:bold;}}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:$dark-blue;}cite,.author{font-weight:normal;font-style:normal;margin-top:1.5rem;color:$dark-blue;@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;font-style:normal;margin-top:1.5rem;margin-bottom:0;color:$dark-blue;@media screen and (min-width:$b-lg){margin-top:1rem;}}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;}}}.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);}
.views-align-left{text-align:left;}.views-align-right{text-align:right;}.views-align-center{text-align:center;}.views-view-grid .views-col{float:left;}.views-view-grid .views-row{float:left;clear:both;width:100%;}.views-display-link + .views-display-link{margin-left:0.5em;}
#backtotop{background:#f7f7f7;border:1px solid #cccccc;border-radius:10px;bottom:20px;color:#333333;cursor:pointer;display:none;width:max-content;padding:10px 15px;position:fixed;right:20px;text-align:center;z-index:10;}#backtotop:hover{background:#eeeeee;}#backtotop:focus{opacity:0.6;outline:none;}
.js-media-library-widget-toggle-weight{display:none;}.media-library-add-form{margin-bottom:1rem;}.media-library-view.view > *{margin-bottom:0;}.media-library-view .form--inline > *{margin-bottom:0;}.media-library-view .form--inline *{margin-top:.25rem;margin-right:.25rem;}.media-library-view .form--inline input,.media-library-view .form--inline select{display:block;}.media-library-view .form--inline [id^='edit-actions']{display:flex;align-items:end;}.media-library-view .form--inline  [id^='edit-actions'] button,.media-library-view .form--inline  [id^='edit-actions'] input{margin:0;}.media-library-views-form .views-table{width:100%;}[dir="ltr"] ul.media-library-add-form__added-media{margin-left:0;}.media-library-item__attributes{width:100%;}.media-library-selection *:before,.media-library-selection *:after,.media-library-selection *,.media-library-views-form__rows *:before,.media-library-views-form__rows *:after,.media-library-views-form__rows *{box-sizing:content-box;}.media-library-item__preview{display:flex;justify-content:center;background-color:#ebebeb;}.ui-dialog-content .media-library-wrapper{margin:0;}.ui-dialog-content .media-library-content{padding:0;border-left:0;}.media-library-add-form__added-media:focus,.media-library-item--grid:focus{box-shadow:none!important;}.media-library-menu__link:focus:after,.media-library-item--grid.is-focus:before{border:none!important;}.media-library-selection .media-library-item--grid:focus .media-library-item__preview-wrapper{box-shadow:0 0 0 2px #fff,0 0 0 5px #0036b1!important;}
span.ext{width:10px;height:10px;padding-right:12px;text-decoration:none;background:url(/modules/contrib/extlink/images/extlink_s.png) 2px center no-repeat;}span.mailto{width:10px;height:10px;padding-right:12px;text-decoration:none;background:url(/modules/contrib/extlink/images/extlink_s.png) -20px center no-repeat;}span.tel{width:10px;height:10px;padding-right:12px;text-decoration:none;background:url(/modules/contrib/extlink/images/extlink_s.png) -42px center no-repeat;}svg.ext{width:14px;height:14px;fill:#727272;font-weight:900;}svg.mailto,svg.tel{width:14px;height:14px;fill:#727272;}[data-extlink-placement='prepend'],[data-extlink-placement='before']{padding-right:0.2rem;}[data-extlink-placement='append'],[data-extlink-placement='after']{padding-left:0.2rem;}svg.ext path,svg.mailto path,svg.tel path{stroke:#727272;stroke-width:3;}@media print{svg.ext,svg.mailto,svg.tel,span.ext,span.mailto,span.tel{display:none;padding:0;}}.extlink i{padding-left:0.2em;}.extlink-nobreak{white-space:nowrap;}
