/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

:root {
	/* Base Colours */
	--clr-bg: #E9E8F0;
	--clr-bg-hov: #DDDCE7;
	--clr-navy: #1D1760; 
	--clr-sky: #1CA6DF;
	--clr-sky-dark: #0F7BB6;
	--clr-sky-light: #87BEDB;
	--clr-yellow: #FFD600;
	--clr-green: #00A880;
	--clr-green-dark: #007A5C;

	/* Fonts */
	--montserrat: "Montserrat", sans-serif;
	--oswald: "Oswald", sans-serif;

	--h1-size: clamp(1.5rem, 3vw, 2rem);
	--h2-size: clamp(1.25rem, 3vw, 1.75rem);
	--h3-size: clamp(1rem, 3vw, 1.25rem);

	/* Border Radius */
	--border-radius: 0.25em;
	--button-radius: 50vw;

	/* Padding */
	--content-spacing: clamp(1rem, 4vw, 2rem);
	--content-column-gutter: clamp(1rem, 4vw, 2rem);

	--container-padding-inline: clamp(1rem, 4vw, 2rem);
	--container-padding-block: clamp(1rem, 4vw, 2rem);

	--module-padding-inline: clamp(1rem, 4vw, 1.5rem);
	--module-padding-block: clamp(0.75rem, 4vw, 1.25rem);

	--button-padding-inline: 0.75em; 
	--button-padding-block: 1.25em;

	--break-1: 900px;

	--alert-green: var(--clr-green);
	--alert-amber: #FF8000;
	--alert-red: #FF0000;
}

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Layout
Non-cosmetic design patterns including grid and layout classes)
*/



#main-content {
	background: white;
}

#main-content .hs_cos_wrapper {
	container-type: inline-size;
}



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

body {
  background: var(--clr-navy);
	padding: 0;
	margin: 0;
}

.body-wrapper {
	  min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
}

.body-container-wrapper {
	display: flex;
	justify-content: center;
	padding-inline: 2rem;
	flex-basis: 100%;
	flex-grow: 10;
	align-items: flex-start;
	padding-bottom: 40px;
	min-height: 430px;
}

.main-content__body {
		width: 100%;
}

.sec-module-container {
	container-type: inline-size;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--content-spacing);
	padding-block: var(--content-spacing);
}

@media all and (min-width: 900px) {
	.main-content__body {
		width: clamp(275px, 100%, 1440px);
		padding-left: calc(259px + 99px);
	}
}



/* Mobile layout */ 

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}


/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}
.sec-components {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--container-padding-block);
}

.sec-component {
  display: grid;
	grid-template-columns: 1fr;
	gap: var(--module-padding-block);
}

.sec-component__header {
  display: grid;
}

.sec-component__header-title {
	font-size: var(--h2-size);
	margin: 0;
}

.sec-component__body {
  display: grid;
	grid-template-columns: 1fr;
	gap: var(--module-padding-block);
}

.module_placeholder{
	background-color: var(--clr-bg);
	padding: var(--container-padding-inline);
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
	font-family: var(--montserrat);
	color: var(--clr-navy);
}

.sec-h2 {
	font-size: clamp(20px, 5vw, 30px);
}

.sec-h3 {
	font-size: clamp(18px, 4vw, 22px);
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
	color: var(--clr-sky);
	text-decoration: underline;
	font-weight: 600;
}

a:hover {
	text-decoration: none;
}


/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
	font-family: var(--oswald);
	color: var(--clr-navy);
	font-weight: 600;
	text-transform: uppercase !important;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.sec-button,
.hs-button {
  cursor: pointer;
  display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
  	white-space: normal;
	border: 1px solid transparent;
	background: var(--clr-navy);
	color: white;
	transition: 300ms;
	border-radius: var(--button-radius);
	padding: 0.5rem 1.25rem;
	font-weight: 700;
	text-decoration: none;
}
.sec-button:hover,
.hs-button:hover {
	background: var(--clr-sky);
}

.sec-button--white {
	background: white;
	color: var(--clr-navy);
	border-color: var(--clr-navy);
}

.sec-button--yellow {
	border: 1px solid white;
	background: var(--clr-yellow);
	color: var(--clr-navy);
}

.sec-button--yellow:hover {
	background-color: var(--clr-green);
	color: white;
}

.sec-button--red {
	border-color: var(--alert-red);
	background: var(--alert-red);
	color: white;
}

.sec-button--red:hover {
	border-color: white;
	background-color: var(--clr-yellow);
	color: var(--clr-navy);
}

button:disabled,
.sec-button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
	cursor: not-allowed;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}





.sec-button--hover-white:hover {
	background: white;
	color: var(--clr-navy);
	border-color: var(--clr-navy);
}

.sec-button--hover-yellow:hover {
	border: 1px solid white;
	background: var(--clr-yellow);
	color: var(--clr-navy);
}

.sec-button--hover-red:hover {
	border-color: var(--alert-red);
	background: var(--alert-red);
	color: white;
}

.sec-button--hover-green:hover {
	background-color: var(--clr-green);
	color: white;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label,
.form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend,
.form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea,
.form input[type=text],
.form input[type=search],
.form input[type=email],
.form input[type=password],
.form input[type=tel],
.form input[type=number],
.form input[type=file],
.form select,
.form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea,
.form textarea {
  resize: vertical;
}

form fieldset,
.form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list,
.form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li,
.form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span,
.form .inputs-list input,
.form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio],
.form input[type=checkbox],
.form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file],
.form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p,
.form .hs-richtext,
.form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img,
.form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button,
.form input[type=submit],
.form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }










/* inline forms */

.sec-form.sec-form--inline {
	position: relative;
	margin-block: var(--content-spacing);
}


.sec-form.sec-form--inline .sec-form__body {
	background: var(--clr-bg);
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	border-radius: var(--border-radius);
	overflow: hidden;
}


.sec-form.sec-form--inline .hs-button.tiny{
	padding: 0.5em;
	line-height: 0.75em;
	font-size: 0.75em;
}

.sec-form.sec-form--inline .hs-button.small{
	padding: .25rem 0.75rem;
	line-height: 1em;
	font-size: 1em
}

.sec-form.sec-form--inline .loader{
	display: none;

	position: absolute;
	width: 64px;
	height: 64px;

	top: 50%;
	left: 50%;
	z-index: 1;

	background-color: rgba(29, 23, 96, 0.5);
	transform: translate(-50%) rotate(45deg);
	overflow: hidden;
}

.sec-form.sec-form--inline .loader:after{
	content: '';
	position: absolute;
	inset: 8px;
	margin: auto;
	background: var(--clr-navy);
}
.sec-form.sec-form--inline .loader:before{
	content: '';
	position: absolute;
	inset: -15px;
	margin: auto;
	background: var(--clr-yellow);
	animation: diamondLoader 2s linear infinite;
}


.sec-form.sec-form--inline.is-loading a,
.sec-form.sec-form--inline.is-loading input,
.sec-form.sec-form--inline.is-loading select,
.sec-form.sec-form--inline.is-loading iframe,
.sec-form.sec-form--inline.is-loading button{ pointer-events: none; }

.sec-form.sec-form--inline.is-loading .sec-form__body{ filter: blur(2px); }
.sec-form.sec-form--inline.is-loading .loader { display: block; }

.form-help{ font-size: 0.85em; }

form .hs-form-field--group,
.form .hs-form-field--group{
	background-color: #FFF;
	margin-bottom: 1.4rem;
	padding-block: var(--module-padding-block);
	padding-inline: var(--module-padding-inline);
}

.hs-form-field--group-row{
	display: grid;
	gap: 1em;
	grid-template-columns: 1fr;
}

.hs-form-field--group-row[data-cols="2"]{
	grid-template-columns: 1fr 1fr;
}

.hs-form-field--group-row[data-cols="3"]{
	grid-template-columns: 1fr 1fr 1fr;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.modal{
	position: fixed;
	inset: 0;
	padding: 0;
	margin: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999;
  opacity: 0;
	transform: translateX(-100%);
	align-items: center;
	transition: opacity 300ms;
	background: var(--clr-navy);
	display: grid;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 20px;
}

body.modal-open .modal.open{
  opacity: 1;
	transform: translateX(0);
}

.modal--wrapper{
	z-index: 2;
	position: relative;
	display: grid;
	margin: auto;
	max-width: 550px;
	width: 90vw;
	border-radius: var(--border-radius);
	overflow: hidden;
	transform: translateY(20%);
	transition: transform 300ms;
}

body.modal-open .modal--wrapper {
	transform: translateY(0)
}

.modal--header{
	background-color: var(--clr-yellow);
	color: var(--clr-navy);
	padding: 1em 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}

.modal--header-close {
	border: none;
	background: none;
	font-size: 1.25em;
	cursor: pointer;
	border-radius: 50vw;
	transition: background-color 300ms, color 300ms;
	width: 40px;
	height: 40px;
	display: grid;
	align-items: center;
	justify-content: center;
}

.modal--header-close:hover {
  background-color: var(--clr-sky);
	color: white;
}

.modal--body{
	padding: 2em;
	background-color: #f5f6f9;
	
	max-height: calc(100dvh - 72px - 2.5em);	/* 100% - height of modal header - margin around the whole modal itself */
	overflow-y: scroll;
}

.modal-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	
}

.modal-form--row {
	display: grid;
	grid-template-columns: 1fr;
}

.modal-form--row[data-cols="2"] {
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	
}

.modal-form--col {
	display: grid;
	gap: 0.25rem;
	grid-template-columns: 1fr;
}

.modal-form--col label {
  font-size: 14px;
	font-weight: 500;
}

.modal-form--col input ,
.modal-form--col select {
  padding-inline: 0.75em;
	padding-block: 0.5rem;
	font-size: 16px;
	font-family: inherit;
	width: 100%;
}

.modal-form--col label input[type="checkbox"]{
	display: inline-block;
	position: relative;
	top: 2px;
	width: auto;
}


.modal--footer{
	
}

.modal-form__submit {
	border: none;
	background: var(--clr-navy);
	color: white;
	padding: 0.75em 1.25em;
	border-radius: 50vw;
	font-weight: bold;
	transition: background-color 300ms;
	cursor: pointer;
	margin-top: 0.5rem;
}

.modal-form__submit:hover {
	background: var(--clr-sky);

}
	
.modal-form{

}

select.has-error,
input.has-error{ border: 1px solid red; }









/* Modal Loader */


.modal .loader{
	display: none;

	position: absolute;
	width: 64px;
	height: 64px;

	top: 50%;
	left: 50%;
	z-index: 1;

	background-color: rgba(29, 23, 96, 0.5);
	transform: translate(-50%) rotate(45deg);
	overflow: hidden;
}

.modal .loader:after{
	content: '';
	position: absolute;
	inset: 8px;
	margin: auto;
	background: var(--clr-navy);
}
.modal .loader:before{
	content: '';
	position: absolute;
	inset: -15px;
	margin: auto;
	background: var(--clr-yellow);
	animation: diamondLoader 2s linear infinite;
}


.is-loading .modal a,
.is-loading .modal input,
.is-loading .modal iframe,
.is-loading .modal button{ pointer-events: none; }

.is-loading .modal-form,
.is-loading .modal--header > *{ filter: blur(2px); }
.is-loading .modal .loader { display: block; }

/* Macros
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * EVENTS
 *  - Used in TEMPLATE file 'SEC/templates/private/events.html'
 *  - Used in MACRO file 'SEC/macros/events.html'
 *    - event_group()
 *    - event_list_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-events {
	
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO event_group
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-events-group {
  display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.sec-events-group__header-title {
	margin: 0;
	font-size: var(--h3-size);
}


.sec-events-group__body {
	border-radius: var(--border-radius);
	overflow: hidden;
	display: grid;
	gap: 1px;
	container-type: inline-size;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO event_list_item
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.sec-event-list__link {
	min-height: 100px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: stretch;
	gap: 1px;
	text-decoration: none;
	color: var(--clr-navy);
	container-type: inline-size;
	transition: 300ms;
}

.sec-event-list__link-body {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	display: grid;
	grid-template-columns: 100px 1fr;
	align-items: stretch;
	gap: 1em;
	background: var(--clr-bg);
	transition: 300ms;
}

.sec-event-list__link:hover .sec-event-list__link-body {
	background: var(--clr-bg-hov)
}

.sec-event-list__link:hover .sec-event-list__link-date {
	border-color: var(--clr-sky);
}


.sec-event-list__link.is_testing .sec-event-list__link-date{ border-color: var(--clr-yellow); }
.sec-event-list__link.is_admin .sec-event-list__link-date{ border-color: var(--alert-amber); }

.sec-event-list__link-footer {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	align-items: center;
	background: var(--clr-bg);
	transition: 300ms;
}

.sec-event-list__link:hover .sec-event-list__link-footer  {
	color: white;
	background: var(--clr-sky);
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
}

.sec-event-list__link.is_testing:hover .sec-event-list__link-footer{ background-color: var(--clr-yellow); }
.sec-event-list__link.is_admin:hover .sec-event-list__link-footer{ background-color: var(--alert-amber); }

@container (max-width: 470px) {
	.sec-event-list__link-body {
	  grid-template-columns: 1fr;
	}
	
	.sec-event-list__link-date {
		display: grid;
		grid-template-columns: auto auto;
		align-items: center;
		justify-content: flex-start !important;
		gap: 1rem;
	}
}

.sec-event-list__link-date {
	display: grid;
	justify-content: center;
	text-align: center;
	line-height: 1;
	border-left: 4px solid var(--clr-navy);
	padding-inline: 1rem;
	transition: 300ms;
	position: relative;
}

.sec-event-list__link-time span {
	text-transform: lowercase;
}

.sec-event-list__link-date::after {
	content: '';
	position: absolute;
	top: 0;
	right: calc(100% + 2px);
	width: 0px;
	height: 100%;
	background: var(--clr-navy);
	transition: 300ms;
}

.sec-event-list__link:hover .sec-event-list__link-date::after {
  width: 20px;
	border-top-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
	background: var(--clr-sky);
}

.sec-event-list__link.is_testing:hover .sec-event-list__link-date::after{ background-color: var(--clr-yellow); }
.sec-event-list__link.is_admin:hover .sec-event-list__link-date::after{ background-color: var(--alert-amber); }

.sec-event-list__link-date-number {
	font-size: 3em;
	font-weight: 700;
}

.sec-event-list__link-date-month {
	
}

.sec-event-list__link-details {
	display: flex;
	flex-direction: column;
	align-items: space-between;
	gap: 1rem;
	container-type: inline-size;
}

.sec-event-list__link-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1em;
	font-size: 1.5em;
	font-weight: 700;
	transition: 300ms;
}

.sec-event-list__link-title i {
	font-size: 1em !important;
}

.sec-event-list__link-info {
	font-weight: 400;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
  row-gap: 0.375rem;
	color: #555555;
	font-size: 0.875em;
}
.sec-event-list__link-info > span {
	display: flex;
	gap: 1em;
}

@container (max-width: 470px) {
	.sec-event-list__link-info {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 1200px) {
	.my-events .sec-event-list__link-title {
		flex-direction: column;
		gap: 0.5em;
	}
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO event_single
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-event__hero {
  position: relative;
  z-index: 50;
  width: 100%;
  aspect-ratio: 2 / 1;
}

.sec-event__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 50;
  border-radius: var(--border-radius);
}

.sec-event__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3vw;
}
 
.sec-event__content {

}

.sec-event__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sec-event__purchase {
  background: var(--clr-sky);
  padding: 1rem;
  text-align: center;
  border-radius: var(--border-radius);
  display: grid;
  gap: 0.5rem;
}

.sec-event__purchase-price {
  font-size: 1.5em;
  color: white;
  font-family: var(--oswald);
}

.sec-event__purchase-button{
	border-color: var(--clr-navy);
	background: var(--clr-yellow);
	color: var(--clr-navy);
}

.sec-event__purchase-button:hover{
	border-color: white;
	color: white;
	background: var(--clr-navy);
}

.sec-event__details {
  background: var(--clr-bg);
  padding: 1rem;
  display: grid;
  gap: 1rem;
  border-radius: var(--border-radius);
}

.sec-event__details-title {
 color: var(--clr-sky); 
  margin: 0;
  font-size: 1rem;
}

.sec-event__details-row {
  display: grid;
  grid-template-columns: 30px 1fr;
}

.sec-event__details-row-icon {
 color: var(--clr-sky);
}
 
.sec-event__details-row-data--s {
  display: grid;
  gap: 0.5em;
}

.sec-event__details-row-data-sub {
  display: grid;
  grid-template-columns: 100px 1fr;
  
}

.sec-event__contact {
 display: grid;
  grid-template-columns: auto;
  font-size: 0.875rem;
  padding-top: 3em;
}

@media (min-width: 900px) {
  .sec-event__hero {
    margin-top: -14.5rem
  }
}



@container (min-width: 750px) {
 
  
  .sec-event__body {
    grid-template-columns: 1fr 300px;
  }

}



.hs-responsive-embed-wrapper.hs-responsive-embed{
	padding: 0 !important;
	margin: 0 !important;
	max-width: 100% !important;
}




.sec-event-tickets .modal-form--row.contact-detail--name{
	padding-bottom: 1rem;
}

.sec-event-tickets .modal-form--row.select-type{
	margin-top: 1rem;
	border-top: 1px solid #CCC;
	padding-top: 1rem;
}

.sec-event-tickets .modal-form--row.select-qty{
	padding-top: 1rem;
	border-bottom: 1px solid #CCC;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

.sec-event-tickets .event-attendee + .event-attendee{
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px solid #EEE;
}

.sec-event-tickets .event-attendee:last-child{
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #CCC;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * DOWNLOADS
 *  - Used in TEMPLATE file 'SEC/templates/private/downloads.html'
 *  - Used in MACRO file 'SEC/macros/downloads.html'
 *    - download_magazine()
 *    - download_group()
 *    - download_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.sec-downloads {
	--group-title-size: 1.5rem;
	--group-title-weight: 700;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO download_magazine()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.sec-downloads-magazine {
	display: grid;
	grid-template-columns: 1fr 110px;
	grid-template-rows: 1fr;
  align-items: stretch;
	color: white;
	gap: 1px;
	text-decoration: none;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.sec-downloads-magazine__body {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	background: var(--clr-sky);
	display: grid;
	grid-template-columns: 1fr;	
  align-items: center; 
	transition: 300ms;
}

.sec-downloads-magazine__footer {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	background: var(--clr-sky);
	display: grid;
  align-items: center;
	justify-content: flex-end;
	transition: 300ms;
}

.sec-downloads-magazine__title {
	font-family: var(--oswald);
	font-size: var(--group-title-size);
	font-weight: var(--group-title-weight);
	flex-basis: 100%;
	text-align: center;
}

.sec-downloads-magazine__issue {
	font-size: 1.25rem;
	text-align: center;
}

.sec-downloads-magazine__size {
}

.sec-downloads-magazine__size-btn {
	
}

.sec-downloads-magazine:hover .sec-downloads-magazine__body {
	background: var(--clr-sky-dark);
}

.sec-downloads-magazine:hover .sec-downloads-magazine__footer{
	background: var(--clr-yellow);
	color: var(--clr-navy);
}

@container (min-width: 520px) {
  .sec-downloads-magazine__body {
	  grid-template-columns: auto 1fr;	
	}
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO download_group()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */
 
.sec-downloads-grp {
	display: grid;
	gap: 1px;
	grid-template-columns: 1fr;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.sec-downloads-grp__header {
	background: var(--clr-bg-hov);
	font-family: var(--oswald);
	color: var(--clr-navy);
	font-size: var(--group-title-size);
	font-weight: var(--group-title-weight);
	text-transform: uppercase;
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	align-items: center;
	cursor: pointer;
	border: none;
	text-align: left;
	transition: 300ms;
}
.sec-downloads-grp__header.closed {
	background: var(--clr-bg);
}

.sec-downloads-grp__header:hover {
	background: var(--clr-bg-hov);
}

.sec-downloads-grp__header > i {
	transition: 300ms;
}

.sec-downloads-grp__header.closed > i {
	transform: rotate(180deg);
}

.sec-downloads-grp__body {
}
.sec-downloads-grp__body-pad {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
}

.images > .sec-downloads-grp__body-pad {
	grid-template-columns: 1fr 1fr 1fr;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO download_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-downloads__item {
	display: grid;
	grid-template-columns: 1fr 110px;
	grid-template-rows: 1fr;
	gap: 1px;
	align-items: stretch;
	color: var(--clr-navy);
	text-decoration: none;
}

.images .sec-downloads__item {
	grid-template-columns: 1fr;
}

.sec-downloads__item-image {
	display: grid;
	gap: 1px;
	background: var(--clr-bg);
	transition: 300ms;
	position: relative;
	overflow: hidden;
}

.sec-downloads__item:hover .sec-downloads__item-image {
	background: var(--clr-bg-hov);
}

.sec-downloads__item-img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	position: relative;
	z-index: 20;
}
.sec-downloads__item-img-blur {
	position: absolute;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
  filter: blur(10px);
	z-index: 1;
  object-fit: cover;
	opacity: 0.5;
}

.sec-downloads__item-name {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	font-weight: 700;
	background: var(--clr-bg);
	transition: 300ms;
	display: grid;
	align-items: center;
}


.sec-downloads__item:hover .sec-downloads__item-name {
	background: var(--clr-bg-hov)
}

.sec-downloads__item-size {
	padding-inline: var(--module-padding-inline);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: var(--clr-bg);
	transition: 300ms;
}

.images .sec-downloads__item-size {
	justify-content: center;
	padding-block: var(--module-padding-inline);
}


.sec-downloads__item:hover .sec-downloads__item-size {
	background: var(--clr-sky);
	color: white;
}

.sec-downloads__item-size-btn {
	display: flex;
	gap: 0.5rem;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MEMBERSHIPS
 *  - Used in TEMPLATE file 'SEC/templates/private/membership.html'
 *  - Used in MACRO file 'SEC/macros/membership.html'
 *    - membership_status()
 *    - membership_status_renew_button()
 *    - magazine_status_large()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-memberships {

}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO membership_status()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-membership-status {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.sec-membership-status__body {
	display: grid;
	grid-template-columns: auto auto auto;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	background: var(--clr-sky);
	color: white;
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	font-size: var(--h2-size);
	font-family: var(--oswald);
	font-weight: 700;
	position: relative;
	overflow: hidden;
}

.sec-membership-status__progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--clr-sky-dark);
	transform-origin: center left;
	transform: scaleX(0);
	transition: transform 300ms;
}

.sec-membership-status__progress.inactive { opacity: 0.7; }
.sec-membership-status__progress.pending_review { opacity: 0.8; }
.sec-membership-status__progress.overdue { background-color: var(--alert-red); }
.sec-membership-status__progress.today { background-color: var(--alert-amber); }

.sec-membership-status__body-item {
	display: grid;
	gap: 1px;
	position: relative;
	z-index: 20;
}
.sec-membership-status__body-label {
	font-family: var(--montserrat);
	font-size: 1rem;
	font-weight: 500;
}
.sec-membership-status__body-date-val {
	
}

.sec-membership-status__footer {
	display: grid;
	grid-template-columns: 1fr;
}

.sec-membership-status__footer-cta {
	text-decoration: none;
	color: inherit;
	display: flex;
	justify-content: center;
	padding-inline: var(--module-padding-inline);
	padding-block: calc(var(--module-padding-block) / 2);
	background: var(--clr-yellow);
	color: var(--clr-navy);
	transition: 300ms;
}

.sec-membership-status__footer-cta i {
	 margin-right: 0.5rem;
}

.sec-membership-status__footer-cta:hover {
	background: var(--clr-green);
	color: white;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO membership_status_renew_button()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-membership-renew-btn {
	display: grid;
}

.sec-membership-renew-button {
	display: grid;
	padding: 0.5rem;
	background: var(--clr-yellow);
	text-decoration: none;
}

.sec-membership-renew-button i {
  margin-right: 0.5em;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO magazine_status_large()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-mag-stat-lrg {
	display: grid;
	align-items: center;
	justify-content: center;
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	border-radius: var(--border-radius);
	color: white;
	text-align: center;
	gap: calc(var(--module-padding-block) / 2);
	background: var(--alert-green);
}

.alert{
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	border-radius: var(--border-radius);
	color: white;
	background: var(--alert-green);
	margin-bottom: var(--content-spacing);
	position: relative;
}

a.alert-close {
	text-decoration: none;
	position: absolute;
	top: 0.25em;
	right: 0.5em;
	text-align: center;
}
a.alert-close:hover{
	color: var(--clr-navy);
}

.alert.closed{ display: none; }

.alert > p:last-child{
	margin-bottom: 0;
}

.alert--green {
	background: var(--alert-green);
}

.alert--amber {
	background: var(--alert-amber);
}

.alert--red {
	background: var(--alert-red);
}

.alert a{
	color: inherit;
}

.alert--yellow {
	background: var(--clr-yellow);
	color: var(--clr-navy);
}

.sec-mag-stat-lrg__title {
	color: inherit;
	margin: 0;
	font-size: var(--h2-size);
}

.sec-mag-stat-lrg__title > span {
	opacity: 0.75;
}

.sec-mag-stat-lrg__reason {
	margin: 0;
	
}

.sec-mag-stat-lrg__state {
	margin: 0;
	font-weight: bold;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * ORDERS
 *  - Used in TEMPLATE file 'SEC/templates/private/orders.html'
 *  - Used in MACRO file 'SEC/macros/orders.html'
 *    - orders_headers()
 *    - orders_list()
 *    - order_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.sec-orders {
	
}

.sec-orders__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	overflow: hidden;
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * SHARED STYLES
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-order-row {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr 1fr;
	align-items: stretch;
}

.sec-order-row.past-order {
	grid-template-columns: 1fr 1fr 3fr;
}

.sec-order-row.no-actions {
	grid-template-columns: 1fr 1fr 3fr;
}

.sec-order-row__col {
  padding: 0.75rem 1.25rem;	
	display: grid;
	align-items: center;
	grid-template-columns: 1fr;
	background: var(--clr-bg);
	transition: background-color 300ms;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO orders_headers()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-order-row--header {
	background: var(--clr-navy);
	color: white;
	font-weight: bold;
}

.sec-order-row--header .sec-order-row__col {
	background: none !important;
}




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO orders_list()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO order_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-order-row--item a {
	text-decoration: none;
}

.sec-order-row__col--item {
	color: inherit;
	font-weight: normal;
}

.sec-order-item {
	display: grid;
}

.sec-order-item__type {
	opacity: 0.5;
	font-weight: 500;
	font-size: 0.875em;
}

.sec-order-item__name {
	font-weight: 700;
	
}

.sec-order-details {
	display: grid;
	font-size: 0.875rem;
  gap: 0.25em;
}


.sec-order-details__row {
	display: grid;
	grid-template-columns: 80px auto;
  gap: 0.5em;
}

.sec-order-details__row .sec-order-details__label {
	font-weight: 700;
	opacity: 0.75;
}


.sec-order-row__col--detail {
	color: inherit;
	font-weight: normal;
}


.sec-order-row__col--actions {
	padding: 0;
}

.sec-order-actions {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr auto;
	grid-template-rows: 1fr;
	gap: 1px;
	height: 100%;
	background: white;
}

.sec-order-actions-1 {
	border-left: 1px solid white;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	height: 100%;
}

.sec-order-actions-2 {
	border-left: 1px solid white;
	height: 100%;
	padding-inline:var(--module-padding-inline);
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	transition: 300ms;
	background: var(--clr-bg);
}

.sec-order-action {
	padding: var(--module-padding-inline);
	background: var(--clr-bg);
	font-size: 0.875rem;
  	white-space: nowrap;
	line-height: 1;
	transition: 300ms;
	text-align: center;
}

.sec-order-row--item.no-invoice .sec-order-action:hover {
	background: var(--clr-sky);
	color: white;
}

.sec-order-action--cancel:hover {
	color: white;
	background: var(--alert-red);
}



.sec-order-row--item.hover:not(.hover--cancel) .sec-order-row__col--order,
.sec-order-row--item.hover:not(.hover--cancel) .sec-order-row__col--item,
.sec-order-row--item.hover:not(.hover--cancel) .sec-order-row__col--detail{
	background: var(--clr-bg-hov);
}

.sec-order-row--item.hover:not(.hover--cancel) .action--pay{
	background: var(--clr-sky);
	color: #fff;
}

.sec-order-row--item.hover:not(.hover--cancel) .sec-order-actions-2{
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
	background: var(--clr-sky);
	color: white;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * TEAMS
 *  - Used in TEMPLATE file 'SEC/templates/private/teams.html'
 *  - Used in MACRO file 'SEC/macros/teams.html'
 *    - teams_header()
 *    - teams_list()
 *    - teams_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */




/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * SHARED STYLES
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-team__group {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-bottom: 3rem;
}

.sec-team__group-header {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	
}

.sec-team__group-col {
	font-family: var(--oswald);
	font-size: var(--h2-size);
	font-weight: 700;
}

.sec-team__group-col span {
	color: var(--clr-sky);
}

.sec-team__group-body {
	border-radius: var(--border-radius);
	overflow: hidden;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO teams_list()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-teams-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO teams_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.sec-teams-item {
	display: grid;
	grid-template-columns: 3fr 1fr 2fr 2fr;
	background: var(--clr-bg);
	align-items: center;
	transition: 300ms;
}

.sec-teams-item:hover {
	background: var(--clr-bg-hov);
}


.sec-teams-item.primary_account_holder,
.sec-teams-item.primary_account_holder:hover {
  background: var(--clr-sky);
	color: white;
}

.sec-teams-item__details {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	
}

.sec-teams-item__name {
	font-weight: 700;
	font-size: 1.125em;
	
}

.sec-teams-item__details-email {
	
}

.sec-teams-item__role {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	
}

.sec-teams-item__activity {
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	
}

.sec-teams-item__label {
	font-size: 0.875em;
	font-weight: 500;
	opacity: 0.75;
}

.sec-teams-item__value {
	font-weight: 600;
}


.sec-teams-item__actions {
	display: grid;
	gap: 1px;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr;
	background: white;
	border-left: 1px solid white;
}

.sec-teams-item__actions.single-action {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.owner .sec-teams-item__actions {
	background: #FFF;
	border: none;
}

.sec-teams-item__action {
  border: none;
	background: none;
	color: inherit;
	background: var(--clr-bg);
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	cursor: pointer;
	color: var(--clr-sky);
	font-weight: 600;
	transition: 300ms;
}

.sec-teams-item:hover .sec-teams-item__action{
	background: var(--clr-bg-hov);
}

.sec-teams-item__action:hover,
.sec-teams-item:hover .sec-teams-item__action:hover {
	background: var(--clr-sky);
	color: white;
	border-top-right-radius: 3rem;
	border-bottom-right-radius: 3rem;
}


.sec-teams-item__action.alert {
	color: var(--alert-red);
	margin-bottom: 0;
}

.sec-teams-item__action.alert:hover,
.sec-teams-item:hover .sec-teams-item__action.alert:hover {
	background: var(--alert-red);
	color: white;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * TABS
 *  - Used in TEMPLATE file 'SEC/templates/private/orders.html'
 *  - Used in TEMPLATE file 'SEC/templates/private/events.html'
 *  - Used in MACRO file 'SEC/macros/tabs.html'
 *  - Used in MACRO file 'SEC/macros/events.html'
 *    - orders_tabs()
 *    - events_tabs()
 *    - tab()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO orders_tabs() & events_tabs()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-tabs {
	display: flex;
	gap: 1px;
	border-bottom: 1px solid var(--clr-navy);
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO tab()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-tabs__tab {
	display: flex;
	padding: 0.75em 1.5em;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	color: var(--clr-navy);
	background: var(--clr-bg);
	text-decoration: none;
	font-family: var(--oswald);
	font-size: var(--h3-size);
	transition: 300ms;
	position: relative;
}

.sec-tabs__tab-label {
	display: inline-block;
	transition: transform 300ms;
}

.sec-tabs__tab:after {
	content: '';
	position: absolute;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	top: 0;
	left: 0;
	width: 100%;
  height: calc(var(--border-radius) * 2);
	background: var(--clr-bg);
	transition: height 300ms, background-color 300ms, transform 300ms;
}

.sec-tabs__tab:hover:after {
	transform: translateY(calc(var(--border-radius) * -1));
	background: var(--clr-sky);
}

.sec-tabs__tab:hover {
	background: var(--clr-sky);
	color: white;
}
.sec-tabs__tab.active .sec-tabs__tab-label,
.sec-tabs__tab:hover .sec-tabs__tab-label {
	transform: translateY(-5px);
}

.sec-tabs__tab.active:after {
	background: var(--clr-navy);
	transform: translateY(calc(var(--border-radius) * -1));
	
}
.sec-tabs__tab.active:hover,
.sec-tabs__tab.active {
	background: var(--clr-navy);
	color: white;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * TEAMS
 *  - Used in TEMPLATE file 'SEC/templates/partials/listings-list.html'
 *  - Used in TEMPLATE file 'SEC/templates/partials/listings-single.html'
 *  - Used in MACRO file 'SEC/macros/listings.html'
 *    - listings_list_item()
 *    - listings_filters()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * TEMPLATE 'listings-single'
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.listing-single {
	display: grid;
	grid-template-columns: 1fr 300px;
	grid-template-rows: 1fr;
	gap: 60px;
	padding-block: var(--container-padding-block);
}

.listing-single__body {
	display: flex;
	flex-direction: column;
}

.listing-single__back {
	margin-top: auto;
	display: flex;
}

.listing-single__aside {
	/* display: grid;
	grid-template-columns: 1fr; */
	gap: 2em;

	display: flex;
	flex-direction: column;
}

.listing-details {
	background: var(--clr-bg);
	padding: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	border-radius: var(--border-radius);
}

.listing-details__title {
	margin: 0;
	font-size: 1rem;
	color: var(--clr-sky);
}

.listing-details__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
}

.listing-details__item i {
	color: var(--clr-sky);
}

.listing-details__social-links {
	display: flex;
	justify-content: space-evenly;
}

.listing-details__contact {
  
}

.listing-details__contact-name {
	margin-bottom: 0.375em;
	text-transform: normal;
}

.listing-single__aside .listing-details .sec-listings-item__image{
	display: block;
	aspect-ratio: initial;
}

@media screen and (max-width: 1200px){
	.listing-single{
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 900px){
	
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO listings_list_item()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

 .sec-listings-wrapper{
	position: relative;
 }

.sec-listings {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax(275px, 1fr) );
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}

.sec-listings-item {
	display: grid;
	grid: 1fr auto / 1fr;
	gap: 0;
	background: white;
	padding: 1.5em;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc; 
	line-height: 1;
}

.sec-listings-item__link {
	display: block;
	grid: auto 1fr / 1fr;
	grid-template-columns: 1fr;
	gap: 1em;
	text-decoration: none;
}

.sec-listings-item__image {
	display: block;
	grid: 1fr / 1fr;
	background: #f5f6f9;
	padding: 1em;
	aspect-ratio: 3 / 2;

	max-height: 200px;
}

.sec-listings-item__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.sec-listings-item__body {
	display: grid;
	grid: auto 1fr / 1fr;
	gap: 1em;

	margin-top: 1rem;
}

.sec-listings-item__type {
	font-family: var(--oswald);
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 500;
}

.sec-listings-item__name {
	font-family: var(--oswald);
	color: var(--clr-navy);
	display: grid;
	align-items: center;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	font-size: 1.5rem;
	transition: color 300ms;
	align-items: flex-start;
}

.sec-listings-item__link:hover .sec-listings-item__name {
	color: var(--clr-sky);
}

.sec-listings-item__name i {
	font-size: 1rem;
}

.sec-listings-item__website {
	text-decoration: none; 
	display: flex;
	padding-top: 1.5rem;
}

.sec-listings-item__website span {
	padding: 11px 22px;
	border-radius: 100vw;
	color: white;
	background: #666;
	font-size: 12px;
	transition: background-color 300ms;
}

.sec-listings-item__website:hover span {
	background: var(--clr-sky);
}

@media (min-width: 1200px) {
	.sec-listings{
		grid-template-columns: 1fr 1fr 1fr;
	}
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * MACRO listings_filters()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */

.sec-listings-filters {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
}

.sec-listings-filters__header {
	background: var(--clr-sky);
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	color: white;
	font-family: var(--oswald);
	font-size: 1.25em;
}

.sec-listings-filters__body {
	background: var(--clr-bg);
	padding-inline: var(--module-padding-inline);
	padding-block: var(--module-padding-block);
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.sec-listings-filters__filter {
	display: grid;
	grid-template-rows: auto 1fr;
}

.sec-listings-filters__filter label {
	opacity: 0.6;
	font-weight: 600;
	font-family: inherit;
	margin: 0;
}

.sec-filter--actions label {
	display: none;
}

.sec-listings-filters__filter select,
.sec-listings-filters__filter input[type=text] {
	padding: 8px !important;
	font-family: inherit;
	border: 1px solid #ccc;
	border-radius: var(--border-radius);
}

.sec-filter--actions { padding-top: 8px; }

.sec-listings-filters__filter input[type=submit] {
	background: var(--clr-navy);
	color: white;
	font-weight: 600;
	border: none;
	border-radius: 8vw;
	padding: var(--button-padding-block)!important;
}

.sec-listings-filters__filter input[type=submit]:hover {
	background: var(--clr-sky);
}

@media (min-width: 500px) and (max-width: 900px) {
	.sec-listings-filters__body {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas: 
			"industry state"
			"membership actions"
	}

	.sec-listings-filters__filter input[type=submit] {
		border-radius: var(--border-radius);
	}

	.sec-filter--industry { grid-area: industry; }
	.sec-filter--state { grid-area: state; }
	.sec-filter--membership { grid-area: membership; }
	.sec-filter--keyword { grid-area: keyword; }
	.sec-filter--actions { grid-area: actions; padding-top: 0; }
	.sec-filter--actions label { display: block; }
}

@media (min-width: 900px) {
	.sec-listings-filters {
		position: absolute;
		left: -358px;
		top: var(--content-spacing);
		width: 276px;
	}
	.sec-listings-item__body {
		grid-template-columns: 1fr;
		grid-template-areas: none;
	}
}




.sec-similar-listings {
	padding-block: var(--container-padding-block);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.sec-similar-listings__title {
	margin: 0;
	text-align: center;
} 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * SMART BAR
 *  - Used in TEMPLATE file ''
 *  - Used in MACRO file 'SEC/macros/smart-bar.html''
 *    - smart_bar()
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 */


.smart-bar {
	position: relative;
	display: grid;
	grid-template-columns: auto clamp(275px, calc(100% - 4rem), 1440px) auto;
	color: white;
	background: white;
	--spacing: 1.25rem;
	border-top: 2rem solid white;
	border-bottom: 2rem solid white;
}

.smart-bar__content::backdrop {
	background: rgba(255,255,255,0.5);
}

.smart-bar__aside {
	min-width: 2rem;
}

.smart-bar__main {
	display: grid;
	grid-template-columns: 1fr;
	align-items: stretch;
	position: relative;
	z-index: 100;
}

.smart-bar__main-content {
	position: relative;
}

.smart-bar__content {
	font-family: var(--oswald);
	border-radius: var(--border-radius);
	--inline-pad: clamp(0.5rem, 2vw, 1rem);
}

.smart-bar__content > *:first-child {
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
}

.smart-bar__content > *:nth-last-child(2) {
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}

.smart-bar__social {
	width: 100%;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	padding: var(--inline-pad) var(--spacing);
	width: 100%;
	text-decoration: none;
	background: var(--clr-bg);
	border-radius: var(--border-radius);
	transition: 300ms;
	position: relative;
	overflow: hidden;
  gap: 1rem;
}
  
.smart-bar__social-link {
	color: var(--clr-navy);
  transition: color 300ms;
  font-size: 2em;
}

.smart-bar__social-link:hover {
	color: var(--clr-sky);
}




.smart-bar__donations {
	width: 100%;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--inline-pad) var(--spacing);
	width: 100%;
	text-decoration: none;
	color: white;
	background: var(--clr-navy);
	font-weight: 500;
	border-radius: var(--border-radius);
	transition: 300ms;
	position: relative;
	overflow: hidden;
}

.smart-bar__donations:hover {
	background: var(--clr-navy);
	color: white;
}

.smart-bar__donations:after {
  content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	background: linear-gradient(58deg, var(--clr-navy) 5%, var(--clr-sky) 45%);
	opacity: 0.2;
	z-index: 0;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 33px 101%);
	transition: 300ms;
}

.smart-bar__donations:hover:after {
	opacity: 1;
	width: 66px;
}

.smart-bar__donations i {
	 position: relative;
	z-index: 20;
}

.smart-bar__donations.active i {
	color: var(--clr-yellow)
}


.smart-bar__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--inline-pad) var(--spacing);
	width: 100%;
	text-decoration: none;
	color: var(--clr-navy);
	background: var(--clr-yellow);
	font-weight: 500;
	transition: background-color 300ms, color 300ms;
	position: relative;
}

.smart-bar__link.overdue{
	background: var(--alert-red);
    color: #FFF;
}

.smart-bar__link.overdue{
	background: var(--alert-red);
    color: #FFF;
}

.smart-bar__link.overdue:after{
	background: linear-gradient(58deg, var(--clr-yellow) 5%, var(--clr-yellow) 45%);
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	opacity: 0.2;
	z-index: 0;
  	clip-path: polygon(0 0, 101% 0, 101% 101%, 33px 101%);
	transition: 300ms;
}

a.smart-bar__link:after {
  content: '';
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 60px;
	background: linear-gradient(58deg, var(--clr-green-dark) 5%, var(--clr-green) 45%);
	opacity: 0.2;
	z-index: 0;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 33px 101%);
	transition: 300ms;
}

a.smart-bar__link--tr:after {
	border-top-right-radius: var(--border-radius);	
}

a.smart-bar__link--br:after {
	border-bottom-right-radius: var(--border-radius);	
}

a.smart-bar__link:hover:after {
	opacity: 1;
	width: 66px;
}

a.smart-bar__link i {
	position: relative;
	z-index: 20;
	transition: 300ms;
}

a.smart-bar__link:hover i {
	color: white;
}



.smart-bar__link:hover {

}

.smart-bar__title {
	appearance: none;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--inline-pad) var(--spacing);
	width: 100%;
	text-decoration: none;
	background: var(--clr-sky-dark);
	border-bottom: 1px solid white;
	color: white;
}

.smart-bar__items {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: none;
	background: var(--clr-sky);
}

.smart-bar__item {
	display: flex;
	gap: 1em;
	align-items: center;
	justify-content: space-between;
	padding: 0.75em var(--spacing);
	font-size: 0.875em;
	border-bottom: 1px solid rgba(255,255,255,0.25);
}

.smart-bar__item-title {
	
}

.smart-bar__item-value {
	
}

.smart-bar__renew {
	width: 100%;
}


.smart-bar__items.show {
	display: block;
}

@media all and (min-width: 900px) {
	.smart-bar {
	  background: none;
		border-top: 0;
		border-bottom: 0;
	}
	
	.smart-bar__items {
		display: block;
	}
	
	.smart-bar__content {
		position: absolute;
		top: -200px;
		left: 0;
		width: 100%;
	}
	
	.smart-bar__main {
		grid-template-columns: 292px 1fr;
		gap: 66px;
	}
	
	.smart-bar__donations {
		position: absolute;
		top: calc(100% + 2rem);
		left: 0;
	  margin-top: 0;
	}
	
} 
.mv-listings__pagination,
.mv-listings__pagination-list,
.mv-listings__pagination-item,
.mv-listings__pagination-link,
.mv-listings__pagination-spacer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mv-listings__pagination {
	margin-top: 2rem;
}

.mv-listings__pagination.hidden{ display: none; }

.mv-listings__pagination-list {
	gap: 1px;
	padding: 0;
	margin: 0;
	list-style-type: none;
	overflow: hidden;
}

.mv-listings__pagination-item {
	padding: 0;
	margin: 0;
}

.mv-listings__pagination-link {
	text-decoration: none;
	color: inherit;
	display: grid;
	width: 2rem;
	height: 2rem;
	transition: 300ms;
}
.mv-listings__pagination-spacer {
	display: grid;
	width: 2rem;
	height: 2rem;
}

.mv-listings__pagination-link:hover,
.current_page .mv-listings__pagination-link {
	color: var(--clr-sky);
} 

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}


@keyframes diamondLoader {
	0%  ,10% {
		transform: translate(-64px , -64px) rotate(-45deg)
	}
	90% , 100% {
		transform: translate(0px , 0px) rotate(-45deg)
	}
}