@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0..1,0");
@keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

/* 
UX: User Tours

For application user tours, we use [Appcues](https://studio.appcues.com/).

Weight: 300

Styleguide UXUserTours
*/
/* 
Element: Alerts

Wrapper for Bootstrap alerts

Markup:
<div class="alert {{modifier_class}}">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>

.alert-primary		- &nbsp;
.alert-secondary	- &nbsp;
.alert-info			- &nbsp;
.alert-warning		- &nbsp;
.alert-danger		- &nbsp;
.alert-success		- &nbsp;
.alert-inverse		- &nbsp;
.alert-light		- &nbsp;
.alert-dark			- &nbsp;

Styleguide ElementAlerts
*/
/* 
Elements

Alerts with elements

Markup:
<div class="alert {{modifier_class}}">Lorem ipsum dolor sit amet, consectetur adipiscing elit. <span class="label label-inverse">label</span> <a href="">inline link</a> <a class="btn btn-xs btn-primary" href="">Primary</a>  <a class="btn btn-xs btn-secondary" href="">Secondary</a></div>

.alert-primary		- &nbsp;
.alert-secondary	- &nbsp;
.alert-info			- &nbsp;
.alert-warning		- &nbsp;
.alert-danger		- &nbsp;
.alert-success		- &nbsp;
.alert-inverse		- &nbsp;
.alert-light		- &nbsp;
.alert-dark			- &nbsp;

Weight: 42

Styleguide ElementAlerts.Elements
*/
/* 
Block Alerts

Block alerts with a title

Markup:
<div class="alert alert-block {{modifier_class}}">
	<h4>Heading title</h4> 
	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>

.alert-primary		- &nbsp;
.alert-secondary	- &nbsp;
.alert-info			- &nbsp;
.alert-warning		- &nbsp;
.alert-danger		- &nbsp;
.alert-success		- &nbsp;
.alert-inverse		- &nbsp;
.alert-light		- &nbsp;
.alert-dark			- &nbsp;

Styleguide ElementAlerts.Block
*/
/* 
Popup Alerts

Wrapper for Noty popups

### Standard UX Behavior

- Popup alerts appear by sliding up into view from the bottom, right corner of the screen

Markup:
<ul id="noty_bottomRight_layout_container" style="margin:0; padding:0; list-style:none;">
	<li class="alert  {{modifier_class}}" style="width: 500px;">
		<div class="noty_bar noty_type_success">
			<div class="noty_message">
				<span class="noty_text">
					<h4>Popup Title</h4>
					Lorem ipsum dolor sit amet, consectetur adipiscing elit.
				</span>
			</div>
		</div>
	</li>
</ul>

.alert-primary		- &nbsp;
.alert-secondary	- &nbsp;
.alert-info			- &nbsp;
.alert-warning		- &nbsp;
.alert-danger		- &nbsp;
.alert-success		- &nbsp;
.alert-inverse		- &nbsp;
.alert-light		- &nbsp;
.alert-dark			- &nbsp;

Styleguide ElementAlerts.Popups
*/
/* 
Element: Popups

Wrapper for Bootstrap alerts and Noty alerts

### Components

- [`Popup Alerts`](section-elementalerts.html#kssref-elementalerts-popups)

Markup: popup.hbs

Styleguide ElementPopups
*/
.alert {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-weight: bold;
  border-radius: 0.5rem; }
  .alert .label {
    font-size: 100%; }
  .alert:before {
    font-family: 'FontAwesome';
    margin-right: 5px;
    font-weight: normal; }
  .alert > a.btn {
    position: relative;
    top: -1px;
    margin: 0 0.25rem; }
  .alert.alert-primary {
    background-color: #9FA8DA;
    border-color: #7986CB; }
    .alert.alert-primary:before {
      color: #a97801;
      content: "\f05a"; }
    .alert.alert-primary > a {
      color: #a97801; }
      .alert.alert-primary > a:hover {
        color: #a97801; }
      .alert.alert-primary > a.btn {
        color: #FFFFFF; }
    .alert.alert-primary button.close {
      text-shadow: none; }
  .alert.alert-success {
    background-color: #A5D6A7;
    border-color: #81C784; }
    .alert.alert-success:before {
      color: #255827;
      content: "\f046"; }
    .alert.alert-success > a {
      color: #255827; }
      .alert.alert-success > a:hover {
        color: #255827; }
      .alert.alert-success > a.btn {
        color: #FFFFFF; }
    .alert.alert-success button.close {
      text-shadow: none; }
  .alert.alert-warning {
    background-color: #FFCC80;
    border-color: #FFB74D; }
    .alert.alert-warning:before {
      color: #955300;
      content: "\f071"; }
    .alert.alert-warning > a {
      color: #10538d; }
      .alert.alert-warning > a:hover {
        color: #955300; }
      .alert.alert-warning > a.btn {
        color: #FFFFFF; }
    .alert.alert-warning button.close {
      text-shadow: none; }
  .alert.alert-danger {
    background-color: #EF9A9A;
    border-color: #E57373; }
    .alert.alert-danger:before {
      color: #9f1815;
      content: "\f071"; }
    .alert.alert-danger > a {
      color: #9f1815; }
      .alert.alert-danger > a:hover {
        color: #9f1815; }
      .alert.alert-danger > a.btn {
        color: #FFFFFF; }
    .alert.alert-danger button.close {
      text-shadow: none; }
  .alert.alert-info {
    background-color: #90CAF9;
    border-color: #64B5F6; }
    .alert.alert-info:before {
      color: #10538d;
      content: "\f05a"; }
    .alert.alert-info > a {
      color: #10538d; }
      .alert.alert-info > a:hover {
        color: #10538d; }
      .alert.alert-info > a.btn {
        color: #FFFFFF; }
    .alert.alert-info button.close {
      text-shadow: none; }
  .alert.alert-inverse {
    color: #FFFFFF;
    background-color: #424242;
    border-color: #212121; }
    .alert.alert-inverse:before {
      color: #FFFFFF;
      content: "\f05a"; }
    .alert.alert-inverse > a {
      color: #FFFFFF; }
      .alert.alert-inverse > a:hover {
        color: #FFFFFF; }
      .alert.alert-inverse > a.btn {
        color: #FFFFFF; }
    .alert.alert-inverse button.close {
      text-shadow: none; }
  .alert.alert-light {
    background-color: #E0E0E0;
    border-color: #BDBDBD; }
    .alert.alert-light:before {
      color: #424242;
      content: "\f05a"; }
    .alert.alert-light > a {
      color: #424242; }
      .alert.alert-light > a:hover {
        color: #424242; }
      .alert.alert-light > a.btn {
        color: #011A3A; }
    .alert.alert-light button.close {
      text-shadow: none; }
  .alert.alert-dark {
    color: #FFFFFF;
    background-color: #616161;
    border-color: #424242; }
    .alert.alert-dark:before {
      color: #FFFFFF;
      content: "\f05a"; }
    .alert.alert-dark > a {
      color: #FFFFFF; }
      .alert.alert-dark > a:hover {
        color: #FFFFFF; }
      .alert.alert-dark > a.btn {
        color: #FFFFFF; }
    .alert.alert-dark button.close {
      text-shadow: none; }
  .alert.alert-block:before {
    display: none;
    content: ""; }
  .alert.alert-block h4 {
    font-size: 1.2rem;
    border-bottom-width: 1px; }
    .alert.alert-block h4:before {
      font-family: 'FontAwesome';
      content: "\f05a";
      margin-right: 5px; }
  .alert.alert-block p:last-child {
    margin-bottom: 0; }
  .alert.animated.fadeInDown {
    animation-duration: 350ms; }
  .alert.alert-animated {
    animation-fill-mode: both;
    animation-duration: 8s;
    animation-name: shakeX;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out; }

.dark .alert.alert-light {
  background-color: #424242; }

#noty_bottomRight_layout_container,
.noty_bottomRight_layout_container,
#noty_bottomCenter_layout_container,
.noty_bottomCenter_layout_container {
  width: 300px !important; }
  #noty_bottomRight_layout_container .alert,
  .noty_bottomRight_layout_container .alert,
  #noty_bottomCenter_layout_container .alert,
  .noty_bottomCenter_layout_container .alert {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    animation-delay: 0s;
    padding: 0;
    border-radius: 0.5rem;
    width: 300px !important; }
    #noty_bottomRight_layout_container .alert:before,
    .noty_bottomRight_layout_container .alert:before,
    #noty_bottomCenter_layout_container .alert:before,
    .noty_bottomCenter_layout_container .alert:before {
      display: none; }
    #noty_bottomRight_layout_container .alert .noty_bar,
    .noty_bottomRight_layout_container .alert .noty_bar,
    #noty_bottomCenter_layout_container .alert .noty_bar,
    .noty_bottomCenter_layout_container .alert .noty_bar {
      font-weight: normal;
      font-size: 0.8rem; }
      #noty_bottomRight_layout_container .alert .noty_bar .noty_message,
      .noty_bottomRight_layout_container .alert .noty_bar .noty_message,
      #noty_bottomCenter_layout_container .alert .noty_bar .noty_message,
      .noty_bottomCenter_layout_container .alert .noty_bar .noty_message {
        padding: 2.4rem 1rem 0.5rem 1rem; }
        #noty_bottomRight_layout_container .alert .noty_bar .noty_message .noty_text .noty_datetime,
        .noty_bottomRight_layout_container .alert .noty_bar .noty_message .noty_text .noty_datetime,
        #noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text .noty_datetime,
        .noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text .noty_datetime {
          float: right;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 1;
          color: #011A3A;
          padding: 0.5rem 1rem;
          font-family: "Inter", sans-serif; }
        #noty_bottomRight_layout_container .alert .noty_bar .noty_message .noty_text h4,
        .noty_bottomRight_layout_container .alert .noty_bar .noty_message .noty_text h4,
        #noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text h4,
        .noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text h4 {
          font-family: "Inter", sans-serif;
          position: absolute;
          padding: .5rem 1rem;
          color: #011A3A;
          font-size: 0.8rem;
          width: 100%;
          top: 0;
          left: 0;
          margin-top: 0;
          border-top-left-radius: 0.5rem;
          border-top-right-radius: 0.5rem; }
    #noty_bottomRight_layout_container .alert.alert-primary h4,
    .noty_bottomRight_layout_container .alert.alert-primary h4,
    #noty_bottomCenter_layout_container .alert.alert-primary h4,
    .noty_bottomCenter_layout_container .alert.alert-primary h4 {
      background-color: #7986CB; }
    #noty_bottomRight_layout_container .alert.alert-success h4,
    .noty_bottomRight_layout_container .alert.alert-success h4,
    #noty_bottomCenter_layout_container .alert.alert-success h4,
    .noty_bottomCenter_layout_container .alert.alert-success h4 {
      background-color: #81C784; }
    #noty_bottomRight_layout_container .alert.alert-warning h4,
    .noty_bottomRight_layout_container .alert.alert-warning h4,
    #noty_bottomCenter_layout_container .alert.alert-warning h4,
    .noty_bottomCenter_layout_container .alert.alert-warning h4 {
      background-color: #FFB74D; }
    #noty_bottomRight_layout_container .alert.alert-danger h4,
    .noty_bottomRight_layout_container .alert.alert-danger h4,
    #noty_bottomCenter_layout_container .alert.alert-danger h4,
    .noty_bottomCenter_layout_container .alert.alert-danger h4 {
      background-color: #E57373; }
    #noty_bottomRight_layout_container .alert.alert-info h4,
    .noty_bottomRight_layout_container .alert.alert-info h4,
    #noty_bottomCenter_layout_container .alert.alert-info h4,
    .noty_bottomCenter_layout_container .alert.alert-info h4 {
      background-color: #64B5F6; }
    #noty_bottomRight_layout_container .alert.alert-inverse h4,
    .noty_bottomRight_layout_container .alert.alert-inverse h4,
    #noty_bottomCenter_layout_container .alert.alert-inverse h4,
    .noty_bottomCenter_layout_container .alert.alert-inverse h4 {
      background-color: #212121; }
    #noty_bottomRight_layout_container .alert.alert-light h4,
    .noty_bottomRight_layout_container .alert.alert-light h4,
    #noty_bottomCenter_layout_container .alert.alert-light h4,
    .noty_bottomCenter_layout_container .alert.alert-light h4 {
      background-color: #BDBDBD; }
    #noty_bottomRight_layout_container .alert.alert-dark h4,
    .noty_bottomRight_layout_container .alert.alert-dark h4,
    #noty_bottomCenter_layout_container .alert.alert-dark h4,
    .noty_bottomCenter_layout_container .alert.alert-dark h4 {
      background-color: #424242; }

#noty_bottomCenter_layout_container .alert,
.noty_bottomCenter_layout_container .alert {
  min-height: auto !important; }
  #noty_bottomCenter_layout_container .alert .noty_bar .noty_message,
  .noty_bottomCenter_layout_container .alert .noty_bar .noty_message {
    padding: 2rem 1rem 0 1rem !important; }
    #noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text h4,
    .noty_bottomCenter_layout_container .alert .noty_bar .noty_message .noty_text h4 {
      margin-bottom: 0 !important;
      font-size: 1em !important; }

/* 
Element: Badges

Wrapper for Bootstrap badges

Markup:
<span class="badge {{modifier_class}}">Badge</span>

.badge-primary		- &nbsp;
.badge-secondary	- &nbsp;
.badge-info			- &nbsp;
.badge-warning		- &nbsp;
.badge-danger		- &nbsp;
.badge-success		- &nbsp;
.badge-inverse		- &nbsp;
.badge-light		- &nbsp;
.badge-dark			- &nbsp;

Styleguide ElementBadges
*/
.badge {
  margin-left: 0.5em;
  padding-left: 0.6em;
  padding-right: 0.6em;
  position: relative;
  top: -1px;
  border-radius: 10rem;
  position: relative; }
  .badge.badge-primary {
    color: #FFFFFF;
    background-color: #FDB913; }
  .badge.badge-secondary {
    color: #FFFFFF;
    background-color: #757575; }
  .badge.badge-success {
    color: #FFFFFF;
    background-color: #43A047; }
  .badge.badge-warning {
    color: #FFFFFF;
    background-color: #FB8C00; }
  .badge.badge-danger {
    color: #FFFFFF;
    background-color: #F44336; }
  .badge.badge-info {
    color: #FFFFFF;
    background-color: #1E88E5; }
  .badge.badge-inverse {
    color: #FFFFFF;
    background-color: #212121; }
  .badge.badge-light {
    color: #FFFFFF;
    background-color: #EAF1FB; }
  .badge.badge-dark {
    color: #FFFFFF;
    background-color: #616161; }
  .badge.badge-orange {
    color: #FFFFFF;
    background-color: #FF9800; }
  .badge.badge-step-default {
    color: #9E9E9E;
    background-color: #FAFAFA;
    border: 1px solid #9E9E9E; }
  .badge.badge-muted {
    color: #FFFFFF;
    background-color: #9E9E9E; }
  .badge.badge-border {
    font-weight: normal;
    border: 1px solid #E0E0E0;
    background-color: #FFF;
    color: #214eaa; }
  .badge.badge-shake {
    animation-fill-mode: both;
    animation-duration: 8s;
    animation-name: shakeX;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out; }
  .badge.badge-tilt {
    transform: rotate(-3deg); }
  .badge.badge-sale {
    color: #FFFFFF;
    background-color: #F44336;
    text-transform: uppercase;
    transform: rotate(-3deg); }
  .badge .fa.fa-spinner {
    font-size: 80%; }

p > .badge,
a > .badge {
  margin-left: 0; }

kbd .badge {
  font-size: 90%;
  margin-left: 0; }

body.backoffice .badge {
  padding: .25em .4em .05em .4em; }

body.backoffice h2 .badge {
  font-size: 1.2rem;
  padding: .25em .4em .25em .4em;
  top: -0.3rem; }

body {
  background-color: #FFFFFF;
  color: #011A3A;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .9rem; }
  body.dark {
    background-color: #121212;
    color: #E0E0E0; }

/* 
Element: Buttons

Wrapper for Bootstrap buttons

Markup:
<button class="btn {{modifier_class}}">Button</button>
<input class="btn {{modifier_class}}" value="Input Button" />
<a class="btn {{modifier_class}}" href="">Link Button</a>

.btn-primary		- &nbsp;
.btn-secondary		- &nbsp;
.btn-info			- &nbsp;
.btn-warning		- &nbsp;
.btn-danger			- &nbsp;
.btn-success		- &nbsp;
.btn-inverse		- &nbsp;
.btn-light			- &nbsp;
.btn-dark			- &nbsp;
.disabled			- &nbsp;

Styleguide ElementButtons
*/
/* 
Sizes

Markup:
<button class="btn btn-primary {{modifier_class}}">Button</button>

.btn-xl		- &nbsp;
.btn-lg		- &nbsp;
.btn-md		- &nbsp;
.btn-sm		- &nbsp;
.btn-xs		- &nbsp;

Styleguide ElementButtons.Sizes
*/
.btn {
  margin-right: 5px;
  background-color: #E0E0E0;
  border-color: #BDBDBD;
  border-radius: 0.5rem; }
  .btn.btn-primary {
    color: #FFFFFF;
    background-color: #FDB913;
    border-color: #3949AB; }
    .btn.btn-primary:hover {
      background-color: #3949AB;
      border-color: #303F9F; }
  .btn.btn-secondary {
    color: #424242;
    background-color: #FFFFFF;
    border-color: #9E9E9E; }
  .btn.btn-success {
    color: #FFFFFF;
    background-color: #43A047;
    border-color: #388E3C; }
    .btn.btn-success:hover {
      background-color: #43A047;
      border-color: #388E3C; }
  .btn.btn-warning {
    color: #FFFFFF;
    background-color: #FB8C00;
    border-color: #F57C00; }
    .btn.btn-warning:hover {
      background-color: #FB8C00;
      border-color: #F57C00; }
  .btn.btn-danger {
    color: #FFFFFF;
    background-color: #E53935;
    border-color: #D32F2F; }
    .btn.btn-danger:hover {
      background-color: #E53935;
      border-color: #D32F2F; }
  .btn.btn-info {
    color: #FFFFFF;
    background-color: #1E88E5;
    border-color: #1976D2; }
    .btn.btn-info:hover {
      background-color: #1E88E5;
      border-color: #1976D2; }
  .btn.btn-light {
    color: #FFFFFF;
    background-color: #EAF1FB;
    border-color: #424242; }
    .btn.btn-light:hover {
      background-color: #BDBDBD;
      border-color: #BDBDBD; }
  .btn.btn-dark {
    color: #FFFFFF;
    background-color: #616161;
    border-color: #424242; }
    .btn.btn-dark:hover {
      background-color: #616161;
      border-color: #424242; }
  .btn.btn-inverse {
    color: #FFFFFF;
    background-color: #212121;
    border-color: #000000; }
    .btn.btn-inverse:hover {
      background-color: #000000;
      border-color: #000000; }
  .btn.btn-default {
    color: #424242;
    background-color: #FFFFFF;
    border-color: #424242; }
  .btn.disabled {
    pointer-events: none;
    color: #424242;
    background-color: #E0E0E0;
    border-color: #E0E0E0; }
  .btn.btn-xs {
    font-size: 0.75rem;
    padding: .1rem .4rem; }
  .btn.btn-xl {
    font-size: var(--heading5-font-size);
    padding: .5rem 1rem; }
  .btn + .btn {
    margin-left: 15px; }
  .btn + .btn-group {
    margin-left: 15px; }
  .btn.disabled {
    border: 1px solid #E0E0E0; }
  .btn.btn-working {
    padding-left: 32px;
    pointer-events: none;
    color: #9E9E9E;
    background-color: #E0E0E0;
    border-color: #E0E0E0; }
    .btn.btn-working:before {
      font-family: "FontAwesome";
      content: "\f110" !important;
      animation: fa-spin 2s infinite linear;
      display: inline-block;
      position: absolute;
      font-style: normal;
      top: 0.5em;
      left: 10px;
      color: #011A3A; }
  .btn.btn-shake {
    animation-fill-mode: both;
    animation-duration: 8s;
    animation-name: shakeX;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out; }
  .btn.btn-add:before {
    font-family: "FontAwesome";
    content: "\f055";
    margin-right: 5px; }
  .btn.btn-none {
    border-width: 0px !important;
    box-shadow: none !important;
    background-color: unset !important; }
    .btn.btn-none:hover {
      box-shadow: none !important; }
  .btn.btn-superadmin {
    color: #FFFFFF !important;
    background-color: #212121;
    border-color: #000000; }
    .btn.btn-superadmin:before {
      content: "\f09c";
      font-family: "FontAwesome";
      margin-right: 5px; }
    .btn.btn-superadmin:hover {
      background-color: #000000;
      border-color: #000000; }

input.btn.btn-working {
  padding-left: 0.4rem; }
  input.btn.btn-working:before {
    display: none; }

.btn-group,
.input-group {
  margin-right: 5px; }
  .btn-group .input-group-append .btn,
  .input-group .input-group-append .btn {
    border-color: #ced4da;
    box-shadow: none;
    border-top-width: 0;
    border-bottom-width: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    .btn-group .input-group-append .btn.btn-mid,
    .input-group .input-group-append .btn.btn-mid {
      border-radius: 0; }
    .btn-group .input-group-append .btn:hover,
    .input-group .input-group-append .btn:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .btn-group .input-group-append a.btn,
  .input-group .input-group-append a.btn {
    padding: .375rem .75rem; }
    .btn-group .input-group-append a.btn .fa,
    .input-group .input-group-append a.btn .fa {
      position: relative;
      top: 2px; }

a:visited.btn {
  color: #424242; }

a:visited.btn-primary {
  color: #FFFFFF; }

a:visited.btn-secondary {
  color: #424242; }

a:visited.btn-success {
  color: #FFFFFF; }

a:visited.btn-warning {
  color: #FFFFFF; }

a:visited.btn-danger {
  color: #FFFFFF; }

a:visited.btn-info {
  color: #FFFFFF; }

a:visited.btn-inverse {
  color: #FFFFFF; }

a:visited.btn-dark {
  color: #FFFFFF; }

.btn-group .btn,
.input-group .btn {
  margin: 0; }

.btn-group + .btn-group,
.input-group + .btn-group {
  margin-left: 15px; }

.btn-group + .btn,
.input-group + .btn {
  margin-left: 15px; }

body.dark .btn.btn-default {
  background-color: #212121;
  border-color: #616161;
  color: #E0E0E0; }

body.dark .btn.disabled {
  background-color: #424242;
  border-color: #616161;
  color: #9E9E9E; }

.backoffice .btn {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .backoffice .btn:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .backoffice .btn:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .backoffice .btn.btn-secondary:active {
    background-color: #EEEEEE;
    color: #011A3A; }

.backoffice #title .btn.pad15 {
  margin-left: 15px; }

.backoffice #sidebar .btn {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: 0.5rem; }
  .backoffice #sidebar .btn.btn-xs {
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    color: #424242;
    background-color: #FFFFFF;
    border-color: #9E9E9E; }
    .backoffice #sidebar .btn.btn-xs.btn-warning {
      background-color: #FB8C00;
      border-color: #F57C00;
      color: #FFFFFF; }

/* 
Element: Cards

Wrapper for Bootstrap cards

Markup:
<div class="card {{modifier_class}}" style="width:20rem;">
	<div class="card-header">Card Header</div>
	<div class="card-body">
		<h4 class="card-title">Card Title</h4>
		<p class="card-text">
			Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
			Curabitur placerat felis tellus, ut consequat urna euismod sit amet.
		</p>
	</div>
</div>

.card-primary		- &nbsp;
.card-info			- &nbsp;
.card-warning		- &nbsp;
.card-danger		- &nbsp;
.card-success		- &nbsp;
.card-inverse		- &nbsp;
.card-light			- &nbsp;
.card-dark			- &nbsp;

Styleguide ElementCards
*/
.card {
  margin-top: 1em;
  margin-bottom: 1em;
  border-radius: 1rem;
  border-width: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .card .card-header {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    background-color: #EEEEEE;
    border-bottom-color: #BDBDBD;
    font-weight: bold;
    padding: 0.5rem 1.25rem;
    border-bottom-width: 4px; }
  .card .card-body.card-body-compound {
    border-bottom: 1px solid #E0E0E0; }
    .card .card-body.card-body-compound:last-child {
      border-bottom-width: 0; }
  .card .card-body.social-proof {
    line-height: 1.75rem;
    font-weight: 300;
    font-size: 1.15rem;
    text-align: left; }
    .card .card-body.social-proof strong {
      font-weight: 600; }
    .card .card-body.social-proof img {
      float: right;
      width: 88px;
      border-radius: 50% !important;
      margin-left: 1.5rem;
      margin-bottom: 1rem;
      padding: 0 !important;
      box-shadow: none !important; }
    .card .card-body.social-proof cite {
      display: block;
      font-size: 0.8rem;
      margin-top: 0.5rem;
      line-height: 1rem; }
    .card .card-body.social-proof + .card-body.social-proof {
      padding-top: 0; }
  .card .card-body .card-stars {
    float: right;
    margin-left: 1rem;
    margin-bottom: 1rem; }
    .card .card-body .card-stars .fa-star {
      color: #FF9800; }
    .card .card-body .card-stars .fa-star-o:before {
      content: "\f005";
      color: #E0E0E0; }
  .card .card-body .card-score {
    border-radius: 1rem;
    border-top: 5px solid #E0E0E0;
    border-top-color: #E0E0E0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    float: right;
    font-size: 2rem;
    padding: 1.5rem 1rem;
    line-height: 2.4rem;
    color: #FFFFFF;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    border-top: 5px solid #424242;
    background-color: #616161;
    width: 90px;
    text-align: center; }
    .card .card-body .card-score.card-score-danger {
      background-color: #EF5350;
      border-top-color: #E53935; }
    .card .card-body .card-score.card-score-success {
      background-color: #66BB6A;
      border-top-color: #43A047; }
    .card .card-body .card-score.card-score-warning {
      background-color: #FFA726;
      border-top-color: #FB8C00; }
    .card .card-body .card-score.card-score-light {
      background-color: #EAF1FB;
      border-top-color: #424242; }
    .card .card-body .card-score.card-score-inverse {
      background-color: #212121;
      border-top-color: #212121; }
    .card .card-body .card-score:empty {
      display: none; }
    .card .card-body .card-score + h2,
    .card .card-body .card-score + h3,
    .card .card-body .card-score + h4 {
      margin-top: 0; }
  .card .card-body > p:last-child {
    margin-bottom: 0; }
  .card .card-body:empty {
    display: none; }
  .card .card-footer.card-footer-previous .previous-title:before {
    content: "Previous Score:";
    font-size: 0.9rem; }
  .card .card-footer.card-footer-previous code.previous-score {
    font-size: 1rem;
    background-color: transparent; }
  .card .card-footer.card-footer-previous code.previous-score-difference {
    font-size: 0.8rem; }
    .card .card-footer.card-footer-previous code.previous-score-difference[data-indicator="+"] {
      background-color: transparent;
      color: #43A047; }
      .card .card-footer.card-footer-previous code.previous-score-difference[data-indicator="+"]:before {
        content: "\f062";
        font-family: "FontAwesome";
        margin-right: 2px;
        color: #43A047;
        font-size: 0.7rem; }
    .card .card-footer.card-footer-previous code.previous-score-difference[data-indicator="-"] {
      background-color: transparent;
      color: #E53935; }
      .card .card-footer.card-footer-previous code.previous-score-difference[data-indicator="-"]:before {
        content: "\f063";
        font-family: "FontAwesome";
        margin-right: 2px;
        color: #E53935;
        font-size: 0.7rem; }
  .card .card-footer.card-footer-previous.danger code.previous-score {
    color: #E53935;
    background-color: #FFEBEE; }
  .card .card-footer.card-footer-previous.warning code.previous-score {
    color: #FB8C00;
    background-color: #FFF3E0; }
  .card .card-footer.card-footer-previous.success code.previous-score {
    color: #43A047;
    background-color: #E8F5E9; }
  .card.card-info .card-header {
    background-color: #90CAF9; }
  .card.card-success .card-header {
    background-color: #A5D6A7; }
  .card.card-danger .card-header {
    background-color: #EF9A9A; }
  .card.card-warning .card-header {
    background-color: #FFCC80; }
  .card.card-payment {
    max-width: 480px;
    text-align: left;
    margin: 2rem auto; }
    .card.card-payment .card-body {
      padding: 2.5rem 1.25rem; }
      .card.card-payment .card-body:before {
        font-family: 'Material Symbols Outlined';
        font-size: 2.5rem;
        float: right;
        margin-top: 0.5rem; }
      .card.card-payment .card-body .account-type {
        font-size: 1rem;
        margin-bottom: 0.5rem; }
      .card.card-payment .card-body .account-number {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 1.5rem; }
      .card.card-payment .card-body .account-exp {
        float: right;
        font-size: 0.8em; }
      .card.card-payment .card-body .account-name {
        font-size: 1.25rem;
        margin-bottom: 0.5rem; }
    .card.card-payment[data-type="us_bank_account"] .card-body:before {
      content: "\e84f"; }
    .card.card-payment[data-type="card"] .card-body:before {
      content: "\e870"; }
  .card:empty {
    display: none; }

.card-deck {
  margin-bottom: 2rem; }

body.dark .card {
  background-color: #212121; }
  body.dark .card .card-header {
    border-bottom-color: #616161; }

body.dark .panel .panel-body .card {
  background-color: #424242; }

.backoffice .card {
  margin-top: 0;
  margin-bottom: 1.5em;
  border-top: 1px solid #FFFFFF; }
  .backoffice .card .card-header:before {
    font-family: 'FontAwesome';
    margin-right: 3px; }
  .backoffice .card .card-header.app-delete {
    padding: 0;
    border-bottom-color: #E57373; }
    .backoffice .card .card-header.app-delete.card-header:before {
      content: "";
      margin: 0; }
    .backoffice .card .card-header.app-delete:after {
      content: ""; }
  .backoffice .card .card-header.app-form:before {
    content: "\f044"; }
  .backoffice .card .card-header.app-form:after {
    content: "Details"; }
  .backoffice .card .card-header.app-contact:before {
    content: "\f2be"; }
  .backoffice .card .card-header.app-contact:after {
    content: "Contact"; }
  .backoffice .card .card-header.app-sysinfo:before {
    content: "\f05a"; }
  .backoffice .card .card-header.app-sysinfo:after {
    content: "System Information"; }
  .backoffice .card .card-header.app-related:before {
    content: "\f05a"; }
  .backoffice .card .card-header.app-related:after {
    content: "Related"; }
  .backoffice .card .card-header.app-variables:before {
    content: "\f02d"; }
  .backoffice .card .card-header.app-variables:after {
    content: "Variables Available"; }
  .backoffice .card .card-header.app-preview:before {
    content: "\f108"; }
  .backoffice .card .card-header.app-preview:after {
    content: "Preview"; }
  .backoffice .card .card-header.app-actions:before {
    content: "\f013"; }
  .backoffice .card .card-header.app-actions:after {
    content: "Actions"; }
  .backoffice .card.card-info .card-header {
    color: #10538d; }
    .backoffice .card.card-info .card-header:before {
      content: "\f05a"; }
  .backoffice .card.card-success .card-header {
    color: #255827; }
    .backoffice .card.card-success .card-header:before {
      content: "\f046"; }
  .backoffice .card.card-danger .card-header {
    color: #9f1815; }
    .backoffice .card.card-danger .card-header:before {
      content: "\f071"; }
  .backoffice .card.card-danger .btn-primary {
    color: #FFFFFF;
    background-color: #E53935;
    border-color: #D32F2F; }
    .backoffice .card.card-danger .btn-primary:hover {
      background-color: #E53935;
      border-color: #D32F2F; }
  .backoffice .card.card-warning .card-header {
    color: #955300; }
    .backoffice .card.card-warning .card-header:before {
      content: "\f071"; }
  .backoffice .card.card-search > .card-header {
    padding-top: 1rem; }
    .backoffice .card.card-search > .card-header > .btn {
      padding: .25rem .5rem;
      font-size: .875rem;
      line-height: 1.5;
      border-radius: .2rem; }
      .backoffice .card.card-search > .card-header > .btn.btn-xs {
        font-size: 0.75rem;
        position: relative;
        top: -5px; }
    .backoffice .card.card-search > .card-header .search .form-lead label {
      padding-top: 6px;
      font-size: 1rem; }
    .backoffice .card.card-search > .card-header .search .form-lead select {
      height: calc(2.25rem + 2px); }
    .backoffice .card.card-search > .card-header .search .search-options label {
      padding-top: 4px;
      font-size: 0.95rem;
      font-weight: normal; }
    .backoffice .card.card-search > .card-header .search .search-options .form-group {
      margin-bottom: 0; }
  .backoffice .card.card-search:hover .card-header {
    border-bottom-color: #BDBDBD; }
  .backoffice .card.card-plain:hover > .card-header {
    border-bottom-color: #BDBDBD; }
  .backoffice .card:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-top: 1px solid #E0E0E0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
    .backoffice .card:hover > .card-header {
      border-bottom: 4px solid #FDB913; }

.backoffice .card-group .card:hover {
  z-index: 9999; }

.backoffice #content .dashboard .card-deck .card {
  max-width: 18rem; }
  .backoffice #content .dashboard .card-deck .card p.card-title {
    margin-bottom: 0; }
  .backoffice #content .dashboard .card-deck .card h5.card-title {
    font-size: 3rem;
    margin-bottom: 0; }
  .backoffice #content .dashboard .card-deck .card:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-top-color: #F5F5F5; }
  .backoffice #content .dashboard .card-deck .card.card-info {
    color: #10538d;
    background-color: #90CAF9; }
  .backoffice #content .dashboard .card-deck .card.card-success {
    color: #255827;
    background-color: #A5D6A7; }
  .backoffice #content .dashboard .card-deck .card.card-danger {
    color: #9f1815;
    background-color: #EF9A9A; }
  .backoffice #content .dashboard .card-deck .card.card-warning {
    color: #955300;
    background-color: #FFCC80; }

.card-deck.card-deck-cpq {
  margin-bottom: 2em; }
  .card-deck.card-deck-cpq .card.card-cpq {
    border-top-width: 5px;
    border-top-color: #424242; }
    .card-deck.card-deck-cpq .card.card-cpq .cpq-image-wrapper {
      max-height: 200px;
      overflow: hidden; }
      .card-deck.card-deck-cpq .card.card-cpq .cpq-image-wrapper .card-img-top {
        border-top-left-radius: calc(0.25rem - 1px);
        border-top-right-radius: calc(0.25rem - 1px); }
    .card-deck.card-deck-cpq .card.card-cpq .card-header {
      padding: 1rem 1.25rem; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .panel-actions a {
      padding: 0rem 0.25rem;
      font-size: 1.1rem; }
      .card-deck.card-deck-cpq .card.card-cpq .card-body .panel-actions a .cpq-order-likes {
        font-size: 0.95rem; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-add {
      font-size: 3rem;
      text-align: center;
      animation-fill-mode: both;
      animation-duration: 8s;
      animation-name: shakeX;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-option-number {
      color: #FFFFFF;
      background-color: #616161;
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: inline-block;
      padding: .25em .4em;
      font-size: 75%;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
      vertical-align: baseline;
      padding-left: 0.6em;
      padding-right: 0.6em;
      position: relative;
      top: -1px;
      border-radius: 10rem; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-option-type {
      font-size: 1.25rem; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-option {
      font-size: 1.75rem;
      line-height: 2rem; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-price {
      font-size: 1.75rem;
      font-weight: bold; }
      .card-deck.card-deck-cpq .card.card-cpq .card-body .cpq-price .cpq-qty {
        display: block;
        margin-top: 0.5rem;
        font-size: 1rem;
        font-style: italic;
        font-weight: normal; }
    .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq {
      list-style: none;
      margin-left: 0;
      padding: 0;
      margin-bottom: 0; }
      .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li {
        padding-left: 20px;
        position: relative; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li:before {
          font-family: "FontAwesome";
          content: "\f046";
          position: absolute;
          left: 0px;
          color: #388E3C; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li .cpq-item-name {
          margin-bottom: 0; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li .cpq-item-desc {
          font-size: 85%;
          font-style: italic;
          margin-top: 0;
          margin-bottom: 0; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li .cpq-item-qty {
          font-size: 85%;
          font-style: italic; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-heading {
          font-weight: bold;
          padding-left: 0; }
          .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-heading:before {
            display: none; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-na {
          display: none;
          color: #E0E0E0 !important; }
          .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-na:before {
            display: none; }
          .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-na.item-cpq-selected:before {
            content: "\f046";
            display: block;
            color: #E0E0E0 !important; }
        .card-deck.card-deck-cpq .card.card-cpq .card-body .plan-cpq li.item-cpq-unselected:before {
          content: "\f096";
          top: 1px;
          color: #9E9E9E !important; }
    .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-cta {
      background-color: #ffffff;
      border-top-width: 0;
      padding-bottom: 1rem; }
      .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-cta a.btn {
        display: block;
        text-align: center;
        color: #FFFFFF;
        font-weight: bold;
        font-size: 1.25rem;
        line-height: 1.5rem;
        padding: .75rem 1rem; }
        .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-cta a.btn.btn-light {
          color: #011A3A; }
      .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-cta .cpq-deposit {
        margin-top: 1rem;
        text-align: center;
        margin-bottom: 0;
        font-size: 1.4rem;
        font-weight: bold; }
    .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul {
      list-style: none;
      margin-left: 0;
      padding: 0;
      margin-bottom: 0; }
      .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul li {
        padding-left: 20px;
        position: relative; }
        .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul li:before {
          font-family: "FontAwesome";
          content: "\f046";
          position: absolute;
          left: 0px; }
        .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul li .cpq-item-name {
          margin-bottom: 0; }
        .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul li .cpq-item-desc {
          font-size: 85%;
          font-style: italic;
          margin-top: 0;
          margin-bottom: 0; }
        .card-deck.card-deck-cpq .card.card-cpq .card-footer.cpq-features ul li .cpq-item-qty {
          font-size: 85%;
          font-style: italic; }
    .card-deck.card-deck-cpq .card.card-cpq:hover .card-footer.cpq-cta a.btn {
      animation-fill-mode: both;
      animation-duration: 8s;
      animation-name: shakeX;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out; }
  .card-deck.card-deck-cpq.cpq-item-type {
    margin-bottom: 0; }
    .card-deck.card-deck-cpq.cpq-item-type .card.card-cpq {
      margin-bottom: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
  .card-deck.card-deck-cpq.cpq-feature .card.card-cpq {
    margin-top: 0;
    border-top-width: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
    .card-deck.card-deck-cpq.cpq-feature .card.card-cpq .card-footer[data-isnocost="0"] {
      flex: 1 1 auto;
      background-color: #ffffff; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-body .plan-cpq li.item-cpq-heading {
    padding-top: 1rem; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-body .plan-cpq li.item-cpq-unselected {
    display: none; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-body .plan-cpq li:before {
    content: "\f096";
    top: 1px;
    color: #616161; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-body .item-cpq-set:not(:has(li.item-cpq-selected)) {
    display: none; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-footer p a {
    font-style: italic !important;
    font-size: 0.85rem !important; }
  .card-deck.card-deck-cpq.card-todo .card.card-cpq .card-footer p:last-child {
    margin-bottom: 0; }

.card-deck.card-deck-cpq.card-todo .card .card-body {
  padding-bottom: 2.5rem; }
  .card-deck.card-deck-cpq.card-todo .card .card-body .plan-cpq li.item-cpq-heading em {
    font-weight: normal; }
  .card-deck.card-deck-cpq.card-todo .card .card-body .plan-cpq li.item-cpq-selected {
    padding-left: 46px; }
  .card-deck.card-deck-cpq.card-todo .card .card-body .plan-cpq li.item-cpq-selected:before {
    left: 20px; }
  .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes {
    margin-top: 1rem; }
    .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > p {
      margin-bottom: 0; }
      .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > p a[data-toggle="collapse"] {
        font-weight: bold; }
        .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > p a[data-toggle="collapse"]::before {
          font-family: "FontAwesome";
          margin-right: 5px;
          color: #424242;
          font-weight: bold; }
        .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > p a[data-toggle="collapse"][aria-expanded='false']::before {
          content: "\f107"; }
        .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > p a[data-toggle="collapse"][aria-expanded='true']::before {
          content: "\f106"; }
    .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > div {
      margin-left: 46px !important;
      margin-top: 1rem;
      font-style: italic; }
      .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > div p {
        font-style: italic; }
      .card-deck.card-deck-cpq.card-todo .card .card-body .todo-notes > div li {
        font-style: italic; }

.card-deck.card-deck-cpq.card-todo .card.card-recommended {
  border-top-color: var(--primary); }
  .card-deck.card-deck-cpq.card-todo .card.card-recommended:before {
    content: "Start Here";
    background-color: var(--primary); }

.card-deck.card-deck-scorecard .card .card-body.card-status-danger .card-body-diagnosis::before {
  font-family: "FontAwesome";
  content: "\f071";
  margin-right: 5px;
  color: #D32F2F;
  display: inline-block;
  animation-duration: 2s;
  animation-name: heartBeat;
  animation-fill-mode: both;
  animation-iteration-count: infinite; }

.card-deck.card-deck-scorecard .card .card-body.card-status-danger .card-body-diagnosis:empty {
  display: none; }

.card-deck.card-deck-scorecard .card .card-body.card-status-warning .card-body-diagnosis::before {
  font-family: "FontAwesome";
  content: "\f071";
  margin-right: 5px;
  color: #F57F17;
  display: inline-block; }

.card-deck.card-deck-scorecard .card .card-body.card-status-warning .card-body-diagnosis:empty {
  display: none; }

.card-deck.card-deck-scorecard .card .card-body.card-status-success .card-body-diagnosis::before {
  font-family: "FontAwesome";
  content: "\f05a";
  margin-right: 5px;
  display: inline-block; }

.card-deck.card-deck-scorecard .card .card-body.card-status-success .card-body-diagnosis:empty {
  display: none; }

.card-deck.card-deck-scorecard.card-deck-scorecard-row {
  margin-left: -15px; }
  .card-deck.card-deck-scorecard.card-deck-scorecard-row .card {
    color: #ffffff;
    margin-right: 3%;
    margin-left: 3% !important;
    border-top-width: 5px;
    text-align: center; }
    .card-deck.card-deck-scorecard.card-deck-scorecard-row .card:has(.card-status-warning) {
      background-color: #FFA726;
      border-top-color: #FB8C00; }
    .card-deck.card-deck-scorecard.card-deck-scorecard-row .card:has(.card-status-danger) {
      background-color: #EF5350;
      border-top-color: #E53935; }
    .card-deck.card-deck-scorecard.card-deck-scorecard-row .card:has(.card-status-success) {
      background-color: #66BB6A;
      border-top-color: #43A047; }
    .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body {
      display: flex;
      flex-direction: column; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body h3 {
        font-size: 1.1rem;
        min-height: 50px;
        font-weight: bold;
        flex-grow: 1;
        align-items: center; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body .card-score {
        box-shadow: none;
        width: initial;
        border-top-width: 0px;
        margin-bottom: 1rem;
        float: none;
        font-size: 3.75rem;
        margin-left: 0; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body .card-body-diagnosis {
        display: none; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body p:has(.card-body-desc) {
        line-height: 1.1rem;
        font-size: 0.9em;
        margin-bottom: 0; }
        .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-body p:has(.card-body-desc) + p {
          display: none; }
    .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-footer.card-footer-previous {
      background-color: #757575;
      border-bottom-left-radius: 0.5rem;
      border-bottom-right-radius: 0.5rem; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-footer.card-footer-previous span.btn-primary.btn-xs {
        display: none; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-footer.card-footer-previous .previous-score-difference {
        color: #ffffff; }
        .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-footer.card-footer-previous .previous-score-difference::before {
          color: #ffffff; }
      .card-deck.card-deck-scorecard.card-deck-scorecard-row .card .card-footer.card-footer-previous .previous-score {
        border-radius: 0.25rem; }

@media (max-width: 1200px) {
  .card-deck.card-deck-scorecard .card {
    margin-right: 15px;
    margin-left: 15px !important; } }

@media (min-width: 1760px) {
  .card-deck.card-deck-scorecard .card .card-body h3 {
    min-height: auto; } }

@media (max-width: 767px) {
  .card-deck.card-deck-scorecard .card .card-body h3 {
    min-height: auto; } }

/* 
CellCSS

Wrapper for Bootstrap tables

Markup:
<table class="table">
	<thead>
		<tr>
			<th>Column 1</th>
			<th>Column 2</th>
			<th class="text-center">Column 3</th>
			<th class="text-center">Column 4</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td class="cell-css {{modifier_class}}" data-value="0"></td>
			<td class="cell-css {{modifier_class}}" data-value="1"></td>
		</tr>
	</tbody>
</table>

.cell-numericactive				- &nbsp;
.cell-numericexpandcollapseall	- &nbsp;
.cell-numericyesno				- &nbsp;
.cell-numericnoyes				- &nbsp;
.cell-numericthumbs				- &nbsp;

Styleguide ElementTables.CellCSS
*/
/* 
CellCSSLink

Wrapper for Bootstrap tables

Markup:
<table class="table">
	<thead>
		<tr>
			<th>Column 1</th>
			<th class="text-center">Column 2</th>
			<th class="text-center">Column 3</th>
			<th class="text-center">Column 4</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>lorem ipsum</td>
			<td class="cell-css {{modifier_class}}" data-value="0"><a href="">0</a></td>
			<td class="cell-css {{modifier_class}}" data-value="5"><a href="">5</a></td>
			<td class="cell-css {{modifier_class}}" data-value="10"><a href="">10</a></td>
		</tr>
	</tbody>
</table>

.cell-numericlink			- &nbsp;

Styleguide ElementTables.CellCSSLink
*/
.cell-css:before {
  display: inline-block; }

.cell-css.cell-lock {
  pointer-events: none; }
  .cell-css.cell-lock:before {
    font-family: 'FontAwesome';
    font-size: 1em;
    line-height: 1em;
    content: "\f023";
    margin-right: 5px; }

.cell-css.cell-date {
  text-align: center; }
  .cell-css.cell-date[data-value="01/01/1900"] span, .cell-css.cell-date[data-value="1/1/1900"] span, .cell-css.cell-date[data-value="1/1/1900 12:00:00 AM"] span, .cell-css.cell-date[data-value="01/01/1900 12:00:00 AM"] span {
    display: none; }

.cell-css.cell-missing:empty:before {
  content: 'Missing';
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  padding-left: 0.6em;
  padding-right: 0.6em;
  position: relative;
  top: -1px;
  border-radius: 10rem;
  color: #FFFFFF;
  background-color: #E53935; }

.cell-css.cell-numericcheck {
  text-align: center; }
  .cell-css.cell-numericcheck:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-numericcheck:not([data-value='0']):before, .cell-css.cell-numericcheck.cell-value-1:before {
    content: "\f046";
    color: #388E3C; }
  .cell-css.cell-numericcheck[data-value='0']:before, .cell-css.cell-numericcheck.cell-value-0:before {
    content: "\f096";
    color: #9E9E9E; }

.cell-css.cell-checkedcheck {
  text-align: center; }
  .cell-css.cell-checkedcheck:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-checkedcheck[data-value='checked']:before {
    content: "\f046";
    color: #388E3C; }
  .cell-css.cell-checkedcheck:not([data-value='checked']):before {
    content: "\f096";
    color: #9E9E9E; }

.cell-css.cell-booleancheck {
  text-align: center; }
  .cell-css.cell-booleancheck:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-booleancheck[data-value='false']:before, .cell-css.cell-booleancheck[data-value='False']:before {
    content: "\f046";
    color: #388E3C; }
  .cell-css.cell-booleancheck[data-value='true']:before, .cell-css.cell-booleancheck[data-value='True']:before {
    content: "\f096";
    color: #9E9E9E; }

.cell-css.cell-numerichighlight:not([data-value='0']) {
  background-color: #A5D6A7; }

.cell-css.cell-numerichighlight[data-value='0'] {
  background-color: #EF9A9A; }

.cell-css.cell-numericexpandcollapseall {
  text-align: center; }
  .cell-css.cell-numericexpandcollapseall:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-numericexpandcollapseall:not([data-value='0']):before {
    content: "\f103"; }
  .cell-css.cell-numericexpandcollapseall[data-value='0']:before {
    content: "\f102"; }

.cell-css.cell-numericyesno {
  text-align: center; }
  .cell-css.cell-numericyesno:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-numericyesno:not([data-value='0']):before, .cell-css.cell-numericyesno.cell-value-1:before {
    content: "\f205";
    color: #388E3C; }
  .cell-css.cell-numericyesno[data-value='0']:before, .cell-css.cell-numericyesno.cell-value-0:before {
    content: "\f204";
    color: #9E9E9E; }
  .cell-css.cell-numericyesno.cell-value-0:before {
    color: #9E9E9E !important; }
  .cell-css.cell-numericyesno[data-can-toggle-live='0'] {
    pointer-events: none;
    cursor: default;
    color: #BDBDBD !important; }
    .cell-css.cell-numericyesno[data-can-toggle-live='0'] i {
      color: #BDBDBD !important; }

.cell-css.cell-numericnoyes {
  text-align: center; }
  .cell-css.cell-numericnoyes:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-numericnoyes:not([data-value='0']):before, .cell-css.cell-numericnoyes.cell-value-1:before {
    content: "\f204";
    color: #9E9E9E; }
  .cell-css.cell-numericnoyes[data-value='0']:before, .cell-css.cell-numericnoyes.cell-value-0:before {
    content: "\f205";
    color: #388E3C; }

.cell-css.cell-numericthumbs {
  text-align: center; }
  .cell-css.cell-numericthumbs:before {
    font-family: 'FontAwesome';
    font-size: 1.4em;
    line-height: 1em; }
  .cell-css.cell-numericthumbs:not([data-value='0']):before, .cell-css.cell-numericthumbs.cell-value-1:before {
    content: "\f164";
    color: #388E3C; }
  .cell-css.cell-numericthumbs[data-value='0']:before, .cell-css.cell-numericthumbs.cell-value-0:before {
    content: "\f165";
    color: #D32F2F; }

.cell-css.cell-numericarrows {
  text-align: center; }
  .cell-css.cell-numericarrows:before {
    font-family: 'FontAwesome';
    font-size: 1em;
    line-height: 1em;
    top: 0px; }
  .cell-css.cell-numericarrows:not([data-value='0']):before {
    content: "\f102"; }
  .cell-css.cell-numericarrows:not([data-value='0']):after {
    content: "Collapse All"; }
  .cell-css.cell-numericarrows[data-value='0']:before {
    content: "\f103"; }
  .cell-css.cell-numericarrows[data-value='0']:after {
    content: "Expand All"; }
  .cell-css.cell-numericarrows:not([data-show-toggle='1']) {
    display: none; }

.cell-css.cell-numericexpandcollapse {
  text-align: center; }
  .cell-css.cell-numericexpandcollapse:before {
    font-family: 'FontAwesome';
    font-size: 1em;
    line-height: 1em;
    top: 0px;
    margin-right: 10px; }
  .cell-css.cell-numericexpandcollapse:not([data-value='0']):before {
    content: "\f106"; }
  .cell-css.cell-numericexpandcollapse[data-value='0']:before {
    content: "\f107"; }
  .cell-css.cell-numericexpandcollapse:not([data-show-toggle='1']) {
    display: none; }

.cell-css.cell-numericlink {
  text-align: center; }
  .cell-css.cell-numericlink[data-value='0'] {
    color: #9E9E9E; }
    .cell-css.cell-numericlink[data-value='0'] a {
      pointer-events: none;
      cursor: default;
      color: #9E9E9E; }

.cell-css.cell-numericactive[data-value='0'] {
  color: #9E9E9E; }
  .cell-css.cell-numericactive[data-value='0'] a {
    color: #9E9E9E; }
  .cell-css.cell-numericactive[data-value='0']:after {
    content: 'Inactive';
    margin-left: 5px;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    padding-left: 0.6em;
    padding-right: 0.6em;
    position: relative;
    top: -1px;
    border-radius: 10rem;
    color: #FFFFFF;
    background-color: #E53935; }

.cell-css.cell-numericinactive[data-value='1'] {
  color: #9E9E9E; }
  .cell-css.cell-numericinactive[data-value='1'] a {
    color: #9E9E9E; }
  .cell-css.cell-numericinactive[data-value='1']:after {
    content: 'Inactive';
    margin-left: 5px;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    padding-left: 0.6em;
    padding-right: 0.6em;
    position: relative;
    top: -1px;
    border-radius: 10rem;
    color: #FFFFFF;
    background-color: #E53935; }

.cell-css.cell-numericarchive[data-value='1'] {
  color: #9E9E9E; }
  .cell-css.cell-numericarchive[data-value='1'] a {
    color: #9E9E9E; }
  .cell-css.cell-numericarchive[data-value='1']:after {
    content: 'Archived';
    margin-left: 5px;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    padding-left: 0.6em;
    padding-right: 0.6em;
    position: relative;
    top: -1px;
    border-radius: 10rem;
    color: #FFFFFF;
    background-color: #E53935; }

.cell-css.cell-numericupdated[data-value='1']:after {
  content: 'Updated';
  margin-left: 5px;
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  padding-left: 0.6em;
  padding-right: 0.6em;
  position: relative;
  top: -1px;
  border-radius: 10rem;
  color: #FFFFFF;
  background-color: #616161; }

.cell-css.cell-numericsuccess {
  text-align: center; }
  .cell-css.cell-numericsuccess:not([data-value='0']) {
    background-color: #C8E6C9;
    font-weight: bold; }

.cell-css.cell-checkbox {
  padding: 0; }
  .cell-css.cell-checkbox label {
    padding: .75rem;
    cursor: pointer;
    margin-bottom: 0; }

.cell-css.cell-multi > span {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  padding-left: 0.6em;
  padding-right: 0.6em;
  position: relative;
  top: -1px;
  border-radius: 10rem;
  font-size: 0.75rem;
  margin-right: 5px;
  color: #FFFFFF;
  background-color: #616161; }

.cell-css.cell-suffix:after {
  margin-right: 0.35rem; }

.cell-css.cell-suffix[data-value="mobile"]:after {
  content: "(mobile)";
  text-decoration: none;
  display: inline-block;
  color: #011A3A;
  margin-left: 0.35rem; }

.cell-css.cell-suffix:empty {
  display: none; }

a.cell-css:before {
  margin-right: 3px;
  position: relative;
  top: 2px; }

a.cell-css.cell-numericlink {
  text-align: center; }
  a.cell-css.cell-numericlink:before {
    margin-right: 0;
    position: relative;
    top: 0; }
  a.cell-css.cell-numericlink[data-value='0'] {
    color: #9E9E9E;
    pointer-events: none;
    cursor: default;
    color: #9E9E9E; }

a.cell-css.cell-missing:empty {
  pointer-events: none;
  cursor: default;
  color: #FFFFFF; }

/* 
Element: ChatBot

Markup:
<div id="chatbot"><a href=""></a></div>

Styleguide ElementChatBot
*/
#chatbot {
  height: 56px;
  width: 56px;
  background-color: #214eaa;
  bottom: 36px;
  right: 36px;
  position: fixed;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  z-index: 100; }
  #chatbot a:before {
    font-family: 'FontAwesome';
    font-size: 1.6rem;
    color: #FFFFFF;
    content: "\f0e5";
    position: relative;
    top: 1rem;
    padding: 1rem; }

#fxo-widget-iframe {
  display: none; }

/* 
Component: Charts

Wrapper for [Highcharts](https://www.highcharts.com/demo).

Markup: chart.hbs

Weight: 100

Styleguide ComponentCharts
*/
/* 
No Data

Markup: chart-nodata.hbs

Weight: 100

Styleguide ComponentCharts.NoData
*/
.chart-nodata {
  height: 200px !important; }
  .chart-nodata:before {
    content: "No data to display";
    text-align: center;
    font-size: 2.5em;
    color: #9E9E9E;
    display: block;
    height: 100%;
    position: relative;
    top: 45%; }
  .chart-nodata svg {
    display: none; }

.highcharts-credits {
  display: none; }

.datepicker {
  font-size: 1em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  border-radius: 0;
  padding: 10px; }
  .datepicker table tr th {
    padding: 5px; }
  .datepicker table tr td {
    padding: 5px; }
    .datepicker table tr td.today, .datepicker table tr td.active {
      background-color: #1E88E5 !important;
      color: #FFFFFF !important;
      background-image: none; }

body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4,
body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3 {
  margin-left: auto;
  margin-right: auto; }
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult,
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult {
    display: none;
    flex: 0 0 100% !important;
    max-width: 100% !important; }
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult.col-midresult[data-idx="-1"],
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult.col-midresult[data-idx="-1"] {
      display: block; }
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4 > .col.col-noresult,
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3 > .col.col-noresult {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 0; }
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4 > .col.col-noresult *:last-child,
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3 > .col.col-noresult *:last-child {
      margin-bottom: 0; }
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4:has(.col-noresult),
  body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3:has(.col-noresult) {
    max-width: 100% !important; }
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4:has(.col-noresult) > .col.col-midresult,
    body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3:has(.col-noresult) > .col.col-midresult {
      animation-name: none;
      opacity: 1; }
      body[data-gridsize] .section .row > .col.col-grid .row.row-cols-4:has(.col-noresult) > .col.col-midresult > .row,
      body[data-gridsize] .section .row > .col.col-grid .row.row-cols-3:has(.col-noresult) > .col.col-midresult > .row {
        margin-left: 0;
        margin-right: 0; }

body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-4 {
  max-width: 1650px; }
  body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-4 > .col {
    flex: 0 0 20%;
    max-width: 20%; }
    body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="10"] {
      display: block; }

body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 1650px; }
  body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 25%;
    max-width: 25%; }
    body[data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="8"] {
      display: block; }

body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-4 {
  max-width: 1320px; }
  body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-4 > .col {
    flex: 0 0 25%;
    max-width: 25%; }
    body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="8"] {
      display: block; }

body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 1320px; }
  body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 33%;
    max-width: 33%; }
    body[data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
      display: block; }

body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-4 {
  max-width: 990px; }
  body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-4 > .col {
    flex: 0 0 33%;
    max-width: 33%; }
    body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="9"] {
      display: block; }

body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 990px; }
  body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 50%;
    max-width: 50%; }
    body[data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
      display: block; }

body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-4 {
  max-width: 660px; }
  body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-4 > .col {
    flex: 0 0 50%;
    max-width: 50%; }
    body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="6"] {
      display: block; }

body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 660px; }
  body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 100%;
    max-width: 100%; }
    body[data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
      display: block; }

body[data-gridsize][data-gridsize="sm"] .section {
  padding: 2rem 4rem; }
  body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) {
    display: flex !important; }
    body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-4 {
      max-width: 660px; }
      body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-4 > .col {
        flex: 0 0 50%;
        max-width: 50%; }
        body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="6"] {
          display: block; }
    body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 {
      max-width: 660px; }
      body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 > .col {
        flex: 0 0 100%;
        max-width: 100%; }
        body[data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
          display: block; }

body[data-gridsize][data-gridsize="xs"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-4 > .col.col-midresult[data-idx="6"] {
  display: block; }

.form-vertical .filestack .filestack-files li a.fa-times-circle, .form-group .filestack .filestack-files li a.fa-times-circle {
  color: #E53935;
  display: none; }

.form-vertical .filestack .filestack-files li:before, .form-group .filestack .filestack-files li:before {
  font-family: "FontAwesome";
  content: "\f016";
  margin-right: 5px;
  color: #9E9E9E; }

.form-vertical .filestack .filestack-files li:hover a.fa-times-circle, .form-group .filestack .filestack-files li:hover a.fa-times-circle {
  display: inline; }

.form-vertical input.js-filestack, .form-group input.js-filestack {
  visibility: hidden;
  padding: 0px;
  margin: 0px;
  height: 0px; }

#footerwrapper {
  background-color: #444444;
  color: #FFFFFF;
  padding: .4em 1em;
  z-index: 10;
  transition: 0.35s;
  transition-timing-function: linear; }
  #footerwrapper.navbar {
    min-height: inherit; }
  #footerwrapper #footer {
    background-color: transparent; }
    #footerwrapper #footer #footer-copyright {
      float: left;
      font-size: 90%; }
    #footerwrapper #footer #footer-links {
      float: right; }
      #footerwrapper #footer #footer-links .list-inline {
        margin: 0; }
        #footerwrapper #footer #footer-links .list-inline li {
          padding: 0; }
          #footerwrapper #footer #footer-links .list-inline li a {
            color: #FFFFFF; }
        #footerwrapper #footer #footer-links .list-inline li:before {
          content: "|";
          color: #ddd;
          margin: 0 .5em; }
        #footerwrapper #footer #footer-links .list-inline li:first-child:before {
          content: ""; }

#footer-status {
  position: fixed;
  bottom: 5px;
  right: 15px; }
  #footer-status #footer-status-message {
    text-transform: uppercase; }

form textarea.code, form textarea.js-tinymce, form textarea.mceeditor,
.form textarea.code,
.form textarea.js-tinymce,
.form textarea.mceeditor,
#formdesign textarea.code,
#formdesign textarea.js-tinymce,
#formdesign textarea.mceeditor,
#ajax-formdesign textarea.code,
#ajax-formdesign textarea.js-tinymce,
#ajax-formdesign textarea.mceeditor {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

form textarea[name="constant_value"], form textarea[name='email_content'],
.form textarea[name="constant_value"],
.form textarea[name='email_content'],
#formdesign textarea[name="constant_value"],
#formdesign textarea[name='email_content'],
#ajax-formdesign textarea[name="constant_value"],
#ajax-formdesign textarea[name='email_content'] {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

form label[data-isdisabled="1"],
.form label[data-isdisabled="1"],
#formdesign label[data-isdisabled="1"],
#ajax-formdesign label[data-isdisabled="1"] {
  color: #9E9E9E; }

form .form-control,
.form .form-control,
#formdesign .form-control,
#ajax-formdesign .form-control {
  border-radius: 0.5rem; }

form .form-control-sm,
.form .form-control-sm,
#formdesign .form-control-sm,
#ajax-formdesign .form-control-sm {
  height: calc(1.5em + .5rem + 3px); }

form .field-token .fa.fa-spinner,
.form .field-token .fa.fa-spinner,
#formdesign .field-token .fa.fa-spinner,
#ajax-formdesign .field-token .fa.fa-spinner {
  font-size: 1rem; }

form input.readonly, form input.disabled,
.form input.readonly,
.form input.disabled,
#formdesign input.readonly,
#formdesign input.disabled,
#ajax-formdesign input.readonly,
#ajax-formdesign input.disabled {
  pointer-events: none;
  background-color: #e9ecef; }

form input.text,
.form input.text,
#formdesign input.text,
#ajax-formdesign input.text {
  border: none;
  background-color: inherit;
  padding: 0;
  height: auto;
  display: inline-block;
  transition: none;
  font-size: 1em; }
  form input.text + .help-inline .fieldformat,
  .form input.text + .help-inline .fieldformat,
  #formdesign input.text + .help-inline .fieldformat,
  #ajax-formdesign input.text + .help-inline .fieldformat {
    font-size: 85%; }

form input[type='checkbox'] .form-switch:before,
.form input[type='checkbox'] .form-switch:before,
#formdesign input[type='checkbox'] .form-switch:before,
#ajax-formdesign input[type='checkbox'] .form-switch:before {
  font-family: "FontAwesome";
  content: "\f204";
  color: #9E9E9E;
  margin-left: 5px; }

form input[type='checkbox'] .form-switch:checked:before,
.form input[type='checkbox'] .form-switch:checked:before,
#formdesign input[type='checkbox'] .form-switch:checked:before,
#ajax-formdesign input[type='checkbox'] .form-switch:checked:before {
  font-family: "FontAwesome";
  content: "\f205";
  color: #388E3C;
  margin-left: 5px; }

form .input-group:has(.input-group-append) input,
.form .input-group:has(.input-group-append) input,
#formdesign .input-group:has(.input-group-append) input,
#ajax-formdesign .input-group:has(.input-group-append) input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

form .input-group .input-group-prepend .input-group-text,
.form .input-group .input-group-prepend .input-group-text,
#formdesign .input-group .input-group-prepend .input-group-text,
#ajax-formdesign .input-group .input-group-prepend .input-group-text {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem; }

form .mce-tinymce,
.form .mce-tinymce,
#formdesign .mce-tinymce,
#ajax-formdesign .mce-tinymce {
  box-shadow: none; }

form optgroup,
.form optgroup,
#formdesign optgroup,
#ajax-formdesign optgroup {
  font-weight: 100;
  color: #9E9E9E; }
  form optgroup option,
  .form optgroup option,
  #formdesign optgroup option,
  #ajax-formdesign optgroup option {
    font-size: .88rem;
    color: #011A3A; }

form option[disabled],
.form option[disabled],
#formdesign option[disabled],
#ajax-formdesign option[disabled] {
  background-color: #E0E0E0;
  color: #9E9E9E; }

form .control-switch,
.form .control-switch,
#formdesign .control-switch,
#ajax-formdesign .control-switch {
  position: relative;
  text-align: left; }
  form .control-switch input[type="checkbox"],
  .form .control-switch input[type="checkbox"],
  #formdesign .control-switch input[type="checkbox"],
  #ajax-formdesign .control-switch input[type="checkbox"] {
    display: inline-block;
    position: absolute;
    width: 1rem;
    top: -0.5rem;
    opacity: 0;
    border-width: 0; }
    form .control-switch input[type="checkbox"] + label,
    .form .control-switch input[type="checkbox"] + label,
    #formdesign .control-switch input[type="checkbox"] + label,
    #ajax-formdesign .control-switch input[type="checkbox"] + label {
      font-size: 0.8rem; }
      form .control-switch input[type="checkbox"] + label:before,
      .form .control-switch input[type="checkbox"] + label:before,
      #formdesign .control-switch input[type="checkbox"] + label:before,
      #ajax-formdesign .control-switch input[type="checkbox"] + label:before {
        font-family: "FontAwesome";
        content: "\f204";
        margin-right: 5px;
        font-size: 0.9rem;
        position: relative; }
    form .control-switch input[type="checkbox"]:checked + label:before,
    .form .control-switch input[type="checkbox"]:checked + label:before,
    #formdesign .control-switch input[type="checkbox"]:checked + label:before,
    #ajax-formdesign .control-switch input[type="checkbox"]:checked + label:before {
      font-family: "FontAwesome";
      content: "\f205";
      margin-right: 5px; }

form .row.row-daterange,
.form .row.row-daterange,
#formdesign .row.row-daterange,
#ajax-formdesign .row.row-daterange {
  position: relative; }
  form .row.row-daterange .col:first-child:after,
  .form .row.row-daterange .col:first-child:after,
  #formdesign .row.row-daterange .col:first-child:after,
  #ajax-formdesign .row.row-daterange .col:first-child:after {
    content: " to ";
    display: block;
    position: absolute;
    top: 1.7rem;
    right: -15px;
    font-weight: bold;
    background-color: #EAF1FB;
    width: 30px;
    text-align: center;
    padding: .375rem 0;
    height: calc(1.5em + .75rem + 2px); }

form .custom-control,
.form .custom-control,
#formdesign .custom-control,
#ajax-formdesign .custom-control {
  padding-left: 0; }
  form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"],
  .form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"],
  #formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"],
  #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"] {
    width: 0.8em;
    height: 0.8em;
    margin-top: .35em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #616161;
    border-radius: 3px;
    appearance: none;
    opacity: 1;
    z-index: 2;
    position: relative;
    display: inline-block;
    margin-right: 5px; }
    form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:checked,
    .form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:checked,
    #formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:checked,
    #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:checked {
      background-color: #0d6efd;
      border-color: #0d6efd;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M3.5 10.5L8.5 15.5L16.5 4.5'/%3e%3c/svg%3e"); }
    form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:indeterminate,
    .form .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:indeterminate,
    #formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:indeterminate,
    #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) input[type="checkbox"]:indeterminate {
      background-color: #0d6efd;
      border-color: #0d6efd;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cline x1='4' y1='10' x2='16' y2='10' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5'/%3e%3c/svg%3e"); }
  form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label a[data-toggle="collapse"],
  .form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label a[data-toggle="collapse"],
  #formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label a[data-toggle="collapse"],
  #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label a[data-toggle="collapse"] {
    font-weight: normal; }
  form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:before,
  .form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:before,
  #formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:before,
  #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:before {
    display: none; }
  form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:after,
  .form .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:after,
  #formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:after,
  #ajax-formdesign .custom-control.custom-checkbox:has(.custom-control-label) .custom-control-label:after {
    display: none; }

form .list-group .list-group-item:has(.custom-control) > .custom-control,
.form .list-group .list-group-item:has(.custom-control) > .custom-control,
#formdesign .list-group .list-group-item:has(.custom-control) > .custom-control,
#ajax-formdesign .list-group .list-group-item:has(.custom-control) > .custom-control {
  padding-left: 26px;
  position: relative; }
  form .list-group .list-group-item:has(.custom-control) > .custom-control > .custom-control-input,
  .form .list-group .list-group-item:has(.custom-control) > .custom-control > .custom-control-input,
  #formdesign .list-group .list-group-item:has(.custom-control) > .custom-control > .custom-control-input,
  #ajax-formdesign .list-group .list-group-item:has(.custom-control) > .custom-control > .custom-control-input {
    position: absolute;
    left: 3px; }

@keyframes borderPulse {
  0% {
    border-color: 1px solid #E0E0E0; }
  38% {
    border-color: #000000; }
  62% {
    border-color: #000000; }
  100% {
    border-color: 1px solid #E0E0E0; } }

@keyframes borderPulseRed {
  0% {
    border-color: 1px solid #E0E0E0; }
  38% {
    border-color: #D32F2F; }
  62% {
    border-color: #D32F2F; }
  100% {
    border-color: 1px solid #E0E0E0; } }

form .form-group .formrequired,
form .form-group .formnonrequired,
.form .form-group .formrequired,
.form .form-group .formnonrequired,
#formdesign .form-group .formrequired,
#formdesign .form-group .formnonrequired,
#ajax-formdesign .form-group .formrequired,
#ajax-formdesign .form-group .formnonrequired {
  display: none; }

form .form-group .form-control.form-superadmin,
.form .form-group .form-control.form-superadmin,
#formdesign .form-group .form-control.form-superadmin,
#ajax-formdesign .form-group .form-control.form-superadmin {
  padding-left: 2rem; }
  form .form-group .form-control.form-superadmin + span.fieldformat:before,
  .form .form-group .form-control.form-superadmin + span.fieldformat:before,
  #formdesign .form-group .form-control.form-superadmin + span.fieldformat:before,
  #ajax-formdesign .form-group .form-control.form-superadmin + span.fieldformat:before {
    display: inline-block;
    content: "\f023";
    font-family: "FontAwesome";
    top: -1.9rem;
    position: absolute;
    font-size: 0.9rem;
    left: 0.5rem;
    font-style: normal;
    color: #757575; }
  form .form-group .form-control.form-superadmin + span.fieldformat:after,
  .form .form-group .form-control.form-superadmin + span.fieldformat:after,
  #formdesign .form-group .form-control.form-superadmin + span.fieldformat:after,
  #ajax-formdesign .form-group .form-control.form-superadmin + span.fieldformat:after {
    display: inline;
    content: " Superadmins only."; }

form .form-group .formrequired + label,
.form .form-group .formrequired + label,
#formdesign .form-group .formrequired + label,
#ajax-formdesign .form-group .formrequired + label {
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 0.3rem; }

form .form-group .formrequired + label:before,
.form .form-group .formrequired + label:before,
#formdesign .form-group .formrequired + label:before,
#ajax-formdesign .form-group .formrequired + label:before {
  content: "* ";
  font-weight: bold; }

form .form-group .formrequired + span,
.form .form-group .formrequired + span,
#formdesign .form-group .formrequired + span,
#ajax-formdesign .form-group .formrequired + span {
  font-weight: bold;
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.3rem; }

form .form-group .formrequired + span:before,
.form .form-group .formrequired + span:before,
#formdesign .form-group .formrequired + span:before,
#ajax-formdesign .form-group .formrequired + span:before {
  content: "* ";
  font-weight: bold; }

form .form-group .formnonrequired + label,
.form .form-group .formnonrequired + label,
#formdesign .form-group .formnonrequired + label,
#ajax-formdesign .form-group .formnonrequired + label {
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 0.3rem; }

form .form-group .formnonrequired + span,
.form .form-group .formnonrequired + span,
#formdesign .form-group .formnonrequired + span,
#ajax-formdesign .form-group .formnonrequired + span {
  font-weight: bold;
  display: block;
  font-size: 0.8rem; }

form .form-group .fieldformat,
.form .form-group .fieldformat,
#formdesign .form-group .fieldformat,
#ajax-formdesign .form-group .fieldformat {
  font-size: 85%;
  margin-top: .25rem;
  opacity: 0.7;
  font-style: italic;
  position: relative; }
  form .form-group .fieldformat a,
  .form .form-group .fieldformat a,
  #formdesign .form-group .fieldformat a,
  #ajax-formdesign .form-group .fieldformat a {
    padding: 0; }

form .form-group .formlistgrid label.fdcheckboxlabel,
form .form-group .formlistgrid label.fdradiolabel,
.form .form-group .formlistgrid label.fdcheckboxlabel,
.form .form-group .formlistgrid label.fdradiolabel,
#formdesign .form-group .formlistgrid label.fdcheckboxlabel,
#formdesign .form-group .formlistgrid label.fdradiolabel,
#ajax-formdesign .form-group .formlistgrid label.fdcheckboxlabel,
#ajax-formdesign .form-group .formlistgrid label.fdradiolabel {
  cursor: pointer;
  display: block;
  font-weight: normal;
  margin: 0;
  position: relative; }
  form .form-group .formlistgrid label.fdcheckboxlabel input,
  form .form-group .formlistgrid label.fdradiolabel input,
  .form .form-group .formlistgrid label.fdcheckboxlabel input,
  .form .form-group .formlistgrid label.fdradiolabel input,
  #formdesign .form-group .formlistgrid label.fdcheckboxlabel input,
  #formdesign .form-group .formlistgrid label.fdradiolabel input,
  #ajax-formdesign .form-group .formlistgrid label.fdcheckboxlabel input,
  #ajax-formdesign .form-group .formlistgrid label.fdradiolabel input {
    float: left;
    position: relative;
    margin: 4px; }
    form .form-group .formlistgrid label.fdcheckboxlabel input:hover,
    form .form-group .formlistgrid label.fdradiolabel input:hover,
    .form .form-group .formlistgrid label.fdcheckboxlabel input:hover,
    .form .form-group .formlistgrid label.fdradiolabel input:hover,
    #formdesign .form-group .formlistgrid label.fdcheckboxlabel input:hover,
    #formdesign .form-group .formlistgrid label.fdradiolabel input:hover,
    #ajax-formdesign .form-group .formlistgrid label.fdcheckboxlabel input:hover,
    #ajax-formdesign .form-group .formlistgrid label.fdradiolabel input:hover {
      background-color: #FFEB3B; }
  form .form-group .formlistgrid label.fdcheckboxlabel:hover,
  form .form-group .formlistgrid label.fdradiolabel:hover,
  .form .form-group .formlistgrid label.fdcheckboxlabel:hover,
  .form .form-group .formlistgrid label.fdradiolabel:hover,
  #formdesign .form-group .formlistgrid label.fdcheckboxlabel:hover,
  #formdesign .form-group .formlistgrid label.fdradiolabel:hover,
  #ajax-formdesign .form-group .formlistgrid label.fdcheckboxlabel:hover,
  #ajax-formdesign .form-group .formlistgrid label.fdradiolabel:hover {
    background-color: #FFEB3B; }
  form .form-group .formlistgrid label.fdcheckboxlabel.disabled,
  form .form-group .formlistgrid label.fdradiolabel.disabled,
  .form .form-group .formlistgrid label.fdcheckboxlabel.disabled,
  .form .form-group .formlistgrid label.fdradiolabel.disabled,
  #formdesign .form-group .formlistgrid label.fdcheckboxlabel.disabled,
  #formdesign .form-group .formlistgrid label.fdradiolabel.disabled,
  #ajax-formdesign .form-group .formlistgrid label.fdcheckboxlabel.disabled,
  #ajax-formdesign .form-group .formlistgrid label.fdradiolabel.disabled {
    pointer-events: none;
    color: #9E9E9E;
    opacity: 0.3; }

form .form-group .formlistgrid td,
.form .form-group .formlistgrid td,
#formdesign .form-group .formlistgrid td,
#ajax-formdesign .form-group .formlistgrid td {
  border-top-width: 0px; }

form .form-group table td.pad15,
.form .form-group table td.pad15,
#formdesign .form-group table td.pad15,
#ajax-formdesign .form-group table td.pad15 {
  padding-right: 15px; }

form .form-group .highlight,
.form .form-group .highlight,
#formdesign .form-group .highlight,
#ajax-formdesign .form-group .highlight {
  background-color: #FFEB3B; }

form .form-group .fix-width,
.form .form-group .fix-width,
#formdesign .form-group .fix-width,
#ajax-formdesign .form-group .fix-width {
  width: auto; }

form .form-group input:focus ~ .fieldformat,
form .form-group select:focus ~ .fieldformat,
form .form-group textarea:focus ~ .fieldformat,
.form .form-group input:focus ~ .fieldformat,
.form .form-group select:focus ~ .fieldformat,
.form .form-group textarea:focus ~ .fieldformat,
#formdesign .form-group input:focus ~ .fieldformat,
#formdesign .form-group select:focus ~ .fieldformat,
#formdesign .form-group textarea:focus ~ .fieldformat,
#ajax-formdesign .form-group input:focus ~ .fieldformat,
#ajax-formdesign .form-group select:focus ~ .fieldformat,
#ajax-formdesign .form-group textarea:focus ~ .fieldformat {
  opacity: 1; }

form .form-group select,
.form .form-group select,
#formdesign .form-group select,
#ajax-formdesign .form-group select {
  width: auto; }

form .form-group textarea.code,
.form .form-group textarea.code,
#formdesign .form-group textarea.code,
#ajax-formdesign .form-group textarea.code {
  font-family: "Consolas", monospace;
  font-size: 1.2rem; }

form .form-group textarea[name='email_content'],
.form .form-group textarea[name='email_content'],
#formdesign .form-group textarea[name='email_content'],
#ajax-formdesign .form-group textarea[name='email_content'] {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

form .form-group input[type='checkbox'] .form-switch:before,
.form .form-group input[type='checkbox'] .form-switch:before,
#formdesign .form-group input[type='checkbox'] .form-switch:before,
#ajax-formdesign .form-group input[type='checkbox'] .form-switch:before {
  font-family: "FontAwesome";
  content: "\f204";
  color: #9E9E9E;
  margin-left: 5px; }

form .form-group input[type='checkbox'] .form-switch:checked:before,
.form .form-group input[type='checkbox'] .form-switch:checked:before,
#formdesign .form-group input[type='checkbox'] .form-switch:checked:before,
#ajax-formdesign .form-group input[type='checkbox'] .form-switch:checked:before {
  font-family: "FontAwesome";
  content: "\f205";
  color: #388E3C;
  margin-left: 5px; }

form .form-group .mce-tinymce,
.form .form-group .mce-tinymce,
#formdesign .form-group .mce-tinymce,
#ajax-formdesign .form-group .mce-tinymce {
  box-shadow: none; }

form .form-group optgroup,
.form .form-group optgroup,
#formdesign .form-group optgroup,
#ajax-formdesign .form-group optgroup {
  font-weight: 100;
  color: #9E9E9E; }
  form .form-group optgroup option,
  .form .form-group optgroup option,
  #formdesign .form-group optgroup option,
  #ajax-formdesign .form-group optgroup option {
    font-size: .88rem;
    color: #011A3A; }

form .form-actions,
.form .form-actions,
#formdesign .form-actions,
#ajax-formdesign .form-actions {
  margin-top: 2em; }

form[data-is-submitting="1"] .form-actions input[type="submit"],
.form[data-is-submitting="1"] .form-actions input[type="submit"],
#formdesign[data-is-submitting="1"] .form-actions input[type="submit"],
#ajax-formdesign[data-is-submitting="1"] .form-actions input[type="submit"] {
  display: inline-block;
  background-color: #E0E0E0;
  pointer-events: none;
  color: #9E9E9E;
  border: 1px solid #E0E0E0;
  opacity: 0.65;
  cursor: pointer; }

form[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback),
.form[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback),
#formdesign[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback),
#ajax-formdesign[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback) {
  position: relative; }
  form[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback):before,
  .form[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback):before,
  #formdesign[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback):before,
  #ajax-formdesign[data-is-submitting="1"] .form-actions:has(#ajax-submitpostback):before {
    font-family: "FontAwesome";
    content: "\f110" !important;
    animation: fa-spin 2s infinite linear;
    display: inline-block;
    position: absolute;
    font-style: normal;
    top: 0.5em;
    left: 10px;
    color: #011A3A; }

form td .form-control.form-superadmin,
.form td .form-control.form-superadmin,
#formdesign td .form-control.form-superadmin,
#ajax-formdesign td .form-control.form-superadmin {
  padding-left: 2rem; }
  form td .form-control.form-superadmin + span.fieldformat,
  .form td .form-control.form-superadmin + span.fieldformat,
  #formdesign td .form-control.form-superadmin + span.fieldformat,
  #ajax-formdesign td .form-control.form-superadmin + span.fieldformat {
    position: relative;
    font-size: 85%;
    font-style: italic; }
    form td .form-control.form-superadmin + span.fieldformat:before,
    .form td .form-control.form-superadmin + span.fieldformat:before,
    #formdesign td .form-control.form-superadmin + span.fieldformat:before,
    #ajax-formdesign td .form-control.form-superadmin + span.fieldformat:before {
      display: inline-block;
      content: "\f023";
      font-family: "FontAwesome";
      top: -1.7rem;
      position: absolute;
      font-size: 0.9rem;
      left: 0.5rem;
      color: #9E9E9E;
      font-style: normal; }

form + p,
.form + p,
#formdesign + p,
#ajax-formdesign + p {
  margin-top: 1rem; }

.btn + .btn {
  margin-left: 15px; }

body.dark form .form-control,
body.dark .form .form-control,
body.dark #formdesign .form-control,
body.dark #ajax-formdesign .form-control {
  color: #E0E0E0;
  background-color: #424242; }

.backoffice form .form-group textarea.code,
.backoffice .form .form-group textarea.code,
.backoffice #formdesign .form-group textarea.code,
.backoffice #ajax-formdesign .form-group textarea.code {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

.backoffice form .form-group textarea.js-tinymce, .backoffice form .form-group textarea.mceeditor,
.backoffice .form .form-group textarea.js-tinymce,
.backoffice .form .form-group textarea.mceeditor,
.backoffice #formdesign .form-group textarea.js-tinymce,
.backoffice #formdesign .form-group textarea.mceeditor,
.backoffice #ajax-formdesign .form-group textarea.js-tinymce,
.backoffice #ajax-formdesign .form-group textarea.mceeditor {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

.backoffice form .form-group textarea[name="constant_value"],
.backoffice .form .form-group textarea[name="constant_value"],
.backoffice #formdesign .form-group textarea[name="constant_value"],
.backoffice #ajax-formdesign .form-group textarea[name="constant_value"] {
  font-family: "Consolas", monospace;
  font-size: 1rem; }

.backoffice form .form-group .formnonrequired + label + input[type="text"], .backoffice form .form-group .formnonrequired + label + input[type="url"],
.backoffice .form .form-group .formnonrequired + label + input[type="text"],
.backoffice .form .form-group .formnonrequired + label + input[type="url"],
.backoffice #formdesign .form-group .formnonrequired + label + input[type="text"],
.backoffice #formdesign .form-group .formnonrequired + label + input[type="url"],
.backoffice #ajax-formdesign .form-group .formnonrequired + label + input[type="text"],
.backoffice #ajax-formdesign .form-group .formnonrequired + label + input[type="url"] {
  border-style: dashed; }

.backoffice form .form-group .formnonrequired + label + textarea,
.backoffice .form .form-group .formnonrequired + label + textarea,
.backoffice #formdesign .form-group .formnonrequired + label + textarea,
.backoffice #ajax-formdesign .form-group .formnonrequired + label + textarea {
  border-style: dashed; }

.backoffice form .form-group .js-multiselect,
.backoffice .form .form-group .js-multiselect,
.backoffice #formdesign .form-group .js-multiselect,
.backoffice #ajax-formdesign .form-group .js-multiselect {
  height: 32px;
  display: none; }

.backoffice form .form-group .js-select,
.backoffice .form .form-group .js-select,
.backoffice #formdesign .form-group .js-select,
.backoffice #ajax-formdesign .form-group .js-select {
  height: 34px;
  display: none;
  width: 97% !important; }

.backoffice form .form-group .chosen-container,
.backoffice .form .form-group .chosen-container,
.backoffice #formdesign .form-group .chosen-container,
.backoffice #ajax-formdesign .form-group .chosen-container {
  display: block;
  width: 100% !important;
  font-size: 1rem; }
  .backoffice form .form-group .chosen-container .chosen-choices,
  .backoffice .form .form-group .chosen-container .chosen-choices,
  .backoffice #formdesign .form-group .chosen-container .chosen-choices,
  .backoffice #ajax-formdesign .form-group .chosen-container .chosen-choices {
    padding: 0.375rem 0.75rem;
    background-image: none;
    border-radius: 0.5rem;
    border-color: #ced4da; }
    .backoffice form .form-group .chosen-container .chosen-choices .search-choice,
    .backoffice .form .form-group .chosen-container .chosen-choices .search-choice,
    .backoffice #formdesign .form-group .chosen-container .chosen-choices .search-choice,
    .backoffice #ajax-formdesign .form-group .chosen-container .chosen-choices .search-choice {
      font-size: 0.75em;
      padding: .25rem 1.4rem .25rem .4rem;
      background-image: none;
      margin-right: 10px;
      background-color: #757575;
      border-color: #616161;
      color: #FFFFFF;
      font-weight: bold;
      box-shadow: none; }
      .backoffice form .form-group .chosen-container .chosen-choices .search-choice a,
      .backoffice .form .form-group .chosen-container .chosen-choices .search-choice a,
      .backoffice #formdesign .form-group .chosen-container .chosen-choices .search-choice a,
      .backoffice #ajax-formdesign .form-group .chosen-container .chosen-choices .search-choice a {
        background: none;
        font-size: 1.4em; }
        .backoffice form .form-group .chosen-container .chosen-choices .search-choice a:before,
        .backoffice .form .form-group .chosen-container .chosen-choices .search-choice a:before,
        .backoffice #formdesign .form-group .chosen-container .chosen-choices .search-choice a:before,
        .backoffice #ajax-formdesign .form-group .chosen-container .chosen-choices .search-choice a:before {
          display: block;
          font-family: 'FontAwesome';
          content: "\f00d";
          margin-right: 0.4em;
          font-size: 0.9rem;
          color: #FFFFFF;
          font-weight: normal; }
  .backoffice form .form-group .chosen-container .chosen-drop,
  .backoffice .form .form-group .chosen-container .chosen-drop,
  .backoffice #formdesign .form-group .chosen-container .chosen-drop,
  .backoffice #ajax-formdesign .form-group .chosen-container .chosen-drop {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    border-color: #E0E0E0; }
    .backoffice form .form-group .chosen-container .chosen-drop .chosen-results li,
    .backoffice .form .form-group .chosen-container .chosen-drop .chosen-results li,
    .backoffice #formdesign .form-group .chosen-container .chosen-drop .chosen-results li,
    .backoffice #ajax-formdesign .form-group .chosen-container .chosen-drop .chosen-results li {
      line-height: 1.5rem; }
      .backoffice form .form-group .chosen-container .chosen-drop .chosen-results li.highlighted,
      .backoffice .form .form-group .chosen-container .chosen-drop .chosen-results li.highlighted,
      .backoffice #formdesign .form-group .chosen-container .chosen-drop .chosen-results li.highlighted,
      .backoffice #ajax-formdesign .form-group .chosen-container .chosen-drop .chosen-results li.highlighted {
        background-color: #C5CAE9; }

/* 
Element: Headings

Wrapper for Bootstrap Headings

Markup:
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>


Styleguide ElementHeadings
*/
/* 
Badges

Markup:
<h1>Heading 1 <span class="badge badge-info">Badge</span></h1>
<h2>Heading 2 <span class="badge badge-info">Badge</span></h2>
<h3>Heading 3 <span class="badge badge-info">Badge</span></h3>
<h4>Heading 4 <span class="badge badge-info">Badge</span></h4>
<h5>Heading 5 <span class="badge badge-info">Badge</span></h5>
<h6>Heading 6 <span class="badge badge-info">Badge</span></h6>


Styleguide ElementHeadings.Badge
*/
/* 
Icons

Markup:
<h1><i class="fa fa-chevron-right"></i> Heading 1</h1>
<h2><i class="fa fa-chevron-right"></i> Heading 2</h2>
<h3><i class="fa fa-chevron-right"></i> Heading 3</h3>
<h4><i class="fa fa-chevron-right"></i> Heading 4</h4>
<h5><i class="fa fa-chevron-right"></i> Heading 5</h5>
<h6><i class="fa fa-chevron-right"></i> Heading 6</h6>


Styleguide ElementHeadings.Icons
*/
/* 
Labels

Markup:
<h1>Heading 1 <span class="label label-info">Label</span></h1>
<h2>Heading 2 <span class="label label-info">Label</span></h2>
<h3>Heading 3 <span class="label label-info">Label</span></h3>
<h4>Heading 4 <span class="label label-info">Label</span></h4>
<h5>Heading 5 <span class="label label-info">Label</span></h5>
<h6>Heading 6 <span class="label label-info">Label</span></h6>


Styleguide ElementHeadings.Label
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: normal;
  position: relative; }
  h1 .label,
  h2 .label,
  h3 .label,
  h4 .label,
  h5 .label,
  h6 .label {
    position: relative;
    top: -0.25em;
    font-size: 60%; }
  h1 .badge,
  h2 .badge,
  h3 .badge,
  h4 .badge,
  h5 .badge,
  h6 .badge {
    position: relative;
    top: -0.1em;
    font-size: 80%; }
  h1 .subtitle,
  h2 .subtitle,
  h3 .subtitle,
  h4 .subtitle,
  h5 .subtitle,
  h6 .subtitle {
    color: #9E9E9E;
    font-size: 80%;
    font-style: italic;
    padding: 0em 0.5em 0em; }
  h1 .progress,
  h2 .progress,
  h3 .progress,
  h4 .progress,
  h5 .progress,
  h6 .progress {
    height: 26px;
    position: relative;
    width: 300px;
    float: right;
    margin-top: 7px; }

.backoffice #title h2 {
  margin-top: 0;
  margin-bottom: 0; }

.backoffice h2,
.backoffice h3 {
  margin-top: 0; }

#headerwrapper {
  z-index: 99;
  transition: 0.35s;
  transition-timing-function: linear;
  border: 0; }
  #headerwrapper #header {
    color: #011A3A;
    width: 400px;
    float: right; }
    #headerwrapper #header .content a.btn {
      margin-top: 12px; }
    #headerwrapper #header .home-link {
      padding: 1em 0 0 1em; }
      #headerwrapper #header .home-link a {
        color: #011A3A; }
    #headerwrapper #header #header-logo {
      padding: .4em 1em;
      border-left: 1px solid #ddd; }
    #headerwrapper #header #header-profile {
      margin-top: -0.6em;
      margin-right: 2.5em;
      padding: .5em 1em;
      float: right;
      background-color: #ffffff;
      border-radius: 10px;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      #headerwrapper #header #header-profile button {
        background-color: transparent;
        border: 0;
        margin: 0;
        float: left; }
        #headerwrapper #header #header-profile button i {
          color: #9E9E9E;
          font-size: 1.2em;
          margin: .4em .2em 0; }
          #headerwrapper #header #header-profile button i:hover {
            color: #1976D2; }
        #headerwrapper #header #header-profile button .badge {
          position: relative;
          top: -10px;
          left: -12px;
          padding: 2px 5px;
          font-size: 11px; }
      #headerwrapper #header #header-profile a {
        margin: 0 .5em;
        float: left; }
        #headerwrapper #header #header-profile a i {
          color: #9E9E9E;
          font-size: 1.3em;
          margin: .4em .2em 0;
          text-decoration: none; }
          #headerwrapper #header #header-profile a i:hover {
            color: #1976D2; }
        #headerwrapper #header #header-profile a.fa {
          color: #9E9E9E;
          font-size: 1.3em;
          margin-top: 0.4em;
          text-decoration: none; }
        #headerwrapper #header #header-profile a:hover {
          color: #1976D2; }
      #headerwrapper #header #header-profile .profile-block {
        border-radius: 50%;
        margin-left: .5em; }
      #headerwrapper #header #header-profile .dropdown-menu-container {
        display: inline-block;
        top: 1px; }
        #headerwrapper #header #header-profile .dropdown-menu-container .dropdown-menu a {
          margin: 0;
          float: none; }
          #headerwrapper #header #header-profile .dropdown-menu-container .dropdown-menu a:hover {
            color: #011A3A; }
      #headerwrapper #header #header-profile .slide-panel {
        right: -400px;
        height: 100% !important; }
        #headerwrapper #header #header-profile .slide-panel a {
          margin: 0; }
          #headerwrapper #header #header-profile .slide-panel a i {
            font-size: 1em;
            margin: 0.9em 0 0 0; }
        #headerwrapper #header #header-profile .slide-panel .alert a {
          margin: 0; }
          #headerwrapper #header #header-profile .slide-panel .alert a i {
            margin: 0;
            color: #E53935;
            margin: 0.5em 0 0 0; }

/* 
Element: Icons

Links

Markup:
<p>lorem ipsum <a class="{{modifier_class}}" href="">a link here</a> dolor sit amet, consectetur adipiscing elit.</p>

:active			- &nbsp;
:visited		- &nbsp;
:hover			- &nbsp;

Styleguide ElementLinks
*/
svg {
  overflow: hidden;
  vertical-align: middle;
  display: inline-block; }

a.link-css:before {
  display: inline-block;
  margin-right: 0.25rem;
  font-family: 'FontAwesome';
  text-align: center;
  font-weight: bold; }

a.link-css.link-numericnoyes:not([data-value='0']):before {
  content: "\f205"; }

a.link-css.link-numericnoyes[data-value='0']:before {
  content: "\f204";
  color: #9E9E9E; }

a.always-active {
  pointer-events: initial !important;
  color: #214eaa !important; }

i.fa.animated {
  animation-iteration-count: infinite;
  animation-duration: 6s; }
  i.fa.animated.fa-info-circle {
    color: #011A3A;
    animation-name: flash; }
    i.fa.animated.fa-info-circle.text-danger {
      color: #D32F2F; }
    i.fa.animated.fa-info-circle.text-success {
      color: #388E3C; }
  i.fa.animated.fa-check-square {
    color: #388E3C;
    animation-duration: 2s;
    animation-name: heartBeat; }
  i.fa.animated.fa-arrow-down {
    animation-duration: 2s;
    animation-name: heartBeat; }
  i.fa.animated.fa-exclamation-triangle {
    color: #D32F2F;
    animation-duration: 2s;
    animation-name: heartBeat; }
  i.fa.animated.rollIn {
    animation-iteration-count: 1;
    animation-duration: 1s; }

i.animated {
  display: inline-block;
  font-style: normal; }
  i.animated.tada {
    animation-iteration-count: infinite;
    animation-duration: 3s; }

body strong > .material-symbols-outlined,
body strong > .material-symbols-rounded {
  font-variation-settings: 'FILL' 1; }

body .material-symbols-outlined,
body .material-symbols-rounded {
  font-size: 1.1em;
  position: relative;
  top: 0.15rem;
  aspect-ratio: 1; }
  body .material-symbols-outlined.bg-success, body .material-symbols-outlined.bg-danger,
  body .material-symbols-rounded.bg-success,
  body .material-symbols-rounded.bg-danger {
    color: #FFFFFF; }
  body .material-symbols-outlined.icon,
  body .material-symbols-rounded.icon {
    background-color: #FDB913;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 0.25rem;
    font-size: 1.5rem; }
  body .material-symbols-outlined.animated.animated-flash,
  body .material-symbols-rounded.animated.animated-flash {
    animation-duration: 8s;
    animation-name: flash;
    animation-iteration-count: infinite; }

.introjs-tooltipReferenceLayer .introjs-tooltip {
  border-radius: 0.5rem; }
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header {
    padding: 0.5em 1rem 0.2em 1rem;
    font-size: 1em;
    border-bottom: 1px solid #E0E0E0;
    border-bottom-width: 3px;
    background-color: #F5F5F5;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem; }
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header h1 {
      font-size: 1em; }
      .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header h1 .stepid {
        display: none; }
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip-header a.introjs-skipbutton {
      padding-right: 0;
      padding-top: 3px; }
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext {
    padding: 1rem; }
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext .fa {
      font-family: "FontAwesome"; }
  .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons {
    padding-left: 1rem;
    padding-right: 1rem; }
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button {
      display: inline-block;
      font-weight: 400;
      text-align: center;
      vertical-align: middle;
      user-select: none;
      border-width: 1px;
      border-style: solid;
      padding: 0.375rem 0.75rem;
      font-size: 1em;
      line-height: 1.5;
      border-radius: 0.5rem;
      font-size: 0.75rem;
      padding: .1rem .4rem;
      color: #424242;
      background-color: #FFFFFF; }
      .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button:hover {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
      .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-disabled {
        display: none; }
      .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-nextbutton {
        font-size: 0;
        color: transparent;
        border-color: #ffffff; }
        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-nextbutton:before {
          content: "\f178";
          font-family: "FontAwesome";
          font-size: 1.5rem;
          line-height: 0.7em;
          color: #000000; }
        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-nextbutton:hover {
          border-color: #9E9E9E; }
      .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-prevbutton {
        font-size: 0%;
        color: transparent;
        border-color: #ffffff; }
        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-prevbutton:before {
          content: "\f177";
          font-family: "FontAwesome";
          font-size: 1.5rem;
          line-height: 0.7em;
          color: #000000; }
        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons a.introjs-button.introjs-prevbutton:hover {
          border-color: #9E9E9E; }
  .introjs-tooltipReferenceLayer .introjs-tooltip.introjs-floating {
    left: calc(50% - 250px) !important;
    top: 20% !important;
    width: 500px;
    max-width: 500px;
    margin: auto !important;
    position: fixed; }
  .introjs-tooltipReferenceLayer .introjs-tooltip.force-bottom-right {
    left: auto !important;
    right: 0px !important; }
    .introjs-tooltipReferenceLayer .introjs-tooltip.force-bottom-right .introjs-arrow {
      top: -10px !important;
      right: 10px !important;
      left: auto !important; }

.introjs-showElement {
  visibility: visible !important; }

/* 
Element: Labels

Wrapper for Bootstrap labels

Markup:
<span class="label {{modifier_class}}">Lorem Ipsum</span>

.label-primary		- &nbsp;
.label-secondary	- &nbsp;
.label-info			- &nbsp;
.label-warning		- &nbsp;
.label-danger		- &nbsp;
.label-success		- &nbsp;
.label-inverse		- &nbsp;
.label-light		- &nbsp;
.label-dark			- &nbsp;

Styleguide ElementLabels
*/
.label {
  border-color: solid 1px #BDBDBD; }
  .label.label-primary {
    color: #995b00;
    background-color: #FFF3E0; }
  .label.label-success {
    color: #255827;
    background-color: #E8F5E9;
    border: solid 1px #A5D6A7; }
  .label.label-warning {
    color: #955300;
    background-color: #FFF3E0;
    border: solid 1px #FFCC80; }
  .label.label-danger {
    color: #9f1815;
    background-color: #FFEBEE;
    border: solid 1px #EF9A9A; }
  .label.label-info {
    color: #10538d;
    background-color: #E3F2FD;
    border: solid 1px #90CAF9; }
  .label.label-inverse {
    color: #424242;
    background-color: #EEEEEE;
    border: solid 1px #BDBDBD; }
  .label.app {
    padding: 0; }
    .label.app:empty {
      display: inline; }
    .label.app:before {
      padding: 0.2em 0.8em 0.3em;
      border-radius: 1em;
      font-weight: bold;
      position: relative;
      font-size: 1em;
      line-height: 1em; }
    .label.app:after {
      position: relative; }
    .label.app.label-note:before {
      color: #9f1815;
      background-color: #FFEBEE;
      border: 1px solid #EF9A9A;
      content: "Note";
      top: -2px; }

@keyframes marquee-scroll {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }

/* 
Element: Links

Links

Markup:
<p>lorem ipsum <a class="{{modifier_class}}" href="">a link here</a> dolor sit amet, consectetur adipiscing elit.</p>

:active			- &nbsp;
:visited		- &nbsp;
:hover			- &nbsp;

Styleguide ElementLinks
*/
a.link-css:before {
  display: inline-block;
  margin-right: 5px;
  font-family: 'FontAwesome';
  text-align: center;
  font-weight: bold; }

a.link-css.link-numericnoyes:not([data-value='0']):before {
  content: "\f205"; }

a.link-css.link-numericnoyes[data-value='0']:before {
  content: "\f204";
  color: #9E9E9E; }

a.disabled {
  pointer-events: none !important;
  cursor: pointer;
  color: #9E9E9E !important; }
  a.disabled:before {
    color: #9E9E9E !important; }

a.copypaste {
  margin-left: 10px; }

a.link-animated-shake {
  display: inline-block;
  animation-fill-mode: both;
  animation-duration: 8s;
  animation-name: shakeX;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; }
  a.link-animated-shake:hover {
    animation-name: none; }

a.always-active {
  pointer-events: initial !important;
  color: #214eaa !important; }

a[href=""] {
  text-decoration: none;
  color: initial;
  pointer-events: none; }

a:not([href]):not(.disabled):not([disabled])[data-toggle] {
  color: #214eaa !important; }

.spinner {
  animation: spinner-rotator 1.4s linear infinite; }
  .spinner .path {
    stroke-dasharray: 187;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: spinner-dash 1.4s ease-in-out infinite, spinner-colors 5.6s ease-in-out infinite; }

@keyframes spinner-rotator {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(270deg); } }

@keyframes spinner-colors {
  0% {
    stroke: #4285F4; }
  25% {
    stroke: #DE3E35; }
  50% {
    stroke: #F7C223; }
  75% {
    stroke: #1B9A59; }
  100% {
    stroke: #4285F4; } }

@keyframes spinner-dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg); } }

.kanban {
  overflow-x: scroll; }
  .kanban .kanban-body .panel {
    width: 300px;
    float: left;
    margin-left: 3px;
    margin-right: 15px;
    border-top: 1px solid #E0E0E0; }
    .kanban .kanban-body .panel .list-group .list-group-item .row {
      margin-bottom: 0; }
      .kanban .kanban-body .panel .list-group .list-group-item .row .card-title {
        margin-bottom: 0; }
      .kanban .kanban-body .panel .list-group .list-group-item .row .card-body {
        padding: 0 15px 0 0; }
        .kanban .kanban-body .panel .list-group .list-group-item .row .card-body .panel-actions {
          margin-left: 5px;
          margin-bottom: 0; }
        .kanban .kanban-body .panel .list-group .list-group-item .row .card-body p:last-child {
          margin-bottom: 0; }
    .kanban .kanban-body .panel .list-group .list-group-item:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      z-index: 10; }

.media-list {
  padding-left: 0;
  list-style: none; }
  .media-list .media-left {
    margin-right: 10px; }

.media {
  position: relative; }
  .media .avatar-wrapper {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-right: 1rem; }
    .media .avatar-wrapper .avatar {
      overflow: hidden;
      display: block; }
      .media .avatar-wrapper .avatar.avatar-xs {
        width: 24px;
        height: 24px; }
        .media .avatar-wrapper .avatar.avatar-xs img {
          width: 24px; }
      .media .avatar-wrapper .avatar.avatar-sm {
        width: 48px;
        height: 48px; }
        .media .avatar-wrapper .avatar.avatar-sm img {
          width: 48px; }
      .media .avatar-wrapper .avatar.avatar-md {
        width: 64px;
        height: 64px; }
        .media .avatar-wrapper .avatar.avatar-md img {
          width: 64px; }
      .media .avatar-wrapper .avatar.avatar-lg {
        width: 96px;
        height: 96px; }
        .media .avatar-wrapper .avatar.avatar-lg img {
          width: 96px; }
      .media .avatar-wrapper .avatar.avatar-xl {
        width: 128px;
        height: 128px; }
        .media .avatar-wrapper .avatar.avatar-xl img {
          width: 128px; }
    .media .avatar-wrapper:has(.avatar-xs) {
      padding: 0 !important; }
    .media .avatar-wrapper.avatar-circle {
      border-radius: 50%;
      padding: 0.25rem; }
      .media .avatar-wrapper.avatar-circle .avatar {
        border-radius: 50%; }

/* 
Element: Modals

Wrapper for Bootstrap Modals and React [`<Modals>`](https://uat.pipelineapp.io/app/pattern-library/elements#modal)

### Standard UX Behavior

- Modal closes when clicking on the X. Does not close when clicking outside or pressing <kbd>ESC</kbd>
- Modal closes when clicking any button in the footer.
- Modal does not use the `Cancel` button. Modal uses the X to close.
- Modals should not launch another modal, unless it is from FileStack or TinyMCE

Markup: modal.hbs

.modal-primary		- &nbsp;
.modal-secondary	- &nbsp;
.modal-info			- &nbsp;
.modal-warning		- &nbsp;
.modal-danger		- &nbsp;
.modal-success		- &nbsp;
.modal-inverse		- &nbsp;
.modal-light		- &nbsp;
.modal-dark			- &nbsp;

Styleguide ElementModals
*/
/* 
Sizes

Markup: modal-sizes.hbs

.modal-sm			- &nbsp;
.modal-md			- &nbsp;
.modal-lg			- &nbsp;
.modal-xl			- &nbsp;

Styleguide ElementModals.Sizes
*/
.modal-container .modal-backdrop.in {
  visibility: visible !important; }

.modal-container .modal .modal-dialog {
  border-radius: 1rem; }
  .modal-container .modal .modal-dialog .modal-content {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
    text-align: left;
    font-weight: normal;
    font-size: 0.9rem !important;
    animation-fill-mode: both;
    animation-duration: 350ms;
    animation-name: zoomIn; }
    .modal-container .modal .modal-dialog .modal-content a {
      display: inline !important; }
    .modal-container .modal .modal-dialog .modal-content .modal-header {
      background-color: #F5F5F5;
      border-radius: 1rem 1rem 0 0;
      border-bottom-width: 3px; }
      .modal-container .modal .modal-dialog .modal-content .modal-header h3,
      .modal-container .modal .modal-dialog .modal-content .modal-header h4,
      .modal-container .modal .modal-dialog .modal-content .modal-header h5 {
        margin-top: 0;
        font-weight: normal;
        font-family: var(--heading-font-family); }
      .modal-container .modal .modal-dialog .modal-content .modal-header h3,
      .modal-container .modal .modal-dialog .modal-content .modal-header .h3 {
        font-size: var(--heading3-font-size); }
      .modal-container .modal .modal-dialog .modal-content .modal-header h4,
      .modal-container .modal .modal-dialog .modal-content .modal-header .h4 {
        font-size: var(--heading4-font-size); }
      .modal-container .modal .modal-dialog .modal-content .modal-header h5,
      .modal-container .modal .modal-dialog .modal-content .modal-header .h5 {
        font-size: var(--heading5-font-size); }
      .modal-container .modal .modal-dialog .modal-content .modal-header .close {
        float: none;
        position: absolute;
        opacity: 1;
        right: 15px;
        top: 15px;
        margin: 0;
        padding: 0; }
        .modal-container .modal .modal-dialog .modal-content .modal-header .close i {
          font-weight: normal;
          text-shadow: none;
          color: #011A3A; }
    .modal-container .modal .modal-dialog .modal-content .modal-body .alert.animated {
      animation-delay: 400ms; }
    .modal-container .modal .modal-dialog .modal-content .modal-body .control-group label {
      font-weight: bold; }
    .modal-container .modal .modal-dialog .modal-content .modal-body .control-group table.formlistgrid td label.fdradiolabel {
      font-weight: normal; }
    .modal-container .modal .modal-dialog .modal-content .modal-body .control-group .fieldFormat {
      font-style: italic;
      font-size: 0.8em;
      color: #9E9E9E; }
    .modal-container .modal .modal-dialog .modal-content .modal-footer .btn {
      color: #FFFFFF;
      pointer-events: initial; }
      .modal-container .modal .modal-dialog .modal-content .modal-footer .btn.btn-secondary {
        color: #011A3A; }
      .modal-container .modal .modal-dialog .modal-content .modal-footer .btn.btn-primary {
        background-color: #FDB913; }
    .modal-container .modal .modal-dialog .modal-content .modal-footer .btn + .btn {
      margin-left: 10px; }
    .modal-container .modal .modal-dialog .modal-content.modal-primary .modal-header {
      background-color: #C5CAE9;
      color: #a97801;
      border-bottom-color: #9FA8DA; }
      .modal-container .modal .modal-dialog .modal-content.modal-primary .modal-header .close i {
        color: #FFFFFF; }
    .modal-container .modal .modal-dialog .modal-content.modal-primary .btn-primary {
      color: #FFFFFF;
      background-color: #FDB913;
      border-color: #3949AB; }
      .modal-container .modal .modal-dialog .modal-content.modal-primary .btn-primary:hover {
        background-color: #3949AB;
        border-color: #303F9F; }
    .modal-container .modal .modal-dialog .modal-content.modal-danger .modal-header {
      background-color: #EF9A9A;
      color: #9f1815;
      border-bottom-color: #E57373; }
      .modal-container .modal .modal-dialog .modal-content.modal-danger .modal-header .modal-title:before {
        content: "\f071";
        font-family: 'FontAwesome';
        margin-right: .3em;
        color: #9f1815; }
      .modal-container .modal .modal-dialog .modal-content.modal-danger .modal-header .close i {
        color: #FFFFFF; }
    .modal-container .modal .modal-dialog .modal-content.modal-danger .btn.btn-primary {
      color: #FFFFFF !important;
      background-color: #E53935;
      border-color: #D32F2F; }
      .modal-container .modal .modal-dialog .modal-content.modal-danger .btn.btn-primary:hover {
        background-color: #E53935;
        border-color: #D32F2F; }
    .modal-container .modal .modal-dialog .modal-content.modal-info .modal-header {
      background-color: #90CAF9;
      color: #10538d;
      border-bottom-color: #64B5F6; }
      .modal-container .modal .modal-dialog .modal-content.modal-info .modal-header .close i {
        color: #FFFFFF; }
    .modal-container .modal .modal-dialog .modal-content.modal-info .btn .btn-primary {
      color: #FFFFFF;
      background-color: #1E88E5;
      border-color: #1976D2; }
      .modal-container .modal .modal-dialog .modal-content.modal-info .btn .btn-primary:hover {
        background-color: #1E88E5;
        border-color: #1976D2; }
    .modal-container .modal .modal-dialog .modal-content.modal-success .modal-header {
      background-color: #A5D6A7;
      color: #255827;
      border-bottom-color: #81C784; }
      .modal-container .modal .modal-dialog .modal-content.modal-success .modal-header .close i {
        color: #FFFFFF; }
    .modal-container .modal .modal-dialog .modal-content.modal-success .btn .btn-primary {
      color: #FFFFFF;
      background-color: #43A047;
      border-color: #388E3C; }
      .modal-container .modal .modal-dialog .modal-content.modal-success .btn .btn-primary:hover {
        background-color: #43A047;
        border-color: #388E3C; }
    .modal-container .modal .modal-dialog .modal-content.modal-warning .modal-header {
      background-color: #FFCC80;
      color: #955300;
      border-bottom-color: #FFB74D; }
      .modal-container .modal .modal-dialog .modal-content.modal-warning .modal-header .modal-title:before {
        content: "\f071";
        font-family: 'FontAwesome';
        margin-right: .3em;
        color: #955300; }
      .modal-container .modal .modal-dialog .modal-content.modal-warning .modal-header .close i {
        color: #FFFFFF; }
    .modal-container .modal .modal-dialog .modal-content.modal-warning .btn .btn-primary {
      color: #FFFFFF;
      background-color: #FB8C00;
      border-color: #F57C00; }
      .modal-container .modal .modal-dialog .modal-content.modal-warning .btn .btn-primary:hover {
        background-color: #FB8C00;
        border-color: #F57C00; }
  .modal-container .modal .modal-dialog.modal-dialog-scrollable {
    overflow-x: hidden; }

.modal-container .modal.fade.in {
  display: block; }

.modal-dialog {
  border-radius: 1rem; }
  .modal-dialog .modal-content {
    border-radius: 1rem; }
    .modal-dialog .modal-content .modal-header {
      background-color: #F5F5F5;
      border-radius: 1rem 1rem 0 0;
      border-bottom-width: 3px; }
      .modal-dialog .modal-content .modal-header h3 i.fa-exclamation-triangle {
        color: #D32F2F; }
      .modal-dialog .modal-content .modal-header button.close {
        font-size: 28px;
        opacity: inherit; }
      .modal-dialog .modal-content .modal-header.success {
        background-color: #43A047;
        color: #FFFFFF;
        border-radius: 6px 6px 0 0; }
        .modal-dialog .modal-content .modal-header.success .close {
          color: #FFFFFF; }
        .modal-dialog .modal-content .modal-header.success h3:before {
          content: '\f00c';
          font-family: 'FontAwesome';
          margin-right: .3em; }
      .modal-dialog .modal-content .modal-header.danger h3:before {
        content: '\f071';
        font-family: 'FontAwesome';
        margin-right: .3em;
        color: #D32F2F; }
  .modal-dialog .modal-body-scroll {
    max-height: 550px;
    overflow-y: auto; }

.dropdown .dropdown-menu li .modal .modal-dialog a {
  display: inline; }

body.dark .modal-container .modal .modal-dialog .modal-content {
  background-color: #212121;
  color: #E0E0E0; }
  body.dark .modal-container .modal .modal-dialog .modal-content .modal-header {
    background-color: #424242;
    border-color: #616161; }
  body.dark .modal-container .modal .modal-dialog .modal-content .modal-footer {
    border-color: #616161; }

.backoffice .modal-container .modal-backdrop.show {
  opacity: 0.8; }

.backoffice .modal-container .modal-dialog.modal-dialog-scrollable .modal-body {
  max-height: calc(100vh - 15rem); }

#bs-backdrop {
  z-index: 999;
  opacity: 0.7; }

@media (min-width: 1200px) {
  .modal-xl {
    width: 1200px; } }

@media (max-width: 1199.98px) {
  .modal-container .modal-xl {
    width: 100%; } }

.motion.motion-animated {
  opacity: 0;
  visibility: hidden; }
  .motion.motion-animated.animate__delay-1 {
    animation-delay: calc(var(--animate-delay)*.25); }
  .motion.motion-animated.animate__delay-2 {
    animation-delay: calc(var(--animate-delay)*.5); }
  .motion.motion-animated.animate__delay-3 {
    animation-delay: calc(var(--animate-delay)*.75); }
  .motion.motion-animated.animate__delay-4 {
    animation-delay: calc(var(--animate-delay)*1); }
  .motion.motion-animated.animate__delay-5 {
    animation-delay: calc(var(--animate-delay)*1.25); }
  .motion.motion-animated.animate__animated {
    visibility: visible !important; }
    .motion.motion-animated.animate__animated.animate__fadeInUp {
      animation-name: fadeInUpShort; }
    .motion.motion-animated.animate__animated .motion-animated.animate__animated {
      animation-delay: calc(var(--animate-delay)*.25); }
  .motion.motion-animated.animate__slideInUp, .motion.motion-animated.animate__slideInDown, .motion.motion-animated.animate__slideInLeft, .motion.motion-animated.animate__slideInRight {
    opacity: 1;
    visibility: visible; }
  .motion.motion-animated[data-width], .motion.motion-animated[data-left], .motion.motion-animated[data-right], .motion.motion-animated[data-top], .motion.motion-animated[data-bottom] {
    opacity: 1;
    visibility: visible; }

form.motion.motion-animated {
  opacity: 1;
  visibility: visible; }

body#tinymce .motion.motion-animated {
  opacity: 1;
  visibility: visible;
  animation-name: none !important; }

@keyframes fadeInUpShort {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0); }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0); } }

.navbar-nav .nav-item.dropdown .dropdown-toggle:after {
  font-family: "FontAwesome";
  content: "\f107";
  margin-left: 0.25rem; }

.navbar-nav .nav-item.dropdown .dropdown-toggle:after {
  vertical-align: 0;
  border-width: 0;
  margin-left: 0.45rem; }

.navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]:after {
  font-family: "FontAwesome";
  content: "\f106";
  margin-left: 0.25rem; }

.navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded="true"]:after {
  vertical-align: 0;
  border-width: 0;
  margin-left: 0.45rem; }

.navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:hover .dropdown-menu.mega-menu, .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:focus .dropdown-menu.mega-menu {
  display: block;
  width: 50vw;
  max-width: 600px;
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  min-height: 480px; }
  .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:hover .dropdown-menu.mega-menu.autocolumn-3, .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:focus .dropdown-menu.mega-menu.autocolumn-3 {
    display: flex;
    flex-direction: column;
    /* Stacks items vertically first */
    flex-wrap: wrap;
    /* Allows them to wrap to the next column */
    height: 350px;
    list-style: none;
    column-gap: 0 !important;
    column-count: auto !important; }
    .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:hover .dropdown-menu.mega-menu.autocolumn-3 li, .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:focus .dropdown-menu.mega-menu.autocolumn-3 li {
      width: 33.33%;
      /* Forces exactly three columns */ }
  .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:hover .dropdown-menu.mega-menu > .nav-item .dropdown-item, .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item.dropdown-submenu:focus .dropdown-menu.mega-menu > .nav-item .dropdown-item {
    white-space: normal;
    line-height: 1.15;
    padding: .4rem 1.5rem .4rem 1.5rem; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-toggle:after {
  font-family: "FontAwesome";
  content: "\f107";
  margin-left: 0.25rem; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-toggle:after {
  vertical-align: 0;
  border-width: 0;
  margin-left: 0.45rem; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-toggle[aria-expanded="true"]:after {
  font-family: "FontAwesome";
  content: "\f106";
  margin-left: 0.25rem; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-toggle[aria-expanded="true"]:after {
  vertical-align: 0;
  border-width: 0;
  margin-left: 0.45rem; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu > .dropdown-item {
  padding: .25rem 2.75rem .25rem 1.5rem; }
  .navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu > .dropdown-item.dropdown-toggle:after {
    font-family: "FontAwesome";
    content: "\f107";
    margin-left: 0.25rem; }
  .navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu > .dropdown-item.dropdown-toggle:after {
    content: "\f105" !important;
    right: 1.5rem;
    position: absolute;
    color: #9E9E9E; }

.navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu:hover > .dropdown-item.dropdown-toggle, .navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu:focus > .dropdown-item.dropdown-toggle {
  background-color: #e9ecef; }
  .navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu:hover > .dropdown-item.dropdown-toggle:after, .navbar-nav .nav-item.dropdown.dropdown-parentmenu > .dropdown-menu > .nav-item.dropdown-submenu:focus > .dropdown-item.dropdown-toggle:after {
    color: #011A3A; }

.navbar-fixed-left {
  position: fixed;
  border-radius: 0;
  height: 100%;
  top: 0;
  margin-left: -16px;
  display: table;
  padding: 0; }
  .navbar-fixed-left .navbar-brand {
    float: none;
    height: unset;
    display: block;
    text-align: center; }
    .navbar-fixed-left .navbar-brand img {
      display: inline-block; }
  .navbar-fixed-left .navbar-nav {
    float: none;
    margin-top: 0; }
    .navbar-fixed-left .navbar-nav .nav-item {
      float: none;
      /* Cancel default li float: left */ }
      .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu {
        margin-top: -50px;
        margin-left: 140px; }
        .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-submenu a::after {
          transform: rotate(-90deg);
          position: absolute;
          right: 3px; }
        .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-submenu:hover .dropdown-menu,
        .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-submenu:focus .dropdown-menu {
          display: flex;
          flex-direction: column;
          position: absolute !important;
          margin-top: -30px;
          left: 100%; }
          .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-submenu:hover .dropdown-menu.mega-menu,
          .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-submenu:focus .dropdown-menu.mega-menu {
            display: block;
            width: 50vw;
            max-width: 600px;
            top: 0; }
        @media (max-width: 992px) {
          .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-menu {
            width: 50%; }
          .navbar-fixed-left .navbar-nav .nav-item .dropdown-menu .dropdown-menu .dropdown-submenu {
            width: auto; } }
      .navbar-fixed-left .navbar-nav .nav-item:hover .dropdown-menu, .navbar-fixed-left .navbar-nav .nav-item.active .dropdown-menu {
        display: block; }

.col-xxl, .col-xxl-1, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

@media (min-width: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xxl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%; }
  .col-xxl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%; }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xxl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%; }
  .col-xxl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%; }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xxl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%; }
  .col-xxl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%; }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xxl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%; }
  .col-xxl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%; }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%; } }

/* 
Element: Panels

Wrapper for Bootstrap panels

Markup:
<div class="panel {{modifier_class}}" style="width:600px;">
	<div class="panel-heading">Panel Header</div>
	<div class="panel-body">
		<h4>Panel Title</h4>
		<p>
			Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
			Curabitur placerat felis tellus, ut consequat urna euismod sit amet.
		</p>
	</div>
</div>

.panel-primary		- &nbsp;
.panel-secondary	- &nbsp;
.panel-info			- &nbsp;
.panel-warning		- &nbsp;
.panel-danger		- &nbsp;
.panel-success		- &nbsp;
.panel-inverse		- &nbsp;
.panel-light		- &nbsp;
.panel-dark			- &nbsp;

Styleguide ElementPanels
*/
/* 
Progress: Animated

Wrapper for Bootstrap panels

Markup:
<div class="panel panel-progress panel-animated" style="width:600px;">
	<div class="panel-heading">Panel Header</div>
	<div class="panel-body">
		<h4>Panel Title</h4>
		<p>
			Lorem ipsum dolor sit amet, consectetur adipiscing elit. 
			Curabitur placerat felis tellus, ut consequat urna euismod sit amet.
		</p>
	</div>
</div>

Styleguide ElementPanels.ProgressAnimated
*/
.panel {
  border: none;
  border-radius: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #ffffff;
  overflow: hidden;
  word-wrap: break-word; }
  .panel .panel-heading {
    padding: 0.5rem 1.25rem;
    border-radius: 0px;
    border-bottom-width: 3px; }
    .panel .panel-heading .badge {
      position: relative;
      top: -0.1em; }
    .panel .panel-heading .label {
      position: relative;
      top: -0.1em; }
    .panel .panel-heading.border-bottom-solid {
      border-bottom-style: solid; }
  .panel .panel-body {
    padding: 1.25rem;
    padding-bottom: 2em;
    background-color: #ffffff; }
    .panel .panel-body h3:first-child,
    .panel .panel-body h4:first-child,
    .panel .panel-body h5:first-child {
      margin-top: 0; }
    .panel .panel-body .breadcrumb {
      margin-top: 0; }
    .panel .panel-body .row {
      margin-bottom: 1.5rem; }
    .panel .panel-body + .panel-body {
      border-top: 1px solid #E0E0E0; }
    .panel .panel-body form .control-group .row {
      margin-bottom: 0; }
    .panel .panel-body form .panel .panel-body .row {
      margin-bottom: 0; }
    .panel .panel-body .panel-actions > a.history {
      color: #EAF1FB; }
  .panel .panel-footer {
    border-radius: 0px;
    padding: 0.5rem 1.25rem; }
    .panel .panel-footer .badge {
      position: relative;
      top: -0.1em; }
    .panel .panel-footer .label {
      position: relative;
      top: -0.1em; }
  .panel.panel-default {
    border-color: #E0E0E0; }
    .panel.panel-default .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #F5F5F5;
      border-color: #E0E0E0;
      border-bottom-style: solid; }
    .panel.panel-default .panel-footer {
      background-color: #F5F5F5;
      border-color: #E0E0E0; }
  .panel.panel-primary {
    border-color: #9FA8DA; }
    .panel.panel-primary .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #C5CAE9;
      border-color: #9FA8DA; }
    .panel.panel-primary .panel-footer {
      background-color: #C5CAE9;
      border-color: #9FA8DA; }
  .panel.panel-success {
    border-color: #81C784; }
    .panel.panel-success .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #A5D6A7;
      border-color: #81C784; }
    .panel.panel-success .panel-footer {
      background-color: #A5D6A7;
      border-color: #81C784; }
  .panel.panel-warning {
    border-color: #FFB74D; }
    .panel.panel-warning .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #FFCC80;
      border-color: #FFB74D; }
    .panel.panel-warning .panel-footer {
      background-color: #FFCC80;
      border-color: #FFB74D; }
  .panel.panel-danger {
    border-color: #E57373; }
    .panel.panel-danger .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #EF9A9A;
      border-color: #E57373; }
    .panel.panel-danger .panel-footer {
      background-color: #EF9A9A;
      border-color: #E57373; }
  .panel.panel-info {
    border-color: #64B5F6; }
    .panel.panel-info .panel-heading {
      color: #011A3A;
      font-weight: bold;
      background-color: #90CAF9;
      border-color: #64B5F6; }
    .panel.panel-info .panel-footer {
      background-color: #90CAF9;
      border-color: #64B5F6; }
  .panel.panel-inverse {
    border-color: #212121; }
    .panel.panel-inverse .panel-heading {
      color: #FFFFFF;
      font-weight: bold;
      background-color: #424242;
      border-color: #212121; }
    .panel.panel-inverse .panel-footer {
      color: #FFFFFF;
      background-color: #424242;
      border-color: #212121; }
  .panel.panel-progress .panel-heading {
    color: #FFFFFF;
    font-weight: bold;
    border-color: #212121;
    background-color: #757575;
    border-color: #212121;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 120px 120px; }
  .panel.panel-progress.panel-animated .panel-heading {
    animation-name: progress-bar-stripes-forward-xl;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }

body.dark .panel {
  background-color: #212121; }
  body.dark .panel .panel-heading {
    background-color: #424242;
    border-color: #616161;
    color: #E0E0E0; }
    body.dark .panel .panel-heading input[type="text"] {
      background-color: #616161; }
  body.dark .panel .panel-body {
    background-color: #212121; }
    body.dark .panel .panel-body .panel.panel-card .panel-body {
      border-top-left-radius: 1rem;
      border-bottom-right-radius: 1rem;
      border-left: 7px solid #E0E0E0;
      border-left-color: #E0E0E0;
      background-color: #424242; }

.conditional-content {
  display: none; }
  .conditional-content[data-isshow="true"], .conditional-content[data-isshow="True"], .conditional-content[data-isshow="1"] {
    display: block; }
    .conditional-content[data-isshow="true"].row, .conditional-content[data-isshow="True"].row, .conditional-content[data-isshow="1"].row {
      display: flex; }

.conditional-wrap a.read-smore__link span:before {
  content: "More"; }

.conditional-wrap a.read-smore__link:after {
  font-family: "FontAwesome";
  content: "\f107";
  margin-left: 0.25rem; }

.conditional-wrap[data-isshow="true"] .conditional-content, .conditional-wrap[data-isshow="True"] .conditional-content, .conditional-wrap[data-isshow="1"] .conditional-content {
  display: block; }

.conditional-wrap[data-isshow="true"] li.conditional-content, .conditional-wrap[data-isshow="True"] li.conditional-content, .conditional-wrap[data-isshow="1"] li.conditional-content {
  display: list-item; }

.conditional-wrap[data-isshow="true"] a.read-smore__link span:before, .conditional-wrap[data-isshow="True"] a.read-smore__link span:before, .conditional-wrap[data-isshow="1"] a.read-smore__link span:before {
  content: "Less"; }

.conditional-wrap[data-isshow="true"] a.read-smore__link:after, .conditional-wrap[data-isshow="True"] a.read-smore__link:after, .conditional-wrap[data-isshow="1"] a.read-smore__link:after {
  font-family: "FontAwesome";
  content: "\f106";
  margin-left: 0.25rem; }

span.conditional-content {
  display: none; }
  span.conditional-content[data-isshow="true"], span.conditional-content[data-isshow="True"], span.conditional-content[data-isshow="1"] {
    display: inline; }

@media (max-width: 1199.98px) {
  .panel .panel-heading .panel-userinfo {
    float: none !important; }
  .panel .panel-heading .panel-actions {
    float: none !important;
    margin-left: 0;
    margin-top: 1em;
    right: auto !important; }
  .panel .panel-body .panel-actions {
    float: none !important;
    margin-left: 0;
    right: auto !important; } }

/* 
Element: Pins

Wrapper for Pins

Markup:
<span class="pin {{modifier_class}}">pin</span>

.pin-primary		- &nbsp;
.pin-secondary	    - &nbsp;
.pin-info			- &nbsp;
.pin-warning		- &nbsp;
.pin-danger		    - &nbsp;
.pin-success		- &nbsp;
.pin-inverse		- &nbsp;
.pin-light		    - &nbsp;
.pin-dark			- &nbsp;

Styleguide ElementPins
*/
.pin {
  margin-left: 0.5em;
  padding: .4em .7em .4em 1.2em;
  text-transform: uppercase;
  position: absolute;
  font-size: 13px;
  font-weight: 700;
  top: -1px;
  border-radius: 10rem 0 0 10rem; }
  .pin:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    bottom: 0px;
    left: 100%;
    border: 14px solid transparent;
    border-left-width: 25px;
    border-left-style: solid; }
  .pin.pin-animated {
    animation-name: flash;
    animation-duration: 5s;
    animation-iteration-count: infinite; }
  .pin:after {
    border-left: 25px solid #fff; }
  .pin.pin-primary {
    color: #FFFFFF;
    background-color: #FDB913; }
    .pin.pin-primary:after {
      border-left-color: #FDB913; }
  .pin.pin-secondary {
    color: #FFFFFF;
    background-color: #757575; }
    .pin.pin-secondary:after {
      border-left-color: #757575; }
  .pin.pin-success {
    color: #FFFFFF;
    background-color: #43A047; }
    .pin.pin-success:after {
      border-left-color: #43A047; }
  .pin.pin-warning {
    color: #FFFFFF;
    background-color: #FB8C00; }
    .pin.pin-warning:after {
      border-left-color: #FB8C00; }
  .pin.pin-danger {
    color: #FFFFFF;
    background-color: #F44336; }
    .pin.pin-danger:after {
      border-left-color: #F44336; }
  .pin.pin-info {
    color: #FFFFFF;
    background-color: #1E88E5; }
    .pin.pin-info:after {
      border-left-color: #1E88E5; }
  .pin.pin-inverse {
    color: #FFFFFF;
    background-color: #212121; }
    .pin.pin-inverse:after {
      border-left-color: #212121; }
  .pin.pin-light {
    color: #FFFFFF;
    background-color: #EAF1FB; }
    .pin.pin-light:after {
      border-left-color: #EAF1FB; }
  .pin.pin-dark {
    color: #FFFFFF;
    background-color: #616161; }
    .pin.pin-dark:after {
      border-left-color: #616161; }
  .pin.pin-orange {
    color: #FFFFFF;
    background-color: #FF9800; }
    .pin.pin-orange:after {
      border-left-color: #FF9800; }
  .pin.pin-step-default {
    color: #9E9E9E;
    background-color: #FAFAFA;
    border: 1px solid #9E9E9E; }
  .pin.pin-muted {
    color: #FFFFFF;
    background-color: #9E9E9E; }
  .pin.pin-border {
    font-weight: normal;
    border: 1px solid #E0E0E0;
    background-color: #FFF;
    color: #214eaa; }

p > .pin, a > .pin {
  margin-left: 0; }

kbd .pin {
  font-size: 90%;
  margin-left: 0; }

/* 
Element: Loading

Note, we are not able to use the [Google Material Design circular progress indicator](https://codepen.io/jczimm/pen/vEBpoL) 
because the animation requires IE Edge. We will switch when IE Edge gains enough browser share.

Markup:
<i class="fa fa-spinner fa-pulse loading-status"></i>

Styleguide ElementLoading
*/
/* 
Element: Progress

Styleguide ElementProgress
*/
@keyframes progress-bar-stripes-forward-xl {
  from {
    background-position: 0px 0; }
  to {
    background-position: 120px 0; } }

@keyframes progress-bar-stripes-xl {
  from {
    background-position: 120px 0; }
  to {
    background-position: 0px 0; } }

@keyframes progress-bar-stripes-forward-lg {
  from {
    background-position: 0px 0; }
  to {
    background-position: 80px 0; } }

@keyframes progress-bar-stripes-lg {
  from {
    background-position: 80px 0; }
  to {
    background-position: 0px 0; } }

.progress .animated.animated-lg {
  animation-name: progress-bar-stripes-lg; }

.progress .animated.animated-xl {
  animation-name: progress-bar-stripes-xl; }

.progress .animated.animated-forward.animated-lg {
  animation-name: progress-bar-stripes-forward-lg; }

.progress .animated.animated-forward.animated-xl {
  animation-name: progress-bar-stripes-forward-xl; }

.dark .progress {
  background-color: #424242; }

/* 
Element: Readonly

Styleguide ElementReadonly
*/
/* 
Element: ribbons

Wrapper for Bootstrap ribbons

Markup:
<span class="ribbon {{modifier_class}}">ribbon</span>

.ribbon-primary		- &nbsp;
.ribbon-secondary	- &nbsp;
.ribbon-info			- &nbsp;
.ribbon-warning		- &nbsp;
.ribbon-danger		- &nbsp;
.ribbon-success		- &nbsp;
.ribbon-inverse		- &nbsp;
.ribbon-light		- &nbsp;
.ribbon-dark			- &nbsp;

Styleguide Elementribbons
*/
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute; }
  .ribbon:before, .ribbon:after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border: 5px solid #1E88E5; }
  .ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 11px 0;
    background-color: #1E88E5;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center; }
  .ribbon.ribbon-primary {
    color: #FFFFFF;
    background-color: #FDB913; }
  .ribbon.ribbon-secondary {
    color: #FFFFFF;
    background-color: #757575; }
  .ribbon.ribbon-success:before, .ribbon.ribbon-success:after {
    border: 5px solid #43A047; }
  .ribbon.ribbon-success span {
    background-color: #43A047; }
  .ribbon.ribbon-warning:before, .ribbon.ribbon-warning:after {
    border: 5px solid #FB8C00; }
  .ribbon.ribbon-warning span {
    background-color: #FB8C00; }
  .ribbon.ribbon-danger:before, .ribbon.ribbon-danger:after {
    border: 5px solid #E53935; }
  .ribbon.ribbon-danger span {
    background-color: #E53935; }
  .ribbon.ribbon-info:before, .ribbon.ribbon-info:after {
    border: 5px solid #1E88E5; }
  .ribbon.ribbon-info span {
    background-color: #1E88E5; }
  .ribbon.ribbon-inverse:before, .ribbon.ribbon-inverse:after {
    border: 5px solid #212121; }
  .ribbon.ribbon-inverse span {
    background-color: #212121; }
  .ribbon.ribbon-light:before, .ribbon.ribbon-light:after {
    border: 5px solid #EAF1FB; }
  .ribbon.ribbon-light span {
    background-color: #EAF1FB; }
  .ribbon.ribbon-dark:before, .ribbon.ribbon-dark:after {
    border: 5px solid #616161; }
  .ribbon.ribbon-dark span {
    background-color: #616161; }
  .ribbon.ribbon-orange {
    color: #FFFFFF;
    background-color: #FF9800; }
  .ribbon.ribbon-top-right {
    top: -6px;
    right: -7px; }
    .ribbon.ribbon-top-right:before, .ribbon.ribbon-top-right:after {
      border-top-color: transparent;
      border-right-color: transparent; }
    .ribbon.ribbon-top-right:before {
      top: 0;
      left: 0; }
    .ribbon.ribbon-top-right:after {
      bottom: 0;
      right: 0; }
    .ribbon.ribbon-top-right span {
      left: -25px;
      top: 35px;
      transform: rotate(45deg); }

.card.card-cpq .ribbon.ribbon-top-right {
  top: -11px; }

/* 
Component: Select2

Weight: 100

Styleguide ComponentSelect2
*/
.select2-container--bootstrap {
  top: 2px; }
  .select2-container--bootstrap .select2-selection {
    border-radius: 0.5rem !important; }
  .select2-container--bootstrap .select2-selection--single {
    height: 36px !important; }
  .select2-container--bootstrap .select2-selection--multiple {
    padding: 2px 0px 7px; }
    .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
      background-color: #F5F5F5;
      font-weight: normal;
      padding: 4px 0px 4px 6px;
      border-color: #757575;
      border-radius: 0.5rem; }
      .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
        float: right;
        padding: 0px 6px;
        margin-left: 6px;
        margin-right: 0px;
        border-left: 1px solid #E0E0E0; }
        .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
          background-color: #E0E0E0; }
    .select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered .select2-search--inline {
      width: 100%; }
      .select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered .select2-search--inline .select2-search__field {
        width: 100% !important; }
  .select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
    padding-right: 6px; }
  .select2-container--bootstrap.select2-container--open .select2-selection--multiple .select2-search--inline {
    width: 100% !important; }
    .select2-container--bootstrap.select2-container--open .select2-selection--multiple .select2-search--inline .select2-search__field:not([placeholder='']) {
      width: 100% !important; }
  .select2-container--bootstrap .select2-results > .select2-results__options {
    border-top: 1px solid #E0E0E0;
    max-height: 340px !important; }
    .select2-container--bootstrap .select2-results > .select2-results__options .select2-results__option.loading-results:before {
      content: "\f110";
      font-family: "FontAwesome";
      margin-right: 5px; }
    .select2-container--bootstrap .select2-results > .select2-results__options .select2-results__option .select2-results__group {
      color: #9E9E9E;
      font-size: 0.7rem;
      text-transform: uppercase;
      font-weight: normal; }
    .select2-container--bootstrap .select2-results > .select2-results__options .select2-results__option .select2-results__options--nested .select2-results__option {
      padding-left: 30px; }
    .select2-container--bootstrap .select2-results > .select2-results__options .select2-results__option[aria-selected=true] {
      color: #9E9E9E; }
      .select2-container--bootstrap .select2-results > .select2-results__options .select2-results__option[aria-selected=true]:hover {
        background-color: #ffffff; }

select.read-only + .select2 {
  pointer-events: none; }
  select.read-only + .select2 .select2-selection {
    background-color: #e9ecef; }

select.isloading + .select2 {
  pointer-events: none; }
  select.isloading + .select2 .select2-selection .select2-selection__rendered {
    visibility: hidden; }
  select.isloading + .select2 .select2-selection:before {
    content: "\f110";
    font-family: "FontAwesome";
    position: absolute;
    left: 12px;
    top: 6px; }

select.js-select.no-search + .select2-container--bootstrap .select2-search__field {
  visibility: hidden; }

.input-group > .select2-container--bootstrap {
  width: 1% !important; }
  .input-group > .select2-container--bootstrap .select2-selection {
    width: 100%; }

.card .card-header .select2-container--bootstrap .select2-selection__placeholder {
  font-weight: normal;
  color: #9E9E9E; }

.card.card-search .search .select2-container--bootstrap .select2-selection--multiple {
  padding: 0px; }
  .card.card-search .search .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
    padding: 0px 0px 0px 6px;
    font-size: 0.8em; }
  .card.card-search .search .select2-container--bootstrap .select2-selection--multiple .select2-search--inline {
    float: none; }

.backoffice .search .search-options .select2-container--bootstrap .select2-selection--single {
  font-size: .875rem;
  line-height: 1.5;
  font-weight: normal;
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .75rem; }

/* 
Element: Shadows

This is the shadow depth guide per [Google Material Design](https://material.io/design/environment/light-shadows.html#shadows). <span class="text-highlight">Note, these classes are for reference only and should NOT be used by itself.</span>

Markup:
<div class="shadow-depth {{modifier_class}}" style="width:20rem; padding:1rem;">
	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia, sem quis faucibus iaculis.</p>
	<ul>
		<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
		<li>Vivamus auctor lacus eu diam ultricies laoreet.</li>
		<li>Mauris eu purus sollicitudin, ornare massa vel, dictum ex.</li>
	</ul>
</div>

.depth-1		- This is the shadow depth for permanent tiles
.depth-2		- &nbsp;
.depth-3		- This is the shadow depth for tiles that appear and disappear, ex: dropdown menus and popup alerts
.depth-4		- This is the shadow depth for navs
.depth-5		- This is the shadow depth for modals

Styleguide ElementShadows
*/
.shadow-depth {
  box-shadow: none; }
  .shadow-depth.depth-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .shadow-depth.depth-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .shadow-depth.depth-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
  .shadow-depth.depth-4 {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }
  .shadow-depth.depth-5 {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); }

.slide-panel {
  overflow-y: auto;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.4); }
  .slide-panel.animated {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-timing-function: linear; }
  .slide-panel .slide-panel-heading {
    position: relative;
    padding: 1.2em 1em; }
    .slide-panel .slide-panel-heading h2 {
      font-size: 1.5em;
      margin: 0;
      color: #000000; }
      .slide-panel .slide-panel-heading h2 i.fa-bell {
        color: #FDB913;
        font-size: 0.9em; }
      .slide-panel .slide-panel-heading h2 a.close {
        float: none;
        font-size: 1em;
        position: absolute;
        opacity: 1;
        right: 10px;
        top: 2px;
        margin: 0;
        padding: 0 !important; }
        .slide-panel .slide-panel-heading h2 a.close i {
          font-size: 1em;
          font-weight: normal;
          text-shadow: none;
          margin: 0 !important; }
          .slide-panel .slide-panel-heading h2 a.close i.fa-times {
            color: #000000 !important; }
  .slide-panel .slide-panel-body {
    position: relative; }
    .slide-panel .slide-panel-body ul.list-unstyled {
      margin: 0;
      padding: 0; }
    .slide-panel .slide-panel-body .alert {
      font-weight: normal;
      box-shadow: none;
      margin: 0 0 0.5em 0;
      padding: 0.5em 40px 1em 20px;
      color: inherit;
      background-color: inherit;
      border-width: 0;
      position: relative;
      border-bottom: solid 1px #E0E0E0; }
      .slide-panel .slide-panel-body .alert:before {
        display: none; }
      .slide-panel .slide-panel-body .alert h4 {
        font-weight: bold;
        font-size: 85%;
        color: #888888;
        padding-bottom: 0;
        margin-bottom: 0.5em;
        margin-top: 0.5em; }
        .slide-panel .slide-panel-body .alert h4 em {
          font-weight: normal;
          margin-left: 10px; }
      .slide-panel .slide-panel-body .alert p {
        margin: 0; }
        .slide-panel .slide-panel-body .alert p a {
          float: none !important; }
      .slide-panel .slide-panel-body .alert .close {
        float: none;
        font-size: 1em;
        position: absolute;
        opacity: 1;
        right: 20px;
        top: 2px;
        margin: 0;
        padding: 0; }
        .slide-panel .slide-panel-body .alert .close i {
          font-size: 1em;
          font-weight: normal;
          text-shadow: none;
          color: #E53935; }
  .slide-panel.slide-panel-default {
    background-color: #ffffff;
    color: #011A3A; }
    .slide-panel.slide-panel-default .slide-panel-body {
      border-top: 1px solid #E0E0E0; }
  .slide-panel.slide-panel-primary {
    background-color: #FDB913;
    color: #FFFFFF; }
    .slide-panel.slide-panel-primary .slide-panel-body {
      border-top: 1px solid #7986CB; }
  .slide-panel.slide-panel-success {
    background-color: #43A047;
    color: #FFFFFF; }
  .slide-panel.slide-panel-warning {
    background-color: #FB8C00;
    color: #FFFFFF; }
  .slide-panel.slide-panel-danger {
    background-color: #E53935;
    color: #FFFFFF; }
  .slide-panel.slide-panel-info {
    background-color: #1E88E5;
    color: #FFFFFF; }
  .slide-panel.slide-panel-inverse {
    background-color: #000000;
    color: #FFFFFF; }
    .slide-panel.slide-panel-inverse button.close {
      color: #011A3A; }

/* 
Component: Drag and Drop

This drag-and-drop component based the [IW JS API Sortable Object](https://insight.innovativewayinc.com/development/languages/javascript/iw-sitemaker-api/sortable/)

### Standard UX
- After drag-and-drop, a success popup should appear
- The drag-and-drop icon is the <i class="fa fa-bars"></i> [`Bars`](https://fontawesome.com/v4.7.0/icon/bars) icon from Font Awesome per Google Material Design
- <span class="text-highlight">Only the drag-and-drop icon is draggable.</span>

Weight: 100

Styleguide ComponentDragAndDrop
*/
/* 
List

Add <span class="text-hightlight">`data-drag-id="XXX"`</span> to the `<li>` to identify the ID

Markup:
<ol class="js-sortable" data-draggeable-handle-selector=".drag-handle">
<li data-drag-id="1">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
<li data-drag-id="2">Suspendisse non mi quis mauris molestie rhoncus vel nec quam.</li>
<li data-drag-id="3">Integer vulputate sapien eu nibh fermentum gravida.</li>
<li data-drag-id="4">Vivamus ullamcorper odio eget porta posuere.</li>
<li data-drag-id="4">Maecenas iaculis velit id porttitor porttitor.</li>
</ol>

Styleguide ComponentDragAndDrop.List
*/
/* 
Table

Add <span class="text-hightlight">`data-drag-id="XXX"`</span> to the `<tr>` to identify the ID

Markup:
<table class="table table-hover js-sortable" data-draggeable-handle-selector=".drag-handle">
	<thead>
		<tr>
			<th>Column 1</th>
			<th>Column 2</th>
			<th>Column 3</th>
		</tr>
	</thead>
	<tbody>
		<tr data-drag-id="1">
			<td>Lorem ipsum dolor sit</td>
			<td>amet consectetur</td>
			<td>adipiscing elit</td>
		</tr>
		<tr data-drag-id="2">
			<td>Suspendisse non mi</td>
			<td>quis mauris molestie rhoncus</td>
			<td>vel nec quam</td>
		</tr>
		<tr data-drag-id="3">
			<td>Integer vulputate sapien</td>
			<td>eu nibh fermentum</td>
			<td>gravida</td>
		</tr>
		<tr data-drag-id="4">
			<td>Maecenas iaculis</td>
			<td>velit id</td>
			<td>porttitor porttitor</td>
		</tr>
	</tbody>
</table>

Styleguide ComponentDragAndDrop.Table
*/
.js-sortable .sortable-chosen {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border: solid 3px #66afe9;
  cursor: grabbing; }
  .js-sortable .sortable-chosen.sortable-ghost a {
    pointer-events: none; }

.js-sortable .drag-handle::before {
  content: "\f0c9";
  font-family: "FontAwesome";
  color: #9E9E9E;
  margin-left: 10px;
  cursor: grab;
  float: right; }

.js-sortable .drag-handle:hover::before {
  color: #011A3A; }

.js-sortable .text-center > .drag-handle::before {
  margin-left: 0;
  float: none; }

.js-sortable.sortable-target-chosen {
  user-select: none; }

.js-sortable .js-sortable-list.sortable-target-chosen {
  user-select: none; }
  .js-sortable .js-sortable-list.sortable-target-chosen > tr.sortable-chosen {
    transform: rotate(1deg);
    border-width: 0;
    border-radius: 1rem; }
  .js-sortable .js-sortable-list.sortable-target-chosen > tr:not(.sortable-chosen) a {
    pointer-events: none; }

/* 
Element: Tables

Wrapper for Bootstrap tables

Note: By default, data is in order of <span class="text-highlight">A-Z</span> unless noted otherwise in business rules.

Markup: ..\tables.hbs

.table-primary		- &nbsp;
.table-info			- &nbsp;
.table-warning		- &nbsp;
.table-danger		- &nbsp;
.table-success		- &nbsp;
.table-inverse		- &nbsp;

Styleguide ElementTables
*/
.table .label {
  position: relative;
  top: -0.1em; }

.table thead tr th {
  padding: .75rem; }
  .table thead tr th.multiselect {
    text-align: center;
    width: 40px;
    padding-right: 0; }

.table tbody tr td {
  padding: .75rem; }
  .table tbody tr td.icon {
    text-align: center;
    width: 64px; }
    .table tbody tr td.icon a.fa:hover {
      text-decoration: none; }
  .table tbody tr td.multiselect {
    text-align: center;
    width: 40px;
    padding-right: 0; }
  .table tbody tr td.cell-progress {
    text-align: center; }
    .table tbody tr td.cell-progress .progress {
      height: 20px; }
    .table tbody tr td.cell-progress .progress-title {
      margin-top: 0.25em;
      font-size: 85%;
      color: #9E9E9E; }
  .table tbody tr td i.fa {
    font-size: 1.4em; }
    .table tbody tr td i.fa.fa-3x {
      font-size: 3em; }
  .table tbody tr td small i.fa {
    font-size: 1em; }
  .table tbody tr td a.fa {
    display: none;
    font-size: 1.4em; }
    .table tbody tr td a.fa.fa-times-circle {
      color: #E53935; }
      .table tbody tr td a.fa.fa-times-circle.text-muted {
        color: #BDBDBD;
        pointer-events: none; }
    .table tbody tr td a.fa.fa-minus-circle {
      color: #E53935; }
      .table tbody tr td a.fa.fa-minus-circle.text-muted {
        color: #BDBDBD;
        pointer-events: none; }
    .table tbody tr td a.fa.fa-sign-out {
      color: #E53935; }
      .table tbody tr td a.fa.fa-sign-out.text-muted {
        color: #BDBDBD;
        pointer-events: none; }
    .table tbody tr td a.fa.text-muted {
      color: #BDBDBD; }

.table tbody tr:hover > td > a.fa {
  display: block !important; }
  .table tbody tr:hover > td > a.fa.d-none {
    display: none !important; }

.table tbody tr:hover > td > span > a.fa {
  display: block !important; }
  .table tbody tr:hover > td > span > a.fa.d-none {
    display: none !important; }

.table tbody tr.child > td {
  padding: 0;
  border-top-width: 0; }

.table tbody tr.child:hover {
  background-color: inherit; }

.table tbody tr.child .table {
  margin-bottom: 0; }
  .table tbody tr.child .table tbody tr td {
    background-color: #F5F5F5; }
    .table tbody tr.child .table tbody tr td:first-child {
      padding-left: 70px; }

.table tbody tr.active td,
.table tbody tr.active th,
.table thead tr.active td,
.table thead tr.active th {
  background-color: #C5CAE9; }

.table tbody tr.primary td,
.table tbody tr.primary th,
.table thead tr.primary td,
.table thead tr.primary th {
  background-color: #C5CAE9; }

.table tbody tr.success td,
.table tbody tr.success th,
.table thead tr.success td,
.table thead tr.success th {
  background-color: #A5D6A7; }

.table tbody tr.warning td,
.table tbody tr.warning th,
.table thead tr.warning td,
.table thead tr.warning th {
  background-color: #FFCC80; }

.table tbody tr.danger td,
.table tbody tr.danger th,
.table thead tr.danger td,
.table thead tr.danger th {
  background-color: #EF9A9A; }

.table tbody tr.info td,
.table tbody tr.info th,
.table thead tr.info td,
.table thead tr.info th {
  background-color: #90CAF9; }

.table tbody tr.inverse td,
.table tbody tr.inverse th,
.table thead tr.inverse td,
.table thead tr.inverse th {
  background-color: #424242;
  color: #FFFFFF; }

.table.table-primary {
  background-color: inherit; }
  .table.table-primary thead th {
    background-color: #C5CAE9;
    border-bottom-color: #9FA8DA; }
    .table.table-primary thead th a {
      color: #424242; }

.table.table-success {
  background-color: inherit; }
  .table.table-success thead th {
    background-color: #A5D6A7;
    border-bottom-color: #81C784; }

.table.table-warning {
  background-color: inherit; }
  .table.table-warning thead th {
    background-color: #FFCC80;
    border-bottom-color: #FFB74D; }

.table.table-danger {
  background-color: inherit; }
  .table.table-danger thead th {
    background-color: #EF9A9A;
    border-bottom-color: #E57373; }

.table.table-info {
  background-color: inherit; }
  .table.table-info thead th {
    background-color: #90CAF9;
    border-bottom-color: #64B5F6; }

.table.table-inverse {
  background-color: inherit; }
  .table.table-inverse thead th {
    background-color: #424242;
    border-bottom-color: #212121;
    color: #FFFFFF; }

.table.table-bordered {
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0; }
  .table.table-bordered thead th {
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 3px; }
  .table.table-bordered thead tr:nth-child(1) th {
    border-top-width: 0; }
  .table.table-bordered tbody td,
  .table.table-bordered tbody th {
    border-left-width: 0;
    border-right-width: 0; }
  .table.table-bordered tfoot td,
  .table.table-bordered tfoot th {
    border-left-width: 0;
    border-right-width: 0; }

.table.table-striped tbody tr:hover {
  background-color: initial; }

.table.table-striped tbody tr:nth-of-type(odd) {
  background-color: initial; }

.table.table-striped.table-hover tbody tr:hover {
  background-color: #FFFFFF; }

.table.table-wordbreakall tbody tr td {
  word-break: break-all; }

.table.auto-width {
  width: 100% !important; }
  .table.auto-width th {
    width: auto !important; }
  .table.auto-width td {
    width: auto !important; }

.table.table-cpq thead th {
  padding: .75em .75em; }

.table.table-cpq tbody tr td {
  padding: .75em .75em; }
  .table.table-cpq tbody tr td input {
    border-color: #EEEEEE; }
    .table.table-cpq tbody tr td input[disabled] {
      background-color: #ffffff; }
    .table.table-cpq tbody tr td input[type="number"] {
      text-align: right; }
  .table.table-cpq tbody tr td.cpq-qty {
    padding: 0; }
    .table.table-cpq tbody tr td.cpq-qty label {
      padding: 1.25em .75em;
      margin-bottom: 0; }
    .table.table-cpq tbody tr td.cpq-qty.highlight {
      background-color: #BBDEFB; }
  .table.table-cpq tbody tr td.cpq-override input[type="number"] {
    pointer-events: none; }
    .table.table-cpq tbody tr td.cpq-override input[type="number"].cpq-default {
      display: block; }
    .table.table-cpq tbody tr td.cpq-override input[type="number"].cpq-override {
      display: none; }
  .table.table-cpq tbody tr td.cpq-override.highlight input[type="number"] {
    pointer-events: initial;
    border-color: #424242; }
    .table.table-cpq tbody tr td.cpq-override.highlight input[type="number"].cpq-default {
      display: none; }
    .table.table-cpq tbody tr td.cpq-override.highlight input[type="number"].cpq-override {
      display: block; }

.table.table-cpq tbody tr[data-isadd="0"] input[name$=_qty], .table.table-cpq tbody tr[data-isadd="0"] input[name$=_unitprice], .table.table-cpq tbody tr[data-isadd="0"] input[name$=_subtotal] {
  display: none; }

.table.table-cpq tbody tr[data-isadd="0"] .control-switch {
  display: none; }

.table.table-cpq-splitpayment thead th {
  padding: .75em 0em; }

.table.table-cpq-splitpayment tbody tr {
  position: relative; }
  .table.table-cpq-splitpayment tbody tr td {
    padding: .75em 0em;
    vertical-align: middle; }
    .table.table-cpq-splitpayment tbody tr td .fa:before {
      font-size: 1rem; }
    .table.table-cpq-splitpayment tbody tr td .pin {
      display: block;
      left: -50px;
      top: 9px; }
      .table.table-cpq-splitpayment tbody tr td .pin:after {
        border-top-width: 18px; }

body.dark .table {
  color: #E0E0E0; }
  body.dark .table thead tr th {
    border-top-color: #616161;
    border-bottom-color: #616161; }
  body.dark .table tbody tr td {
    border-top-color: #616161; }
  body.dark .table.table-hover tbody tr:hover {
    background-color: #424242;
    color: #E0E0E0; }

/* 
QueryGrid

Wrapper for Bootstrap tables

Markup:
<table class="table {{modifier_class}}">
	<thead>
		<tr>
			<th>Column 1</th>
			<th class="headerdesc"><a href="">Column 2</a></th>
			<th class="headerasc"><a href="">Column 3</a></th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
	</tbody>
</table>

.querygrid			- &nbsp;

Styleguide ElementTables.QueryGrid
*/
.table.querygrid thead tr th {
  font-size: 90%;
  padding: 0.75rem 1rem; }
  .table.querygrid thead tr th.headerdesc a:before {
    font-family: 'FontAwesome';
    content: "\f078";
    margin-right: 0.4em;
    font-size: 70%;
    padding: 5px 5px 5px 5px;
    top: -2px;
    position: relative;
    background-color: #FB8C00;
    color: #FFFFFF;
    border-radius: 0.5rem; }
  .table.querygrid thead tr th.headerasc a:before {
    font-family: 'FontAwesome';
    content: "\f077";
    margin-right: 0.4em;
    font-size: 70%;
    padding: 5px 5px 5px 5px;
    top: -2px;
    position: relative;
    background-color: #FB8C00;
    color: #FFFFFF;
    border-radius: 0.5rem; }

.table.querygrid tbody tr th,
.table.querygrid tbody tr td {
  padding: 0.75rem 1rem; }

.table.querygrid tbody tr td {
  vertical-align: middle; }
  .table.querygrid tbody tr td a.fa {
    display: block;
    color: #E0E0E0; }
  .table.querygrid tbody tr td.charts-chain {
    max-width: 450px;
    overflow: hidden;
    position: relative;
    text-align: left; }
    .table.querygrid tbody tr td.charts-chain .chart.chart-chain .highcharts-container {
      position: absolute; }
    .table.querygrid tbody tr td.charts-chain .chart.chart-chain:hover {
      overflow-x: auto; }
  .table.querygrid tbody tr td.table-success a.fa {
    color: #011A3A; }
  .table.querygrid tbody tr td code {
    word-break: break-all; }

.table.querygrid tbody tr.child > td {
  padding: 0; }

.table.querygrid tbody tr:hover td a.fa {
  color: #1976D2; }
  .table.querygrid tbody tr:hover td a.fa.fa-times {
    color: #9f1815; }

.table.table-sortable thead th {
  cursor: pointer; }
  .table.table-sortable thead th.sort-asc:before, .table.table-sortable thead th.headerasc:before {
    font-family: 'FontAwesome';
    font-size: 1.3em;
    line-height: 1em;
    content: "\f0d8";
    margin-right: 5px; }
  .table.table-sortable thead th.sort-desc:before, .table.table-sortable thead th.headerdesc:before {
    font-family: 'FontAwesome';
    font-size: 1.3em;
    line-height: 1em;
    content: "\f0d7";
    margin-right: 5px; }

.querygrid-container table.querygrid {
  margin-bottom: 0; }
  .querygrid-container table.querygrid tbody tr th,
  .querygrid-container table.querygrid tbody tr td {
    word-break: normal;
    width: fit-content; }
  .querygrid-container table.querygrid tbody.querygrid-group-header tr td a {
    font-weight: bold; }
    .querygrid-container table.querygrid tbody.querygrid-group-header tr td a[href]:before {
      font-family: "FontAwesome";
      margin-right: 5px;
      color: #011A3A;
      font-weight: bold;
      content: "\f107"; }
    .querygrid-container table.querygrid tbody.querygrid-group-header tr td a[href].show:before {
      content: "\f106"; }
  .querygrid-container table.querygrid tbody.querygrid-group-body tr.querygrid-subtotal td {
    font-size: 90%;
    padding: 0.35rem 0.75rem 0.35rem 0.75rem; }
  .querygrid-container table.querygrid tbody.collapsing {
    -webkit-transition: none !important;
    transition: none !important; }
  .querygrid-container table.querygrid tfoot tr td {
    font-size: 90%;
    padding: 0.35rem 0.75rem 0 0.75rem;
    border-bottom-width: 0;
    border-top-width: 2px; }
  .querygrid-container table.querygrid:has(tfoot) {
    border-bottom-width: 0; }
  .querygrid-container table.querygrid.freeze-column thead tr th:first-child {
    position: sticky;
    left: 0;
    background-color: #FFFFFF; }
  .querygrid-container table.querygrid.freeze-column tbody.querygrid-group-header tr td:first-child a {
    position: sticky;
    left: 1rem;
    background-color: #FFFFFF; }
  .querygrid-container table.querygrid.freeze-column tbody.querygrid-group-body tr td:first-child {
    position: sticky;
    left: 0;
    background-color: #FFFFFF; }
  .querygrid-container table.querygrid.freeze-column tbody.querygrid-group-body tr:hover td:first-child {
    position: sticky;
    left: 0;
    background-color: #F5F5F5; }

.querygrid-container:has(.freeze-column) {
  position: relative;
  display: flex; }
  .querygrid-container:has(.freeze-column) .freeze-vertical-separator {
    width: 0;
    position: sticky;
    left: 0;
    top: 0;
    height: 200px;
    border-right: 1px solid #E0E0E0;
    content: " ";
    z-index: 11; }

/* 
Element: Pagination

Wrapper for Bootstrap Pagination

Markup: ../pagination.hbs

Styleguide ElementPagination
*/
.resultsnav {
  font-size: 1.1em; }
  .resultsnav p {
    font-weight: bold;
    margin-bottom: 0; }
    .resultsnav p span.badge {
      position: relative;
      top: -1px;
      margin: 0 5px;
      font-size: 90%; }
      .resultsnav p span.badge.badge-secondary {
        background-color: #9E9E9E; }
  .resultsnav .resultsnav-desc {
    margin-bottom: 0;
    line-height: 30px; }
  .resultsnav .resultsnav-pagination ul {
    margin: 0;
    padding: 0; }
    .resultsnav .resultsnav-pagination ul li {
      display: block;
      float: left;
      line-height: 22px;
      width: 40px;
      background-color: #FDB913;
      min-height: 24px;
      position: relative;
      top: -2px; }
      .resultsnav .resultsnav-pagination ul li ul {
        display: none; }
      .resultsnav .resultsnav-pagination ul li strong {
        background-color: #E0E0E0; }
      .resultsnav .resultsnav-pagination ul li a {
        text-align: center;
        height: 24px;
        display: block;
        width: 40px;
        position: absolute; }
        .resultsnav .resultsnav-pagination ul li a img {
          display: none; }
      .resultsnav .resultsnav-pagination ul li:before {
        min-height: 24px;
        font-family: 'FontAwesome';
        display: block;
        font-size: 0.8rem;
        color: #FFFFFF;
        position: absolute;
        padding: 0 1rem;
        top: 2px; }
      .resultsnav .resultsnav-pagination ul li:empty {
        background-color: #EEEEEE; }
        .resultsnav .resultsnav-pagination ul li:empty:before {
          color: #011A3A; }
      .resultsnav .resultsnav-pagination ul li.first {
        display: none; }
      .resultsnav .resultsnav-pagination ul li.previous {
        border-top-left-radius: 0.5rem;
        border-bottom-left-radius: 0.5rem; }
        .resultsnav .resultsnav-pagination ul li.previous:before {
          content: "\f053"; }
      .resultsnav .resultsnav-pagination ul li.next {
        border-top-right-radius: 0.5rem;
        border-bottom-right-radius: 0.5rem; }
        .resultsnav .resultsnav-pagination ul li.next:before {
          content: "\f054"; }
      .resultsnav .resultsnav-pagination ul li.last {
        display: none; }

body.dark .resultsnav .resultsnav-pagination ul li {
  background-color: inherit; }

/* 
Auto-Numbered

This is a table that is auto-numbered by adding the `table-numbered` class, ex:

<code>&lt;table class="table table-hover <span class="text-highlight">table-numbered</span>"&gt;</code>

Markup:
<table class="table table-hover table-numbered">
	<thead>
		<tr>
			<th>Column 1</th>
			<th>Column 2</th>
			<th>Column 3</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
		<tr>
			<td>lorem ipsum</td>
			<td>dolor sit amet</td>
			<td>consectetur</td>
		</tr>
	</tbody>
</table>

Styleguide ElementTables.AutoNumbered
*/
.table.table-numbered {
  counter-reset: table-counter; }
  .table.table-numbered thead tr:before {
    display: table-cell;
    padding: 0.75rem;
    content: " ";
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table.table-numbered tbody tr:before {
    display: table-cell;
    padding: 0.75rem;
    color: #9E9E9E;
    text-align: center;
    counter-increment: table-counter;
    content: counter(table-counter);
    vertical-align: top;
    border-top: 1px solid #E0E0E0; }

@media (max-width: 1199.98px) {
  .table-container {
    overflow: scroll; }
    .table-container .table {
      width: auto; } }

.tile .tile-footer .tile-count:before {
  content: "Count"; }

.tile .tile-footer .tile-count[data-text="0"] {
  display: none; }

/* 
Component: Timelines

Markup:
<ul class="timeline one-sided auto-count {{modifier_class}}">
    <li>
        <div class="timeline-panel">
            <h4>Heading</h4>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia, sem quis faucibus iaculis, dolor enim pharetra quam, sagittis finibus libero lacus a diam.</p>
            <ul>
                <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
                <li>Vivamus auctor lacus eu diam ultricies laoreet.</li>
                <li>Mauris eu purus sollicitudin, ornare massa vel, dictum ex.</li>
            </ul>
        </div>
    </li>
    <li>
        <div class="timeline-panel">
            <h4>Heading</h4>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia, sem quis faucibus iaculis, dolor enim pharetra quam, sagittis finibus libero lacus a diam.</p>
            <ul>
                <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
                <li>Vivamus auctor lacus eu diam ultricies laoreet.</li>
                <li>Mauris eu purus sollicitudin, ornare massa vel, dictum ex.</li>
            </ul>
        </div>
    </li>
    <li>
        <div class="timeline-panel">
            <h4>Heading</h4>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lacinia, sem quis faucibus iaculis, dolor enim pharetra quam, sagittis finibus libero lacus a diam.</p>
            <ul>
                <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</li>
                <li>Vivamus auctor lacus eu diam ultricies laoreet.</li>
                <li>Mauris eu purus sollicitudin, ornare massa vel, dictum ex.</li>
            </ul>
        </div>
    </li>
</ul>

.primary		- &nbsp;
.secondary		- &nbsp;
.info			- &nbsp;
.warning		- &nbsp;
.danger			- &nbsp;
.success		- &nbsp;
.inverse		- &nbsp;
.light			- &nbsp;
.dark			- &nbsp;

Weight: 100

Styleguide ComponentTimelines
*/
.timeline {
  list-style: none;
  padding: 1em 0 0 0;
  position: relative;
  margin: 0px; }
  .timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 4px;
    background-color: #E0E0E0;
    left: 50%;
    margin-left: -1.5px; }
  .timeline > li {
    margin-bottom: 0px;
    position: relative; }
    .timeline > li .timeline-panel {
      width: 46%;
      float: left;
      padding: 20px;
      position: relative;
      background-color: #ffffff;
      margin-bottom: 1em;
      cursor: move;
      border-top: 1px solid #E0E0E0;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .timeline > li .timeline-panel .label-orange, .timeline > li .timeline-panel .btn-orange {
        background-color: #FDB913;
        color: #FFFFFF; }
      .timeline > li .timeline-panel:before {
        position: absolute;
        top: 26px;
        right: -15px;
        display: inline-block;
        border-top: 15px solid transparent;
        border-left: 15px solid #E0E0E0;
        border-right: 0 solid #E0E0E0;
        border-bottom: 15px solid transparent;
        content: " "; }
      .timeline > li .timeline-panel:after {
        position: absolute;
        top: 27px;
        right: -14px;
        display: inline-block;
        border-top: 14px solid transparent;
        border-left: 14px solid #E0E0E0;
        border-right: 0 solid #E0E0E0;
        border-bottom: 14px solid transparent;
        content: " "; }
      .timeline > li .timeline-panel h4 {
        margin-top: 0;
        padding-bottom: 1em;
        border-bottom: solid 1px #EEEEEE;
        margin-bottom: 1em; }
      .timeline > li .timeline-panel i {
        margin: 0 .2em;
        font-size: 1.4em; }
      .timeline > li .timeline-panel .inline-note p {
        margin-top: .5em; }
    .timeline > li .timeline-badge {
      color: #fff;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 1.4em;
      text-align: center;
      position: absolute;
      top: 16px;
      left: 50%;
      margin-left: -25px;
      background-color: #999999;
      border-radius: 50%;
      cursor: move;
      z-index: auto;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
      .timeline > li .timeline-badge.primary {
        background-color: #214eaa !important; }
      .timeline > li .timeline-badge.success {
        background-color: #43A047 !important; }
      .timeline > li .timeline-badge.warning {
        background-color: #FB8C00 !important; }
      .timeline > li .timeline-badge.danger {
        background-color: #E53935 !important; }
      .timeline > li .timeline-badge.info {
        background-color: #1E88E5 !important; }
    .timeline > li p {
      margin-bottom: 1em; }
  .timeline > li:before, .timeline > li:after {
    content: " "; }
  .timeline > li.clearfix {
    margin-bottom: 20px; }
  .timeline > li.timeline-inverted {
    padding-top: 80px; }
    .timeline > li.timeline-inverted .timeline-badge {
      top: 96px; }
    .timeline > li.timeline-inverted .timeline-panel {
      float: right; }
      .timeline > li.timeline-inverted .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto; }
      .timeline > li.timeline-inverted .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto; }
  .timeline .timeline-title {
    margin-top: 0;
    color: inherit; }
  .timeline .timeline-body > p,
  .timeline .timeline-body > ul {
    margin-bottom: 1em; }
  .timeline .timeline-body > p + p {
    margin-top: 5px; }
  .timeline .timeline-body p img {
    padding: 0px;
    border-radius: 0px; }
  .timeline.one-sided:before {
    left: 40px; }
  .timeline.one-sided > li .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px); }
  .timeline.one-sided > li .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px; }
  .timeline.one-sided > li .timeline-panel {
    float: right; }
    .timeline.one-sided > li .timeline-panel:before {
      border-left-width: 0;
      border-right-width: 15px;
      left: -15px;
      right: auto; }
    .timeline.one-sided > li .timeline-panel:after {
      border-left-width: 0;
      border-right-width: 14px;
      left: -14px;
      right: auto; }
  .timeline.one-sided > li:after {
    display: block;
    clear: both;
    margin-bottom: 1em; }
  .timeline.auto-count {
    counter-reset: timeline-counter; }
    .timeline.auto-count > li:before {
      counter-increment: timeline-counter;
      content: counter(timeline-counter);
      color: #fff;
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 1.4em;
      text-align: center;
      position: absolute;
      top: 16px;
      left: 39px;
      margin-left: -25px;
      background-color: #9E9E9E;
      border-radius: 50%; }
    .timeline.auto-count > li.info:before {
      background-color: #1E88E5; }
    .timeline.auto-count > li.danger:before {
      background-color: #E53935; }
    .timeline.auto-count > li.success:before {
      background-color: #43A047; }
    .timeline.auto-count > li.warning:before {
      background-color: #FB8C00; }
    .timeline.auto-count > li .timeline-badge {
      display: none; }
    .timeline.auto-count.info:before {
      background-color: #1976D2; }
    .timeline.auto-count.info > li:before {
      background-color: #1E88E5; }
    .timeline.auto-count.success:before {
      background-color: #388E3C; }
    .timeline.auto-count.success > li:before {
      background-color: #43A047; }
    .timeline.auto-count.danger:before {
      background-color: #D32F2F; }
    .timeline.auto-count.danger > li:before {
      background-color: #E53935; }
    .timeline.auto-count.warning:before {
      background-color: #F57C00; }
    .timeline.auto-count.warning > li:before {
      background-color: #FB8C00; }
  .timeline.auditlog .auditlog-profile {
    display: block;
    float: left;
    width: 34px;
    border-radius: 50%;
    border: 2px solid #9E9E9E;
    margin-right: 10px; }
  .timeline.auditlog .auditlog-name {
    margin: 0;
    font-weight: bold; }
  .timeline.auditlog .auditlog-date {
    font-size: 85%; }
  .timeline.auditlog .auditlog-area {
    font-size: 1.25em;
    font-weight: bold; }
  .timeline.auditlog .timeline-badge {
    font-size: 2em; }
  .timeline.auditlog .timeline-panel .label.label-audit-Update {
    background-color: #FB8C00; }
  .timeline.auditlog .timeline-panel .label.label-audit-Add {
    background-color: #43A047; }
  .timeline.auditlog .timeline-panel .label.label-audit-Delete {
    background-color: #E53935; }

.well .timeline .timeline-panel {
  background-color: #ffffff; }

.well.well-info .timeline:before {
  background-color: #1976D2; }

.well.well-info .timeline .timeline-panel {
  border-color: #1976D2; }
  .well.well-info .timeline .timeline-panel:before {
    border-left-color: #1976D2;
    border-right-color: #1976D2; }

.well.well-info .timeline .timeline-badge {
  background-color: #1E88E5; }

.well.well-info .timeline.auto-count > li:before {
  background-color: #1E88E5; }

.well.well-success .timeline:before {
  background-color: #388E3C; }

.well.well-success .timeline .timeline-panel {
  border-color: #388E3C; }
  .well.well-success .timeline .timeline-panel:before {
    border-left-color: #388E3C;
    border-right-color: #388E3C; }

.well.well-success .timeline .timeline-badge {
  background-color: #43A047; }

.well.well-success .timeline.auto-count > li:before {
  background-color: #43A047; }

@media (max-width: 767px) {
  ul.timeline:before {
    left: 40px; }
  ul.timeline > li .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px); }
  ul.timeline > li .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 16px; }
  ul.timeline > li .timeline-panel {
    float: right; }
  ul.timeline > li .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto; }
  ul.timeline > li .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto; } }

/* 
Element: Tooltip

Wrapper for [Bootstrap Tooltip](https://getbootstrap.com/docs/4.3/components/tooltips/).

### Standard UX Behavior
- Tooltips appear on mouse over and disappear on mouse out.

### Standard Verbiage
- Do not use the same text for the tooltip text as the name of the link, column name, toggle, icon, etc. Either provide something of value for the tooltip text or leave it blank.

### Non-Standard Code
- ABBV tag tooltip will not style, we are unable to get the tooltip to display like all our other Bootstrap tooltips so using TEXT component and styling it like an ABBV tag.

Markup:
<p><span data-toggle="tooltip" title="Tooltip here">Lorem ipsum dolor sit amet.</span></p>

Styleguide ElementTooltip
*/
/* 
Direction

Direction is specified using the `data-placement` attribute, ex: `<span data-toggle="tooltip" title="Tooltip here" data-placement="bottom">Lorem ipsum dolor sit amet.</span>`

Markup:
<p><span data-toggle="tooltip" title="Tooltip here" data-placement="{{modifier_class}}">Lorem ipsum dolor sit amet.</span></p>

.top		- &nbsp;
.right		- &nbsp;
.bottom		- &nbsp;
.left		- &nbsp;

Styleguide ElementTooltip.Direction
*/
/* 
Kitchen Sink

Markup: tooltip-kitchensink.hbs

Styleguide ElementTooltip.KitchenSink
*/
span[data-toggle='tooltip'] {
  display: inline-block; }

.backoffice .tooltip .tooltip-inner {
  max-width: 400px; }
  .backoffice .tooltip .tooltip-inner .tooltip-html {
    text-align: left; }
    .backoffice .tooltip .tooltip-inner .tooltip-html ul {
      margin: 0;
      padding-left: 26px; }

/* 
Element: Text

We use the default Bootstrap font size. <span class="text-highlight">Do not override Bootstrap unless explicity required</span>.

Markup:
<p class="{{modifier_class}}">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam viverra scelerisque pellentesque.</p>

.text-primary		- &nbsp;
.text-secondary		- &nbsp;
.text-info			- &nbsp;
.text-warning		- &nbsp;
.text-danger		- &nbsp;
.text-success		- &nbsp;
.text-inverse		- &nbsp;
.text-muted			- &nbsp;
.text-light			- &nbsp;
.text-dark			- &nbsp;
.text-darkgrey		- &nbsp;
.text-highlight		- &nbsp;

Styleguide ElementText
*/
/* 
Code

Markup:
<p>Lorem ipsum <code>dolor sit amet</code>, consectetur adipiscing elit. Aliquam viverra scelerisque pellentesque.</p>

Styleguide ElementText.Code
*/
/* 
Dotted Underline

Markup:
<p>Lorem ipsum <span id="" class="text-decoration" data-toggle="tooltip" title="" data-placement="top" data-original-title="hover text">dolor sit amet</span>, consectetur adipiscing elit. Aliquam viverra scelerisque pellentesque.</p>

Styleguide ElementText.Dotted
*/
/* 
Padding and Spacing

We use the default Bootstrap padding and spacing. <span class="text-highlight">Do not override Bootstrap unless explicity required</span>.

Markup: text-padding.hbs

Styleguide ElementText.Padding
*/
@font-face {
  font-family: 'Blokk';
  font-weight: 400;
  font-style: normal;
  src: url("https://iwcdn.s3.amazonaws.com/styles/blokkneue-regular.woff2") format("woff2"); }

blockquote {
  padding: 1rem 1.25rem;
  margin: 0 auto;
  width: 70%;
  font-size: 1.2rem;
  line-height: 1.5em;
  border-left: 1px solid #E0E0E0;
  border-left-width: 7px; }
  blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.8em;
    color: #9E9E9E; }

.text-primary {
  color: #214eaa; }

.text-secondary {
  color: #FDB913; }

.text-success {
  color: #388E3C; }

.text-warning {
  color: #F57F17; }

.text-danger {
  color: #D32F2F; }

.text-info {
  color: #1976D2; }

.text-inverse {
  color: #1976D2; }

.text-muted {
  color: #9E9E9E !important; }

.fa.fa-primary {
  color: #214eaa; }

.fa.fa-secondary {
  color: #FDB913; }

.fa.fa-success {
  color: #388E3C; }

.fa.fa-warning {
  color: #F57F17; }

.fa.fa-danger {
  color: #D32F2F; }

.fa.fa-info {
  color: #1976D2; }

.fa.fa-inverse {
  color: #1976D2; }

.text-mockup {
  font-family: "Blokk";
  color: #9E9E9E; }

.text-darkgrey {
  color: #424242; }

.text-small {
  font-size: 0.8em; }

.text-icon .fa:before {
  margin-right: 0.4em; }

.text-lg {
  font-size: 1.1rem; }

.text-xl {
  font-size: 1.25rem; }

.text-xl {
  font-size: 1.5rem; }

.text-xxl {
  font-size: 1.875rem; }

.text-highlight {
  background-color: #FFF176;
  padding: 0px 5px;
  font-weight: bold; }

/**Not required for now
.text-more
{
	margin-left: 0.5em;
	a
	{
		span
		{
			&:after
			{
				content: "..."
			}
		}
	}
}
**/
.date-since span:before {
  content: none; }

.date-since span > span:before {
  content: "\f017";
  font-family: FontAwesome;
  padding-right: 0.4em; }

.date-since .tooltip:before {
  content: "";
  display: none; }

.date-since .tooltip span:before {
  content: "";
  display: none; }

code {
  font-size: 100%;
  background-color: #EAF1FB;
  color: #011A3A;
  padding: 2px 4px; }

pre.code {
  padding: 0.25rem 0.5rem;
  background-color: #EEEEEE;
  font-family: monospace;
  font-size: 0.8rem; }

p.fieldformat {
  font-size: 85%;
  color: #9E9E9E;
  font-style: italic; }

.dark code {
  background-color: #5a0934;
  color: #F8BBD0; }

span.spacer {
  color: transparent;
  visibility: hidden; }

.hand-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 2px; }
  .hand-underline:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 11px;
    background-color: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,18 Q50,6 100,14' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' /%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat; }

h1 .hand-underline,
.h1 .hand-underline {
  padding-bottom: 7px; }
  h1 .hand-underline:after,
  .h1 .hand-underline:after {
    height: 1.5rem; }

h2 .hand-underline,
h3 .hand-underline,
.h2 .hand-underline,
.h3 .hand-underline {
  padding-bottom: 7px; }
  h2 .hand-underline:after,
  h3 .hand-underline:after,
  .h2 .hand-underline:after,
  .h3 .hand-underline:after {
    height: 1.5rem; }

h4 .hand-underline,
h5 .hand-underline,
.h4 .hand-underline,
.h5 .hand-underline {
  padding-bottom: 7px; }
  h4 .hand-underline:after,
  h5 .hand-underline:after,
  .h4 .hand-underline:after,
  .h5 .hand-underline:after {
    height: 1rem; }

@media (max-width: 767px) {
  blockquote {
    margin: 0;
    width: auto; } }

.backoffice i.fa.animated {
  animation-iteration-count: infinite;
  animation-duration: 6s; }
  .backoffice i.fa.animated.fa-info-circle {
    color: #011A3A;
    animation-name: flash; }
    .backoffice i.fa.animated.fa-info-circle.text-danger {
      color: #D32F2F; }
    .backoffice i.fa.animated.fa-info-circle.text-success {
      color: #388E3C; }
  .backoffice i.fa.animated.fa-check-square {
    color: #388E3C;
    animation-duration: 2s;
    animation-name: heartBeat; }
  .backoffice i.fa.animated.fa-exclamation-triangle {
    color: #D32F2F;
    animation-duration: 2s;
    animation-name: heartBeat; }
  .backoffice i.fa.animated.rollIn {
    animation-iteration-count: 1;
    animation-duration: 1s; }

/* 
Element: Environment Header

Following are environment banners are used according to each environment. This is placed right after <code>&lt;body&gt;</code>.

Markup:
<div id="app-environment-header" class="{{modifier_class}}" style="position:initial; width:40%;"><span></span></div>

.app-dev		- &nbsp;
.app-uat		- &nbsp;
.app-beta		- &nbsp;

Styleguide ElementEnvironmentHeader
*/
#app-environment-header,
.app-environment-header {
  height: 30px;
  padding: 10px 3%;
  text-align: center;
  background-size: 120px 120px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  display: none; }
  #app-environment-header span:before,
  .app-environment-header span:before {
    display: block;
    margin-top: 5px;
    font-size: 2em;
    font-weight: bold;
    color: #ffffff; }
  #app-environment-header.app-dev,
  .app-environment-header.app-dev {
    background-color: #E53935;
    display: block; }
    #app-environment-header.app-dev span:before,
    .app-environment-header.app-dev span:before {
      content: "DEV"; }
  #app-environment-header.app-uat,
  .app-environment-header.app-uat {
    background-color: #FB8C00;
    display: block; }
    #app-environment-header.app-uat span:before,
    .app-environment-header.app-uat span:before {
      content: "UAT"; }
  #app-environment-header.app-beta,
  .app-environment-header.app-beta {
    background-color: #1E88E5;
    display: block; }
    #app-environment-header.app-beta span:before,
    .app-environment-header.app-beta span:before {
      content: "BETA"; }

body.backoffice #app-environment-header,
body.backoffice .app-environment-header {
  height: 46px;
  padding: 4px 2%;
  text-align: center;
  background-size: 100px 100px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 10000;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }

body.backoffice #app-environment-header {
  right: 245px; }
  body.backoffice #app-environment-header span:before {
    margin-top: 8px;
    font-size: 1.5em; }
  body.backoffice #app-environment-header.app-prod {
    display: none; }

body.backoffice #cl-environment-header {
  right: 70px; }
  body.backoffice #cl-environment-header span:before {
    margin-top: 8px;
    font-size: 1.5em; }
  body.backoffice #cl-environment-header.app-mo {
    background-color: #FB8C00; }
    body.backoffice #cl-environment-header.app-mo span:before {
      content: "CL MO"; }
  body.backoffice #cl-environment-header.app-prod {
    background-color: #43A047; }
    body.backoffice #cl-environment-header.app-prod span:before {
      content: "CL PROD"; }

body.backoffice #pl-environment-header {
  right: 70px;
  background-color: #FB8C00;
  padding: 4px 1.5rem; }
  body.backoffice #pl-environment-header span {
    display: block;
    margin-top: 8px;
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff; }

@media (max-width: 767px) {
  #app-environment-header,
  .app-environment-header {
    display: none; } }

form .twitter-typeahead {
  width: 100%; }
  form .twitter-typeahead .tt-dropdown-menu, form .twitter-typeahead .tt-menu {
    position: absolute;
    top: 100% !important;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 0px 0 0;
    list-style: none;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-clip: padding-box; }
    form .twitter-typeahead .tt-dropdown-menu .tt-highlight, form .twitter-typeahead .tt-menu .tt-highlight {
      background-color: #ffff99; }
  form .twitter-typeahead .tt-menu {
    width: 100%; }
    form .twitter-typeahead .tt-menu p {
      font-size: 1rem; }
  form .twitter-typeahead .tt-suggestion {
    display: block; }
    form .twitter-typeahead .tt-suggestion p {
      display: block;
      padding: 3px 20px;
      clear: both;
      font-weight: normal;
      color: #333333;
      white-space: nowrap;
      margin: 0; }
      form .twitter-typeahead .tt-suggestion p span.specs {
        display: inline; }
      form .twitter-typeahead .tt-suggestion p:hover {
        color: #ffffff;
        text-decoration: none;
        outline: 0;
        background-color: #428bca; }
        form .twitter-typeahead .tt-suggestion p:hover span.specs {
          color: #ffffff; }
        form .twitter-typeahead .tt-suggestion p:hover .tt-highlight {
          background-color: #428bca; }
      form .twitter-typeahead .tt-suggestion p:focus {
        color: #ffffff;
        text-decoration: none;
        outline: 0;
        background-color: #428bca; }
  form .twitter-typeahead .tt-suggestion.tt-cursor p {
    color: #ffffff;
    background-color: #428bca; }
  form .twitter-typeahead .tt-suggestion.tt-cursor p span.specs {
    color: #ffffff; }
  form .twitter-typeahead .tt-suggestion.tt-cursor .tt-highlight {
    background-color: #428bca; }

form .input-group span.twitter-typeahead {
  display: block !important; }
  form .input-group span.twitter-typeahead .tt-dropdown-menu {
    top: 32px !important; }

form .input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu {
  top: 44px !important; }

form .input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu {
  top: 28px !important; }

.switch {
  border: 1px solid #214eaa;
  width: 22px;
  height: 13px;
  border-radius: 13px;
  cursor: pointer;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 2px; }
  .switch .switch-toggle {
    border: 1px solid #214eaa;
    width: 11px;
    height: 11px;
    left: 0;
    border-radius: 12px;
    background: white;
    position: relative;
    transition: left .2s ease-in-out; }
  .switch.on {
    background: #214eaa; }
    .switch.on .switch-toggle {
      left: 10px; }
  .switch.disabled {
    cursor: not-allowed; }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body {
  --section-background2-font: var(--section-font-reverse);
  --heading1-font-size: 3.75rem;
  --heading2-font-size: 3.25rem;
  --heading3-font-size: 2.625rem;
  --heading4-font-size: 1.875rem;
  --heading5-font-size: 1.5rem;
  --heading6-font-size: 1.25rem;
  --section-2column-gap: 4.5rem;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5; }
  body #mainframe #mainbody {
    padding: 0; }
  body .section {
    padding: 6rem 8rem;
    text-align: center;
    position: relative; }
    body .section > .row {
      margin-bottom: 0; }
      body .section > .row > .col h1,
      body .section > .row > .col h2,
      body .section > .row > .col h3,
      body .section > .row > .col h4,
      body .section > .row > .col h5,
      body .section > .row > .col h6,
      body .section > .row > .col .h1,
      body .section > .row > .col .h2,
      body .section > .row > .col .h3,
      body .section > .row > .col .h4,
      body .section > .row > .col .h5,
      body .section > .row > .col .h6 {
        font-family: var(--heading-font-family);
        font-weight: var(--heading-font-weight);
        margin-bottom: 1.5rem;
        line-height: 1.2;
        margin-top: 1.25rem; }
        body .section > .row > .col h1:first-child,
        body .section > .row > .col h2:first-child,
        body .section > .row > .col h3:first-child,
        body .section > .row > .col h4:first-child,
        body .section > .row > .col h5:first-child,
        body .section > .row > .col h6:first-child,
        body .section > .row > .col .h1:first-child,
        body .section > .row > .col .h2:first-child,
        body .section > .row > .col .h3:first-child,
        body .section > .row > .col .h4:first-child,
        body .section > .row > .col .h5:first-child,
        body .section > .row > .col .h6:first-child {
          margin-top: 0; }
      body .section > .row > .col > :last-child {
        margin-bottom: 0; }
      body .section > .row > .col h1,
      body .section > .row > .col .h1 {
        font-size: var(--heading1-font-size); }
      body .section > .row > .col h2,
      body .section > .row > .col .h2 {
        font-size: var(--heading2-font-size); }
      body .section > .row > .col h3,
      body .section > .row > .col .h3 {
        font-size: var(--heading3-font-size); }
      body .section > .row > .col h4,
      body .section > .row > .col .h4 {
        font-size: var(--heading4-font-size); }
      body .section > .row > .col h5,
      body .section > .row > .col .h5 {
        font-size: var(--heading5-font-size); }
      body .section > .row > .col h6,
      body .section > .row > .col .h6 {
        font-size: var(--heading6-font-size); }
      body .section > .row > .col ul li,
      body .section > .row > .col ol li {
        margin-bottom: 0.25rem; }
      body .section > .row > .col ul.nav li,
      body .section > .row > .col ul .navbar-nav li,
      body .section > .row > .col ul .dropdown-menu li,
      body .section > .row > .col ol.nav li,
      body .section > .row > .col ol .navbar-nav li,
      body .section > .row > .col ol .dropdown-menu li {
        margin-bottom: 0; }
      body .section > .row > .col video {
        border-radius: 1rem; }
      body .section > .row > .col .autocolumn-2 {
        column-count: 2;
        column-gap: 2rem;
        list-style-position: inside; }
      body .section > .row > .col .autocolumn-3 {
        column-count: 3;
        column-gap: 2rem;
        list-style-position: inside; }
      body .section > .row > .col .modal .modal-dialog {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }
      body .section > .row > .col .accordion {
        text-align: left; }
        body .section > .row > .col .accordion .card {
          margin-top: 1.5rem;
          margin-bottom: 1.5rem; }
          body .section > .row > .col .accordion .card .card-header {
            background-color: inherit;
            border-bottom: 1px solid #E0E0E0;
            padding-left: 0;
            padding-right: 0; }
            body .section > .row > .col .accordion .card .card-header > :last-child {
              margin-bottom: 0; }
            body .section > .row > .col .accordion .card .card-header a[data-toggle="collapse"] {
              padding-left: 26px;
              padding-right: 26px;
              position: relative;
              display: block; }
              body .section > .row > .col .accordion .card .card-header a[data-toggle="collapse"]::before {
                font-family: "FontAwesome";
                margin-right: 10px;
                font-size: var(--heading5-font-size);
                display: inline-block;
                position: absolute;
                left: 0px; }
              body .section > .row > .col .accordion .card .card-header a[data-toggle="collapse"][aria-expanded="false"]:before {
                content: "\f107"; }
              body .section > .row > .col .accordion .card .card-header a[data-toggle="collapse"][aria-expanded="true"]:before {
                content: "\f106"; }
          body .section > .row > .col .accordion .card .card-body {
            padding-left: 26px;
            padding-right: 26px; }
      body .section > .row > .col .narrow {
        max-width: 1280px;
        margin-left: auto;
        margin-right: auto; }
        body .section > .row > .col .narrow.narrow-md {
          max-width: 1000px; }
        body .section > .row > .col .narrow.narrow-sm {
          max-width: 860px; }
        body .section > .row > .col .narrow.narrow-xs {
          max-width: 640px; }
      body .section > .row > .col p img {
        max-width: 100%;
        border-radius: 1rem; }
      body .section > .row > .col pre {
        padding: 1.5rem;
        background-color: #FFFFFF;
        border: 1px solid #E0E0E0;
        font-family: monospace;
        font-size: 1rem;
        border-radius: 1rem; }
        body .section > .row > .col pre strong {
          background-color: #FFF59D;
          padding: 0 0.25rem; }
      body .section > .row > .col:has(pre) {
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-top: 1.5rem !important;
        text-align: left; }
      body .section > .row > .col ul.pagination {
        justify-content: center; }
        body .section > .row > .col ul.pagination .page-item {
          margin: 0 0.25rem; }
          body .section > .row > .col ul.pagination .page-item a {
            background-color: initial;
            border-width: 0;
            margin: 0;
            line-height: initial;
            padding: .5rem .75rem 0.4rem 0.75rem; }
          body .section > .row > .col ul.pagination .page-item.active {
            background-color: var(--section-background);
            color: var(--section-font-primary);
            border-radius: 0.5rem; }
          body .section > .row > .col ul.pagination .page-item.page-previous a {
            padding: 0.1rem;
            font-size: 1.5rem; }
          body .section > .row > .col ul.pagination .page-item.page-previous[data-isfirst="1"] a {
            pointer-events: none !important;
            cursor: pointer;
            color: #9E9E9E !important; }
          body .section > .row > .col ul.pagination .page-item.page-next a {
            padding: 0.1rem;
            font-size: 1.5rem; }
          body .section > .row > .col ul.pagination .page-item.page-next[data-islast="1"] a {
            padding: 0.1rem;
            font-size: 1.5rem;
            pointer-events: none !important;
            cursor: pointer;
            color: #9E9E9E !important; }
    body .section:has(+ .section > .row > .col > pre) {
      padding-bottom: 1rem; }
    body .section:has(> .row > .col pre) {
      padding-bottom: 0rem; }
    body .section.section-left {
      text-align: left; }
    body .section.section-headerbar {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem; }
    body .section.section-navbar {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem; }
    body .section.section-hero {
      height: var(--hero-height);
      padding: 0; }
      body .section.section-hero > .row {
        align-items: center;
        height: var(--hero-height);
        margin-left: 0;
        margin-right: 0; }
        body .section.section-hero > .row > .col {
          padding-left: 0;
          padding-right: 0; }
          body .section.section-hero > .row > .col h1 {
            margin-bottom: 2rem; }
          body .section.section-hero > .row > .col .subtitle {
            line-height: 1.5;
            font-size: var(--heading-subtitle-font-size); }
          body .section.section-hero > .row > .col .btn.btn-primary {
            font-size: var(--heading5-font-size);
            padding: .5rem 1rem; }
    body .section.section-hero-left {
      height: var(--hero-height);
      text-align: left;
      padding: 1rem 8rem; }
      body .section.section-hero-left > .row {
        align-items: center;
        height: var(--hero-height); }
        body .section.section-hero-left > .row > .col {
          flex: 0 0 50%;
          max-width: 50%; }
          body .section.section-hero-left > .row > .col h1 {
            margin-bottom: 2rem; }
          body .section.section-hero-left > .row > .col .subtitle {
            line-height: 1.5;
            font-size: var(--heading-subtitle-font-size); }
          body .section.section-hero-left > .row > .col:first-child {
            padding-right: 3rem; }
          body .section.section-hero-left > .row > .col:last-child {
            padding-left: 3rem; }
    body .section.section-hero-inner > .row > .col {
      padding-left: 3rem; }
    body .section.section-hero-inner-left > .row > .col:first-child {
      padding-right: 3rem;
      text-align: left; }
    body .section.section-hero-inner-left > .row > .col:last-child {
      padding-left: 3rem; }
    body .section.section-hero-inner-right > .row > .col:first-child {
      padding-right: 3rem; }
    body .section.section-hero-inner-right > .row > .col:last-child {
      padding-left: 3rem;
      text-align: left; }
    body .section.section-title {
      padding-top: 6rem;
      padding-bottom: 0; }
      body .section.section-title + .section {
        padding-top: 3rem; }
    body .section.section-cta {
      text-align: center !important;
      color: var(--section-cta-font); }
      body .section.section-cta h1,
      body .section.section-cta h2,
      body .section.section-cta h3,
      body .section.section-cta h4,
      body .section.section-cta h5,
      body .section.section-cta h6,
      body .section.section-cta .h1,
      body .section.section-cta .h2,
      body .section.section-cta .h3,
      body .section.section-cta .h4,
      body .section.section-cta .h5,
      body .section.section-cta .h6 {
        color: var(--section-cta-font); }
    body .section.section-bio .row .col h4 a svg {
      width: 24px;
      height: 24px;
      fill: var(--section-font-link);
      position: relative;
      top: -2px; }
    body .section.section-perfect ul {
      list-style: none;
      padding-left: 0; }
      body .section.section-perfect ul li {
        margin-bottom: 0.25rem;
        position: relative;
        padding-left: 30px; }
        body .section.section-perfect ul li:before {
          font-family: "FontAwesome";
          content: "\f046";
          display: inline-block;
          position: absolute;
          left: 5px;
          color: var(--text-accent); }
    body .section.section-comparetable .table thead tr th:first-child {
      width: 35%;
      text-align: left; }
    body .section.section-comparetable .table thead tr th.cta {
      background-color: var(--section-background); }
    body .section.section-comparetable .table thead tr th:has(small) {
      line-height: 1.1; }
      body .section.section-comparetable .table thead tr th:has(small) small {
        font-family: var(--font-family);
        font-size: 0.95rem;
        display: inline-block;
        line-height: 1.2; }
    body .section.section-comparetable .table tbody tr td {
      vertical-align: middle; }
      body .section.section-comparetable .table tbody tr td ul {
        margin-bottom: 0;
        padding-left: 50px; }
        body .section.section-comparetable .table tbody tr td ul li {
          margin-bottom: 0; }
      body .section.section-comparetable .table tbody tr td:first-child {
        width: 35%;
        text-align: left; }
      body .section.section-comparetable .table tbody tr td:not(:first-child) .material-symbols-outlined,
      body .section.section-comparetable .table tbody tr td:not(:first-child) .material-symbols-rounded {
        font-size: 1.5rem; }
      body .section.section-comparetable .table tbody tr td.cta {
        font-weight: bold;
        background-color: var(--section-background); }
    body .section.section-comparetable .table tfoot tr td {
      vertical-align: top;
      font-weight: bold; }
      body .section.section-comparetable .table tfoot tr td:first-child {
        width: 35%;
        text-align: left; }
      body .section.section-comparetable .table tfoot tr td.cta {
        background-color: var(--section-background); }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
      padding-top: 0 !important; }
    body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel).section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
      padding-top: 0 !important; }
    @media (max-width: 767px) {
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section:not(.section-twopanel):not(.section-twopanel-left):not(.section-twopanel-right):not(.section-threepanel):not(.section-fourpanel):not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; } }
    body .section.section-twopanel > .row > .col:first-child {
      padding-right: 3rem; }
    body .section.section-twopanel > .row > .col:last-child {
      padding-left: 3rem; }
    body .section.section-twopanel > .row:has(.col img) {
      align-items: center; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
      padding-top: 0 !important; }
    body .section.section-twopanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
      padding-top: 0 !important; }
    @media (max-width: 767px) {
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; } }
    body .section.section-threepanel > .row > .col {
      padding-left: 30px;
      padding-right: 30px; }
      body .section.section-threepanel > .row > .col ul {
        padding-left: 26px; }
        body .section.section-threepanel > .row > .col ul li {
          margin-bottom: 0.75rem; }
      body .section.section-threepanel > .row > .col:first-child {
        margin-left: 15px;
        padding-left: 15px; }
      body .section.section-threepanel > .row > .col:last-child {
        margin-right: 15px;
        padding-right: 15px; }
    body .section.section-threepanel.section-value > .row > .col {
      border-width: 0;
      padding: 2rem;
      background-color: var(--border-color); }
      body .section.section-threepanel.section-value > .row > .col:not(:has(h3)) p {
        font-size: 1.25rem;
        line-height: 2rem; }
    body .section.section-threepanel.section-vs > .row > .col:first-child {
      text-align: left; }
    body .section.section-threepanel.section-vs > .row > .col:nth-child(2) {
      width: 128px;
      max-width: 128px;
      padding-top: 2rem; }
    body .section.section-threepanel.section-vs > .row > .col:last-child {
      text-align: left; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
      padding-top: 0 !important; }
    body .section.section-threepanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
      padding-top: 0 !important; }
    @media (max-width: 767px) {
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; } }
    body .section.section-kpis > .row > .col {
      border-right: 1px solid #E0E0E0;
      padding-top: 2rem;
      padding-bottom: 2rem; }
      body .section.section-kpis > .row > .col h2,
      body .section.section-kpis > .row > .col h3,
      body .section.section-kpis > .row > .col .h2,
      body .section.section-kpis > .row > .col .h3 {
        margin-bottom: 0.5rem; }
      body .section.section-kpis > .row > .col:last-child {
        border-right: none; }
    body .section.section-marquee {
      padding: 0;
      overflow: hidden;
      /* Marquee container */ }
      body .section.section-marquee .marquee-container {
        overflow: hidden;
        position: relative;
        width: 100%; }
        body .section.section-marquee .marquee-container .marquee-wrapper {
          display: flex;
          width: fit-content;
          animation: marquee-scroll var(--marquee-speed, 30s) linear infinite; }
          body .section.section-marquee .marquee-container .marquee-wrapper .marquee-group {
            display: flex;
            flex-shrink: 0; }
            body .section.section-marquee .marquee-container .marquee-wrapper .marquee-group img {
              width: auto;
              display: block;
              flex-shrink: 0; }
    body .section.section-stickyscroll {
      position: relative; }
      body .section.section-stickyscroll .section .scroll-images {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        height: 600px;
        max-height: calc(100vh - 200px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1; }
        body .section.section-stickyscroll .section .scroll-images p {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          margin: 0;
          width: 100%;
          max-width: 100%;
          text-align: center;
          opacity: 0;
          transition: opacity 0.6s ease-in-out;
          pointer-events: none; }
          body .section.section-stickyscroll .section .scroll-images p.active {
            opacity: 1;
            z-index: 1;
            pointer-events: auto; }
          body .section.section-stickyscroll .section .scroll-images p img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto; }
      body .section.section-stickyscroll .section .scroll-body {
        padding: 8rem 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8rem 0; }
      body .section.section-stickyscroll .section.section.section-twopanel-right > .row {
        align-items: flex-start !important;
        display: block !important; }
        body .section.section-stickyscroll .section.section.section-twopanel-right > .row > .col {
          vertical-align: top;
          float: left; }
          body .section.section-stickyscroll .section.section.section-twopanel-right > .row > .col:first-child {
            position: relative;
            width: 40%;
            max-width: 40%; }
          body .section.section-stickyscroll .section.section.section-twopanel-right > .row > .col:last-child {
            width: 60%;
            max-width: 60%; }
    body .section.section-chart > .row > .col.col-chart, body .section.section-chart > .row > .col:has(div[data-highcharts-chart]) {
      margin-top: 3rem;
      margin-bottom: 3rem; }
    body .section.section-fourpanel > .row > .col {
      padding-left: 30px;
      padding-right: 30px; }
      body .section.section-fourpanel > .row > .col ul {
        padding-left: 26px; }
        body .section.section-fourpanel > .row > .col ul li {
          margin-bottom: 0.75rem; }
      body .section.section-fourpanel > .row > .col:first-child {
        margin-left: 15px;
        padding-left: 15px; }
      body .section.section-fourpanel > .row > .col:last-child {
        margin-right: 15px;
        padding-right: 15px; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
      padding-top: 0 !important; }
    body .section.section-fourpanel.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
      padding-top: 0 !important; }
    @media (max-width: 767px) {
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; }
      body .section.section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
        padding-top: 0 !important; } }
    body .section.section-twopanel-left {
      text-align: left; }
      body .section.section-twopanel-left > .row {
        align-items: center; }
        body .section.section-twopanel-left > .row > .col:first-child {
          flex: 0 0 60%;
          max-width: 60%;
          padding-right: var(--section-2column-gap); }
        body .section.section-twopanel-left > .row > .col:last-child {
          padding-left: 0; }
      body .section.section-twopanel-left.section-large > .row {
        align-items: center; }
        body .section.section-twopanel-left.section-large > .row > .col:first-child {
          flex: 0 0 80%;
          max-width: 80%;
          padding-right: var(--section-2column-gap); }
        body .section.section-twopanel-left.section-large > .row > .col:last-child {
          padding-left: 0; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-left.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
        padding-top: 0 !important; }
      @media (max-width: 767px) {
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; } }
    body .section.section-twopanel-right {
      text-align: left; }
      body .section.section-twopanel-right > .row {
        align-items: center; }
        body .section.section-twopanel-right > .row > .col:first-child {
          flex: 0 0 40%;
          max-width: 40%;
          padding-right: 0; }
        body .section.section-twopanel-right > .row > .col:last-child {
          padding-left: var(--section-2column-gap); }
      body .section.section-twopanel-right.section-large > .row {
        align-items: center; }
        body .section.section-twopanel-right.section-large > .row > .col:first-child {
          flex: 0 0 20%;
          max-width: 20%;
          padding-right: 0; }
        body .section.section-twopanel-right.section-large > .row > .col:last-child {
          padding-left: var(--section-2column-gap); }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right:not(.section-alt):not(.section-hero):not(.section-hero-inner):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.d-none):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse) {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-left.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-title.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-threepanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-fourpanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-twopanel.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-left.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-title.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-threepanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-fourpanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-twopanel.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt2:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt2 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-left.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-title.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-threepanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-fourpanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-twopanel.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-right.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-alt3:not(.d-none):not(.section-full) + .section-twopanel-left.section-alt3 {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-left.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-title.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-threepanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-fourpanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-twopanel.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-right.section-reverse {
        padding-top: 0 !important; }
      body .section.section-twopanel-right.section-reverse:not(.d-none):not(.section-full) + .section-twopanel-left.section-reverse {
        padding-top: 0 !important; }
      @media (max-width: 767px) {
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-title:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-threepanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-fourpanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; }
        body .section.section-twopanel-right:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) + .section-twopanel-left:not(.section-alt):not(.section-alt2):not(.section-alt3):not(.section-reverse):not(.section-full) {
          padding-top: 0 !important; } }
    body .section.section-alt {
      background-color: var(--section-background); }
      body .section.section-alt h1,
      body .section.section-alt h2,
      body .section.section-alt h3,
      body .section.section-alt h4,
      body .section.section-alt h5,
      body .section.section-alt h6,
      body .section.section-alt .h1,
      body .section.section-alt .h2,
      body .section.section-alt .h3,
      body .section.section-alt .h4,
      body .section.section-alt .h5,
      body .section.section-alt .h6,
      body .section.section-alt p,
      body .section.section-alt li {
        color: var(--section-background-font); }
      body .section.section-alt a {
        color: var(--section-font-link); }
    body .section.section-alt2 {
      background-color: var(--section-background2); }
      body .section.section-alt2 h1,
      body .section.section-alt2 h2,
      body .section.section-alt2 h3,
      body .section.section-alt2 h4,
      body .section.section-alt2 h5,
      body .section.section-alt2 h6,
      body .section.section-alt2 .h1,
      body .section.section-alt2 .h2,
      body .section.section-alt2 .h3,
      body .section.section-alt2 .h4,
      body .section.section-alt2 .h5,
      body .section.section-alt2 .h6,
      body .section.section-alt2 p,
      body .section.section-alt2 li {
        color: var(--section-background2-font); }
      body .section.section-alt2 a {
        color: var(--section-font-link); }
    body .section.section-alt3 {
      background-color: var(--section-background3); }
      body .section.section-alt3 h1,
      body .section.section-alt3 h2,
      body .section.section-alt3 h3,
      body .section.section-alt3 h4,
      body .section.section-alt3 h5,
      body .section.section-alt3 h6,
      body .section.section-alt3 .h1,
      body .section.section-alt3 .h2,
      body .section.section-alt3 .h3,
      body .section.section-alt3 .h4,
      body .section.section-alt3 .h5,
      body .section.section-alt3 .h6,
      body .section.section-alt3 p,
      body .section.section-alt3 li {
        color: var(--section-background3-font); }
      body .section.section-alt3 a {
        color: var(--section-font-link); }
    body .section.section-reverse {
      background-color: var(--section-background-reverse); }
      body .section.section-reverse h1,
      body .section.section-reverse h2,
      body .section.section-reverse h3,
      body .section.section-reverse h4,
      body .section.section-reverse h5,
      body .section.section-reverse h6,
      body .section.section-reverse .h1,
      body .section.section-reverse .h2,
      body .section.section-reverse .h3,
      body .section.section-reverse .h4,
      body .section.section-reverse .h5,
      body .section.section-reverse .h6,
      body .section.section-reverse p,
      body .section.section-reverse li {
        color: var(--section-font-reverse); }
      body .section.section-reverse a {
        color: var(--section-font-link); }
    body .section.section-callout {
      background-color: var(--section-background); }
      body .section.section-callout h1,
      body .section.section-callout h2,
      body .section.section-callout h3,
      body .section.section-callout h4,
      body .section.section-callout h5,
      body .section.section-callout h6,
      body .section.section-callout .h1,
      body .section.section-callout .h2,
      body .section.section-callout .h3,
      body .section.section-callout .h4,
      body .section.section-callout .h5,
      body .section.section-callout .h6,
      body .section.section-callout p,
      body .section.section-callout li {
        color: var(--section-background-font); }
    body .section.section-precta {
      background-color: var(--section-background);
      padding: 4rem 4rem 0 4rem; }
      body .section.section-precta h1,
      body .section.section-precta h2,
      body .section.section-precta h3,
      body .section.section-precta h4,
      body .section.section-precta h5,
      body .section.section-precta h6,
      body .section.section-precta .h1,
      body .section.section-precta .h2,
      body .section.section-precta .h3,
      body .section.section-precta .h4,
      body .section.section-precta .h5,
      body .section.section-precta .h6,
      body .section.section-precta p,
      body .section.section-precta li {
        color: var(--section-background-font); }
    body .section.narrow {
      padding: 0; }
  @media (max-width: 767px) {
    body .section {
      padding: 2.5rem 1.5rem !important; }
      body .section .row {
        display: block !important; }
        body .section .row > .col {
          max-width: 100% !important;
          padding-left: 15px !important;
          padding-right: 15px !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          margin-bottom: 2rem; }
          body .section .row > .col .autocolumn-2 {
            column-count: 1;
            column-gap: 0;
            list-style-position: inside; }
          body .section .row > .col .autocolumn-3 {
            column-count: 1;
            column-gap: 0;
            list-style-position: inside; }
      body .section.section-headerbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important; }
      body .section.section-navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem; }
      body .section.section-title + .section {
        padding-top: 0 !important; }
      body .section.section-kpis > .row > .col {
        margin-bottom: 0; }
      body .section.section-marquee {
        padding: 0 !important; }
      body .section.narrow {
        padding: 0 !important; }
      body .section.section-twopanel-right > .row > .col:first-child p {
        text-align: center; }
        body .section.section-twopanel-right > .row > .col:first-child p > img {
          width: 80%; }
      body .section.section-twopanel-left > .row > .col:last-child p {
        text-align: center; }
        body .section.section-twopanel-left > .row > .col:last-child p > img {
          width: 80%; } }
  @media print {
    body .section.section-navbar, body .section.section-headerbar, body .section.section-footer {
      display: none !important; } }
  body .panel-actions {
    float: right;
    text-align: right;
    margin-left: 3em;
    margin-bottom: 0; }
  body .badge.badge-light {
    color: var(--section-font-reverse);
    background-color: #E0E0E0; }
  body .badge.badge-primary {
    color: var(--text-primary);
    background-color: #A0B9D9; }
  body blockquote {
    border-left: solid 3px #FDB913;
    text-align: left;
    padding: 0 2rem; }
    body blockquote > *:last-child {
      margin-bottom: 0; }
  body .cell-css.cell-learnmore:after {
    font-family: "FontAwesome";
    content: "\f105";
    color: var(--section-font-link);
    position: relative;
    margin-left: 0.45rem; }
  body code {
    padding: 3px 0.75rem;
    border-radius: 0.5rem;
    margin-left: 5px;
    margin-right: 5px; }
  body .card {
    box-shadow: none; }
    body .card .card-body img {
      display: inline-block; }
      body .card .card-body img[style*="float: left"], body .card .card-body img[style*="float:left"] {
        margin-right: 2rem; }
      body .card .card-body img[style*="float: right"],
      body .card .card-body img [style*="float:right"] {
        margin-left: 2rem;
        display: inline-block; }
    body .card.card-primary {
      padding: 0.5rem;
      background: linear-gradient(135deg, #013069 0%, #011936 100%); }
      body .card.card-primary .card-body h3 {
        color: var(--section-font-primary);
        margin-bottom: 0;
        color: #FDB913; }
      body .card.card-primary .card-body .subtitle {
        font-size: 1rem;
        font-weight: 600;
        padding: 0.1rem 0.65rem;
        border-left: solid 3px #FDB913;
        color: var(--section-font-primary); }
      body .card.card-primary .card-body p {
        color: var(--section-font-primary); }
        body .card.card-primary .card-body p img.bottom-cover {
          max-width: calc(100% + 3rem);
          border-radius: 1rem;
          position: relative;
          margin: 0 -1.75rem -1.75rem -1.75rem; }
  body .card-contact {
    background-color: inherit;
    box-shadow: none;
    border-radius: 0;
    align-items: center;
    flex-direction: row;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0; }
    body .card-contact .avatar-wrapper {
      flex-shrink: 0;
      overflow: hidden;
      border-radius: 50%;
      background-color: #FFFFFF;
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      margin-right: 0.5rem;
      padding: 0.2rem; }
      body .card-contact .avatar-wrapper .avatar {
        width: 64px;
        aspect-ratio: 1;
        border-radius: 50%;
        background-position: top center;
        background-size: cover; }
    body .card-contact .card-body {
      padding: 0;
      margin-right: 2rem; }
      body .card-contact .card-body .card-text.contact-name {
        font-weight: bold; }
      body .card-contact .card-body .card-text.contact-email {
        font-size: 0.8em;
        text-decoration: underline; }
      body .card-contact .card-body .card-text.contact-phone {
        font-size: 0.8em; }
      body .card-contact .card-body .card-text a {
        color: #FFFFFF; }
  body .dropdown .dropdown-toggle:after {
    font-family: "FontAwesome";
    content: "\f107";
    margin-left: 0.25rem; }
  body .dropdown .dropdown-toggle:after {
    vertical-align: 0;
    border-width: 0;
    margin-left: 0.45rem; }
  body .dropdown .dropdown-menu {
    border-radius: 0.5rem;
    border-width: 0; }
  body img.img-thumbnail {
    border-radius: 1rem;
    padding: 0;
    border-width: 0;
    background-color: transparent; }
  body div:empty {
    display: none; }
    body div:empty.dropdown-divider {
      display: block; }
    body div:empty.modal-backdrop {
      display: block; }
  body p:empty {
    display: none; }
  body ul,
  body ol {
    margin-bottom: 1rem; }
  body #gda-edit {
    display: block;
    position: fixed;
    bottom: 0;
    width: 50px;
    right: 0.5rem;
    background-color: #011A3A;
    z-index: 1;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 1.15rem; }
    body #gda-edit a {
      color: #FFFFFF;
      padding-top: 0.25rem;
      display: block; }
  body .modal .modal-header {
    padding: 1rem 2rem; }
  body .modal .modal-body {
    padding: 1.5rem 2rem; }
  body .nav-tabs {
    border-width: 0; }
    body .nav-tabs .nav-link {
      font-weight: bold;
      color: #9E9E9E;
      border-top-width: 0;
      border-left-width: 0;
      border-right-width: 0;
      border-bottom: solid 2px transparent; }
      body .nav-tabs .nav-link.active {
        color: #011A3A;
        border-bottom-color: #011A3A; }
        body .nav-tabs .nav-link.active:hover {
          border-bottom-color: #011A3A; }
      body .nav-tabs .nav-link:hover {
        border-bottom-color: #E0E0E0; }
      body .nav-tabs .nav-link:active {
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0; }
    body .nav-tabs + .tab-content {
      text-align: left;
      margin-top: 3em; }
  body .table thead tr th {
    font-family: var(--heading-font-family);
    font-weight: 500; }

/* Defining the movement */
@keyframes blueGradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body .section {
  padding: 5rem 8rem; }
  body .section hr {
    margin: 3rem 0; }
  body .section p a.btn.btn-primary {
    color: #011A3A; }
  body .section.section-hero {
    background-color: var(--section-background);
    color: var(--section-font-primary);
    padding: 0;
    height: 700px; }
    body .section.section-hero > .row {
      height: auto;
      margin: 0; }
      body .section.section-hero > .row > .col {
        padding: 0; }
        body .section.section-hero > .row > .col h1 {
          font-weight: 700; }
        body .section.section-hero > .row > .col .subtitle {
          line-height: 1.5;
          font-size: 1.5rem; }
  body .section.section-hero-left {
    background-color: var(--section-background);
    color: var(--section-font-primary);
    padding: 0;
    height: 760px; }
  body .section.section-hero-inner, body .section.section-hero-inner-right, body .section.section-hero-inner-left {
    background-color: var(--section-background);
    color: var(--section-font-primary);
    padding-top: calc(86px + 4rem);
    padding-bottom: 4rem; }
    body .section.section-hero-inner > .row > .col, body .section.section-hero-inner-right > .row > .col, body .section.section-hero-inner-left > .row > .col {
      padding-left: 15px;
      padding-right: 30%; }
      body .section.section-hero-inner > .row > .col:has(+ .col), body .section.section-hero-inner-right > .row > .col:has(+ .col), body .section.section-hero-inner-left > .row > .col:has(+ .col) {
        padding-right: 15px; }
        body .section.section-hero-inner > .row > .col:has(+ .col) + .col, body .section.section-hero-inner-right > .row > .col:has(+ .col) + .col, body .section.section-hero-inner-left > .row > .col:has(+ .col) + .col {
          padding-right: 15px;
          padding-left: var(--section-2column-gap); }
    body .section.section-hero-inner .fa:before, body .section.section-hero-inner-right .fa:before, body .section.section-hero-inner-left .fa:before {
      color: var(--section-font-primary); }
    body .section.section-hero-inner h1, body .section.section-hero-inner-right h1, body .section.section-hero-inner-left h1 {
      font-weight: 700;
      font-size: 3rem; }
    body .section.section-hero-inner .headertitle, body .section.section-hero-inner-right .headertitle, body .section.section-hero-inner-left .headertitle {
      font-size: 1rem;
      font-weight: 600;
      padding: 0.1rem 0.65rem;
      border-left: solid 3px #FDB913; }
      body .section.section-hero-inner .headertitle:has(> a), body .section.section-hero-inner-right .headertitle:has(> a), body .section.section-hero-inner-left .headertitle:has(> a) {
        padding-left: 0;
        border-left-width: 0px; }
        body .section.section-hero-inner .headertitle:has(> a) a, body .section.section-hero-inner-right .headertitle:has(> a) a, body .section.section-hero-inner-left .headertitle:has(> a) a {
          color: #FFFFFF; }
    body .section.section-hero-inner .subtitle, body .section.section-hero-inner-right .subtitle, body .section.section-hero-inner-left .subtitle {
      line-height: 1.5;
      font-size: 1.25rem;
      opacity: 0.75; }
    body .section.section-hero-inner .badge.badge-primary, body .section.section-hero-inner-right .badge.badge-primary, body .section.section-hero-inner-left .badge.badge-primary {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
      margin-left: 0;
      margin-right: 0.5em;
      margin-top: 1.5rem; }
    body .section.section-hero-inner .labels a, body .section.section-hero-inner-right .labels a, body .section.section-hero-inner-left .labels a {
      color: #FFFFFF;
      font-family: var(--heading-font-family);
      font-size: 1.1rem;
      font-weight: 600;
      display: inline-block;
      margin-right: 10px;
      position: relative;
      background-color: #2F588E;
      border-radius: 1.5rem;
      padding: 0.7rem 1.4rem; }
      body .section.section-hero-inner .labels a:before, body .section.section-hero-inner-right .labels a:before, body .section.section-hero-inner-left .labels a:before {
        background-color: #FDB913;
        padding: 0.6rem;
        border-radius: 50%;
        font-size: 1.25rem;
        font-family: 'Material Symbols Rounded';
        display: inline-block;
        vertical-align: middle;
        text-transform: none;
        word-wrap: normal;
        line-height: 1;
        font-weight: normal;
        font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        color: var(--section-font-reverse);
        margin-right: 10px;
        position: relative;
        top: -2px; }
      body .section.section-hero-inner .labels a[data-id="0"]:before, body .section.section-hero-inner-right .labels a[data-id="0"]:before, body .section.section-hero-inner-left .labels a[data-id="0"]:before {
        content: "\e0f0"; }
      body .section.section-hero-inner .labels a[data-id="1"]:before, body .section.section-hero-inner-right .labels a[data-id="1"]:before, body .section.section-hero-inner-left .labels a[data-id="1"]:before {
        content: "\f3e7"; }
      body .section.section-hero-inner .labels a[data-id="2"]:before, body .section.section-hero-inner-right .labels a[data-id="2"]:before, body .section.section-hero-inner-left .labels a[data-id="2"]:before {
        content: "\e51e"; }
      body .section.section-hero-inner .labels a[data-id="3"]:before, body .section.section-hero-inner-right .labels a[data-id="3"]:before, body .section.section-hero-inner-left .labels a[data-id="3"]:before {
        content: "\e029"; }
  body .section.section-hero-inner-right > .row > .col:last-child {
    padding-left: 0; }
  body .section.section-threepanel > .row > .col {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    body .section.section-threepanel > .row > .col .material-symbols-outlined,
    body .section.section-threepanel > .row > .col .material-symbols-rounded {
      font-size: 2rem;
      background-color: #FDB913;
      padding: 1rem;
      border-radius: 50%; }
    body .section.section-threepanel > .row > .col > *:last-child {
      margin-bottom: 0; }
    body .section.section-threepanel > .row > .col:nth-child(2) {
      border-left: 1px solid #E0E0E0;
      border-right: 1px solid #E0E0E0; }
    body .section.section-threepanel > .row > .col div.feature {
      padding: 3rem 2rem; }
      body .section.section-threepanel > .row > .col div.feature a {
        color: var(--section-font-primary); }
      body .section.section-threepanel > .row > .col div.feature *:last-child {
        margin-bottom: 0; }
  body .section.section-threepanel > .row:has(.col .feature) > .col {
    border-width: 0; }
  body .section.section-threepanel > .row:not(:has(.col .material-symbols-rounded)):not(:has(.col img)):not(:has(.col .feature)) {
    align-items: center; }
  body .section.section-fourpanel > .row > .col {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    body .section.section-fourpanel > .row > .col > *:last-child {
      margin-bottom: 0; }
    body .section.section-fourpanel > .row > .col:nth-child(2) {
      border-left: 1px solid #E0E0E0;
      border-right: 1px solid #E0E0E0; }
    body .section.section-fourpanel > .row > .col:nth-child(3) {
      border-right: 1px solid #E0E0E0; }
  body .section.section-fourpanel > .row:not(:has(.col .material-symbols-rounded)):not(:has(.col img)):not(:has(.col .feature)) {
    align-items: center; }
  body .section.section-alt2 {
    color: var(--section-font-reverse); }
    body .section.section-alt2 h2,
    body .section.section-alt2 h3,
    body .section.section-alt2 p,
    body .section.section-alt2 li {
      color: var(--section-font-reverse); }
  body .section.section-alt3 {
    background-color: var(--section-background3);
    color: var(--section-font-reverse); }
  body .section.section-callout {
    background-color: var(--section-background);
    color: var(--section-font-primary); }
  body .section.section-cta {
    background-color: var(--section-background);
    color: var(--section-font-primary);
    background: linear-gradient(135deg, #013069 0%, #011936 100%);
    background-size: 400% 400%; }
    body .section.section-cta h1 {
      font-size: 3rem; }
    body .section.section-cta p {
      font-size: 1.15rem; }
      body .section.section-cta p a.btn-primary {
        margin-top: 2rem;
        padding: 1rem 2.25rem;
        font-size: 1.25rem;
        line-height: 1.5;
        color: #011A3A; }
  body .section #testimonials h4 {
    font-weight: 500;
    line-height: 1.5; }
  body .section #testimonials p {
    font-size: 1.15rem; }
  body .section.section-index h3 .fa {
    margin-left: 1rem; }
  body .section.section-index .list-group {
    margin-bottom: 2rem; }
    body .section.section-index .list-group .list-group-item {
      border-width: 0;
      border-bottom: solid 1px #E0E0E0;
      background-color: inherit; }
      body .section.section-index .list-group .list-group-item .badge.badge-light {
        position: relative;
        top: 3px; }

@media (max-width: 767px) {
  body .section.section-index .row .col {
    margin-bottom: 0; }
  body .section.section-index .list-group {
    margin-bottom: 0; } }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/about/"] .section #gdatestimonials:before {
  content: "What our clients are saying";
  text-transform: capitalize;
  display: block;
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  margin-top: 1.25rem; }

body[data-path="/about/"] .section #gdateam .speakers .card-speaker {
  background-color: inherit; }
  body[data-path="/about/"] .section #gdateam .speakers .card-speaker .image-wrapper {
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem; }
  body[data-path="/about/"] .section #gdateam .speakers .card-speaker:hover {
    background-color: #FFFFFF; }
    body[data-path="/about/"] .section #gdateam .speakers .card-speaker:hover .image-wrapper {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/gdablog/"] .section #searchresults .card {
  margin-bottom: 2rem; }
  body[data-path="/gdablog/"] .section #searchresults .card .card-body {
    padding: 2rem; }
  body[data-path="/gdablog/"] .section #searchresults .card:first-child {
    margin-top: 0; }

body[data-path="/gdablog/"] .section#index > .row {
  align-items: start; }
  body[data-path="/gdablog/"] .section#index > .row > .col#sidepanel {
    width: 400px; }
  body[data-path="/gdablog/"] .section#index > .row > .col#searchresults {
    max-width: 100%;
    flex: 0 1 calc(100% - 400px); }

body[data-path="/gdablog/"] .section#index2 .speakers .card {
  width: 530px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 2rem; }
  body[data-path="/gdablog/"] .section#index2 .speakers .card .image-wrapper.default {
    background: linear-gradient(135deg, #013069 0%, #011936 100%);
    color: var(--section-font-primary);
    height: 330px;
    border-radius: 1rem;
    position: relative; }
    body[data-path="/gdablog/"] .section#index2 .speakers .card .image-wrapper.default:before {
      display: block;
      content: "The Pulse of the Speaking Industry";
      font-size: 1rem;
      font-weight: 600;
      padding: 0.1rem 2rem 0.1rem 0.65rem;
      border-left: solid 3px #FDB913;
      color: var(--section-font-primary);
      top: 2rem;
      left: 2rem;
      position: absolute; }
    body[data-path="/gdablog/"] .section#index2 .speakers .card .image-wrapper.default:after {
      display: block;
      content: " ";
      background-image: url(https://www.gdaspeakers.com/img/logo-reverse.png);
      background-size: contain;
      width: 105px;
      height: 50px;
      bottom: 2rem;
      right: 2rem;
      position: absolute; }
  body[data-path="/gdablog/"] .section#index2 .speakers .card .image-wrapper a {
    display: block;
    height: 330px;
    border-radius: 1rem; }
  body[data-path="/gdablog/"] .section#index2 .speakers .card .card-body p:has(.badge) {
    display: none; }

.btn {
  text-transform: uppercase;
  font-family: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, #FECC53 0%, #FDB913 100%);
  border-width: 0;
  position: relative;
  transition: none; }
  .btn.btn-primary:hover {
    background-color: #FDB402; }
  .btn:hover {
    background-image: none;
    background-color: #FDB402; }
  .btn.btn-thin {
    padding: 0.75rem 2rem; }
  .btn:not([href]):not(.disabled):not([disabled])[data-toggle] {
    color: var(--section-font-primary);
    opacity: 0.65; }

form {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto; }
  form .input-group input.form-control-lg {
    padding: 1.5rem;
    font-size: 1.15rem; }
  form .input-group input.btn.btn-primary {
    padding: .75rem 2rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    color: var(--section-font-reverse); }

.section.section-alt2 .btn.btn-primary {
  background: linear-gradient(to bottom, #013A81 0%, #002F69 100%);
  color: var(--section-font-primary); }
  .section.section-alt2 .btn.btn-primary:hover {
    background-image: none;
    background-color: #012654; }

.section .carousel .carousel-item {
  padding-bottom: 3rem; }
  .section .carousel .carousel-item .carousel-caption {
    position: relative;
    right: initial;
    bottom: initial;
    left: initial; }

.section .carousel .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 0.35rem; }

.section.section-hero .carousel .carousel-item {
  padding: 6rem 8rem;
  background-size: cover;
  height: 700px; }
  .section.section-hero .carousel .carousel-item .carousel-caption {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: inherit;
    /* Stretch the container to the full height/width of the slide */
    top: 0;
    bottom: 0;
    left: 8rem;
    /* Keeps the default Bootstrap side padding */
    right: 40%; }
    .section.section-hero .carousel .carousel-item .carousel-caption a.btn-primary {
      color: var(--section-font-reverse);
      margin-top: 2rem;
      font-size: 1.25rem; }

body .section div.feature {
  padding: 4rem;
  background: linear-gradient(135deg, #013069 0%, #011936 100%);
  color: var(--section-font-primary);
  border-radius: 1rem;
  position: relative; }
  body .section div.feature h1 {
    font-size: 4rem; }
  body .section div.feature h1,
  body .section div.feature h2,
  body .section div.feature h3,
  body .section div.feature h4,
  body .section div.feature h5,
  body .section div.feature h6 {
    color: var(--section-font-primary); }
  body .section div.feature .material-symbols-rounded {
    color: var(--section-font-reverse); }
  body .section div.feature p,
  body .section div.feature li {
    color: var(--section-font-primary);
    font-size: 1.25rem; }
    body .section div.feature p.subtitle,
    body .section div.feature li.subtitle {
      text-transform: uppercase;
      margin-bottom: 0;
      font-weight: 500;
      opacity: 0.5; }
    body .section div.feature p a,
    body .section div.feature li a {
      color: var(--section-font-primary); }
      body .section div.feature p a.btn-primary,
      body .section div.feature li a.btn-primary {
        background: linear-gradient(to bottom, #FECC53 0%, #FDB913 100%);
        color: var(--section-font-reverse);
        margin-top: 2rem;
        font-size: 1.25rem; }
        body .section div.feature p a.btn-primary:hover,
        body .section div.feature li a.btn-primary:hover {
          background-image: none;
          background-color: #FDB402; }
  body .section div.feature ul.feature {
    list-style: none;
    padding: 0;
    margin: 0; }
    body .section div.feature ul.feature li {
      padding-left: 0; }
      body .section div.feature ul.feature li:before {
        display: none; }

body .section ul.feature,
body .section ol.feature {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  margin-top: 2rem; }
  body .section ul.feature > li,
  body .section ol.feature > li {
    position: relative;
    padding-left: 5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem !important;
    border-bottom: 1px solid #e0e0e0; }
    body .section ul.feature > li > h4,
    body .section ul.feature > li > h5,
    body .section ol.feature > li > h4,
    body .section ol.feature > li > h5 {
      margin-bottom: 1rem; }
    body .section ul.feature > li::before,
    body .section ol.feature > li::before {
      content: " ";
      position: absolute;
      left: 0;
      top: 3px;
      width: 2.5rem;
      height: 2.5rem;
      background-color: var(--section-background);
      color: var(--section-font-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.1rem; }
    body .section ul.feature > li > p,
    body .section ol.feature > li > p {
      margin-bottom: 0; }
    body .section ul.feature > li:last-child,
    body .section ol.feature > li:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0; }

body .section .conditional-wrap ul.feature li:last-child {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem; }

body .section ul.feature > li:before {
  background-color: #FDB913;
  font-family: "Material Symbols Rounded";
  content: "\e838";
  font-weight: 100;
  font-size: 1.5rem;
  color: var(--section-font-reverse); }

body .section ol.feature {
  counter-reset: process-counter; }
  body .section ol.feature > li {
    counter-increment: process-counter; }
    body .section ol.feature > li::before {
      content: counter(process-counter); }

body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature {
  padding: 4rem;
  background: linear-gradient(135deg, #013069 0%, #011936 100%);
  color: var(--section-font-primary);
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  width: 55%;
  max-width: 55%;
  text-align: center; }
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h1 {
    font-size: 4rem; }
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h1,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h2,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h3,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h4,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h5,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature h6 {
    color: var(--section-font-primary); }
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature .material-symbols-rounded {
    color: var(--section-font-reverse); }
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature p,
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature li {
    color: var(--section-font-primary);
    font-size: 1.25rem; }
    body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature p.subtitle,
    body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature li.subtitle {
      text-transform: uppercase;
      margin-bottom: 0;
      font-weight: 500;
      opacity: 0.5; }
    body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature p a,
    body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature li a {
      color: var(--section-font-primary); }
      body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature p a.btn-primary,
      body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature li a.btn-primary {
        background: linear-gradient(to bottom, #FECC53 0%, #FDB913 100%);
        color: var(--section-font-reverse);
        margin-top: 2rem;
        font-size: 1.25rem; }
        body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature p a.btn-primary:hover,
        body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature li a.btn-primary:hover {
          background-image: none;
          background-color: #FDB402; }
  body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature ul.feature {
    list-style: none;
    padding: 0;
    margin: 0; }
    body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature ul.feature li {
      padding-left: 0; }
      body .section.section-twopanel-left > .row:has(.col-feature) > .col.col-feature ul.feature li:before {
        display: none; }

body .section.section-twopanel-left > .row:has(.col-feature) > .col:last-child {
  padding-left: var(--section-2column-gap);
  display: flex;
  flex-direction: column;
  justify-content: center; }

body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature {
  padding: 4rem;
  background: linear-gradient(135deg, #013069 0%, #011936 100%);
  color: var(--section-font-primary);
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  width: 55%;
  max-width: 55%;
  text-align: center; }
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h1 {
    font-size: 4rem; }
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h1,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h2,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h3,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h4,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h5,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature h6 {
    color: var(--section-font-primary); }
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature .material-symbols-rounded {
    color: var(--section-font-reverse); }
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature p,
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature li {
    color: var(--section-font-primary);
    font-size: 1.25rem; }
    body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature p.subtitle,
    body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature li.subtitle {
      text-transform: uppercase;
      margin-bottom: 0;
      font-weight: 500;
      opacity: 0.5; }
    body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature p a,
    body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature li a {
      color: var(--section-font-primary); }
      body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature p a.btn-primary,
      body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature li a.btn-primary {
        background: linear-gradient(to bottom, #FECC53 0%, #FDB913 100%);
        color: var(--section-font-reverse);
        margin-top: 2rem;
        font-size: 1.25rem; }
        body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature p a.btn-primary:hover,
        body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature li a.btn-primary:hover {
          background-image: none;
          background-color: #FDB402; }
  body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature ul.feature {
    list-style: none;
    padding: 0;
    margin: 0; }
    body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature ul.feature li {
      padding-left: 0; }
      body .section.section-twopanel-right > .row:has(.col-feature) > .col.col-feature ul.feature li:before {
        display: none; }

body .section.section-twopanel-right > .row:has(.col-feature) > .col:first-child {
  padding-right: var(--section-2column-gap);
  display: flex;
  flex-direction: column;
  justify-content: center; }

@media (max-width: 767px) {
  body .section > .row > .col.col-feature {
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: auto !important; }
  body .section > .row > .col > div.feature {
    padding: 2rem; }
  body .section > .row > .col > ul.feature p,
  body .section > .row > .col > ol.feature p {
    text-align: left !important; } }

.section.section-footer {
  padding: 4rem 8rem;
  background-color: var(--section-background-reverse);
  font-family: var(--heading-font-family); }
  .section.section-footer .col {
    text-align: left; }
    .section.section-footer .col .ctct-inline-form .ctct-form-defaults {
      padding: 0; }
      .section.section-footer .col .ctct-inline-form .ctct-form-defaults form {
        max-width: 100%; }
        .section.section-footer .col .ctct-inline-form .ctct-form-defaults form #gdpr_text {
          display: none; }
      .section.section-footer .col .ctct-inline-form .ctct-form-defaults .g-recaptcha {
        display: none; }
    .section.section-footer .col#footer-gda a:has(img) img {
      width: 70%; }
    .section.section-footer .col#footer-gda a:has(img) + p {
      font-size: 1.1rem;
      margin-top: 1.5rem;
      font-weight: 500; }
    .section.section-footer .col h5 {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 1.1rem !important;
      padding: 0.3rem 0.65rem;
      margin-bottom: 10px;
      border-left: solid 3px #FDB913; }
    .section.section-footer .col .nav .nav-item .nav-link {
      padding: 0.2rem calc(0.65rem + 3px);
      font-weight: 500; }
    .section.section-footer .col #footer-social a:has(svg) {
      padding: 0.25rem 0.5rem 0.45rem 0.5rem;
      margin-left: 0.5rem;
      display: inline-block;
      background-color: #F7F5F2;
      border-radius: 0.5rem; }
      .section.section-footer .col #footer-social a:has(svg) svg {
        width: 20px;
        height: 20px;
        fill: var(--section-font-link); }
  .section.section-footer p {
    color: #9E9E9E; }

form .input-group input.form-control-lg {
  padding: 1.5rem;
  font-size: 1.15rem; }

form .input-group .input-group-append .btn.btn-primary {
  padding: .75rem 2rem;
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
  color: var(--section-font-reverse); }
  form .input-group .input-group-append .btn.btn-primary:hover {
    box-shadow: none; }

#app-environment-header {
  width: 80px;
  position: absolute;
  top: 0;
  right: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  height: 38px;
  padding: 0 1rem;
  z-index: 2; }
  #app-environment-header span:before {
    font-size: 1.5rem; }

.section.section-headerbar {
  background-color: #011A3A;
  font-size: 0.9rem; }
  .section.section-headerbar #search {
    text-align: right; }
    .section.section-headerbar #search form {
      max-width: none; }
      .section.section-headerbar #search form input {
        background-color: transparent;
        padding: 0;
        font-size: .75rem;
        line-height: normal;
        height: 24px;
        border-width: 0;
        border-bottom: solid 1px #FFFFFF;
        color: #FFFFFF;
        border-radius: 0;
        float: right;
        transition: width 0.4s ease-in-out;
        width: 200px;
        box-shadow: none; }
        .section.section-headerbar #search form input::placeholder {
          color: #FFFFFF;
          font-style: italic;
          opacity: 1; }
        .section.section-headerbar #search form input:focus {
          width: 70%; }
        .section.section-headerbar #search form input:not(:placeholder-shown) {
          width: 70%; }
  .section.section-headerbar #gda {
    max-width: 200px;
    width: 200px; }
    .section.section-headerbar #gda .media .avatar-wrapper {
      margin-right: 0.75rem;
      flex-shrink: 0; }
    .section.section-headerbar #gda .media p {
      margin: 0;
      padding: 5px 0;
      line-height: 1rem;
      color: #FFFFFF;
      font-size: 1em; }
    .section.section-headerbar #gda .media:hover .dropdown-menu {
      display: block; }
    .section.section-headerbar #gda .dropdown-menu {
      top: 96%;
      left: -0.75rem;
      border-width: 0;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }
  .section.section-headerbar #client-portal, .section.section-headerbar #speaker-portal {
    opacity: 0.7; }
  .section.section-headerbar #social {
    max-width: 550px;
    width: 550px;
    text-align: right; }
    .section.section-headerbar #social a {
      color: #FFFFFF;
      font-family: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
      display: inline-block;
      font-weight: 500;
      margin-left: 0.5rem; }
      .section.section-headerbar #social a svg {
        width: 20px;
        height: 20px;
        fill: white;
        opacity: 0.7; }
      .section.section-headerbar #social a img {
        width: 24px;
        display: inline-block; }
      .section.section-headerbar #social a#client-portal {
        margin-right: 2rem;
        position: relative;
        top: 0.2rem; }
      .section.section-headerbar #social a#speaker-portal {
        margin-right: 2rem;
        position: relative;
        top: 0.2rem; }
  .section.section-headerbar.section-gdabar {
    background-color: #343a40; }
    .section.section-headerbar.section-gdabar .row :first-child .media .avatar-wrapper {
      margin-right: 0.75rem; }
    .section.section-headerbar.section-gdabar .row :first-child .media p {
      margin: 0;
      padding: 5px 0;
      line-height: 1rem;
      color: #FFFFFF;
      font-size: 1em; }
    .section.section-headerbar.section-gdabar .row .col .panel-actions .dropdown-menu {
      font-size: 0.9rem; }
      .section.section-headerbar.section-gdabar .row .col .panel-actions .dropdown-menu .dropdown-item {
        padding: .25rem 0.75rem; }

@media (max-width: 1390px) {
  .section.section-headerbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
    .section.section-headerbar #gda {
      display: none; } }

@media (max-width: 991px) {
  .section.section-headerbar > .row > .col {
    margin-bottom: 0; }
  .section.section-headerbar #speaker-portal {
    display: none !important; }
  .section.section-headerbar #client-portal {
    display: none !important; }
  .section.section-headerbar #search form input {
    float: none;
    width: 100%;
    transition: none; }
    .section.section-headerbar #search form input:focus {
      width: 100%; } }

@media (max-width: 768px) {
  .section.section-headerbar #social {
    display: none; } }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/"] .section #trendingtopics .row form {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto; }

body[data-path="/"] .section #trendingtopics .row.row-cols-4 {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  body[data-path="/"] .section #trendingtopics .row.row-cols-4 .col .card {
    background: linear-gradient(135deg, #013069 0%, #011936 100%);
    color: var(--section-font-primary);
    box-shadow: none;
    background-size: cover;
    background-position: top center; }
    body[data-path="/"] .section #trendingtopics .row.row-cols-4 .col .card .card-body {
      width: 100%;
      aspect-ratio: 1;
      font-weight: bold;
      padding: 3rem;
      display: flex;
      align-items: center;
      /* Vertical centering */
      justify-content: center;
      /* Horizontal centering */
      text-align: center; }
      body[data-path="/"] .section #trendingtopics .row.row-cols-4 .col .card .card-body a {
        color: var(--section-font-primary); }
    body[data-path="/"] .section #trendingtopics .row.row-cols-4 .col .card.default {
      background: linear-gradient(135deg, #013069 0%, #011936 100%) !important; }

body[data-path="/"][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-4 > .col {
  flex: 0 0 16.66%;
  max-width: 16.66%; }

.section .fa.gda {
  animation-fill-mode: both;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: tada;
  animation-timing-function: ease-in-out; }
  .section .fa.gda:before {
    font-family: "FontAwesome";
    content: "\f005";
    color: #FDB913; }

.section .bi:before {
  font-weight: 800 !important; }

.section .material-symbols-outlined {
  font-family: 'Material Symbols Rounded';
  font-size: 1.1em;
  position: relative;
  top: 0.15rem; }

a {
  color: #013A81; }
  a:hover {
    text-decoration: none; }
  a.more:after {
    font-family: bootstrap-icons;
    font-weight: 600;
    line-height: 1;
    vertical-align: -.125em;
    content: "\f138";
    padding-left: 3px; }
  a.read-smore__link {
    font-size: 0.9rem;
    cursor: pointer; }
    a.read-smore__link:after {
      font-family: "FontAwesome";
      content: "\f107";
      padding-left: 2px; }
    a.read-smore__link[data-clicked="true"]:after {
      font-family: "FontAwesome";
      content: "\f106";
      margin-left: 0.25rem; }
    a.read-smore__link[data-clicked="false"]:after {
      font-family: "FontAwesome";
      content: "\f107";
      margin-left: 0.25rem; }
  a[data-toggle="collapse"] {
    font-weight: bold; }
    a[data-toggle="collapse"]::after {
      font-family: "FontAwesome";
      margin-left: 0.25rem;
      color: #424242;
      font-weight: bold; }
    a[data-toggle="collapse"][aria-expanded='false']::after {
      content: "\f107"; }
    a[data-toggle="collapse"][aria-expanded='true']::after {
      content: "\f106"; }

.section.section-navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }
  .section.section-navbar .navbar {
    position: absolute;
    padding: 0;
    width: 100%;
    height: 86px;
    z-index: 10; }
    .section.section-navbar .navbar .navbar-brand {
      margin-right: 150px; }
      .section.section-navbar .navbar .navbar-brand img {
        height: 50px; }
    .section.section-navbar .navbar .navbar-collapse {
      font-family: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif; }
      .section.section-navbar .navbar .navbar-collapse .nav-item .nav-link {
        padding: 0 1.25rem;
        color: #FFFFFF;
        font-size: 1.1rem; }
      .section.section-navbar .navbar .navbar-collapse .nav-item a.btn-primary {
        color: var(--section-font-reverse);
        position: absolute;
        right: 0;
        top: 21%; }
      .section.section-navbar .navbar .navbar-collapse .nav-item > .dropdown-menu {
        z-index: 1; }
        .section.section-navbar .navbar .navbar-collapse .nav-item > .dropdown-menu .nav-item.dropdown-submenu .dropdown-menu.mega-menu {
          font-size: 0.9rem;
          background-color: var(--section-background2);
          max-width: 700px; }
        .section.section-navbar .navbar .navbar-collapse .nav-item > .dropdown-menu .nav-item.dropdown-submenu:hover .dropdown-menu.mega-menu, .section.section-navbar .navbar .navbar-collapse .nav-item > .dropdown-menu .nav-item.dropdown-submenu:focus .dropdown-menu.mega-menu {
          border-top-left-radius: 0 !important;
          border-bottom-left-radius: 0 !important; }
        .section.section-navbar .navbar .navbar-collapse .nav-item > .dropdown-menu:hover:has(.nav-item.dropdown-submenu:hover) {
          border-top-right-radius: 0 !important;
          border-bottom-right-radius: 0 !important;
          min-height: 480px;
          transition: height 0.4s ease-in-out; }
  .section.section-navbar hr {
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin: 0 !important;
    position: absolute;
    top: 86px;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 1; }

@media (max-width: 1360px) {
  .section.section-navbar .btn.btn-primary {
    display: none; } }

@media (max-width: 991px) {
  .section.section-navbar {
    background-color: var(--section-background); }
    .section.section-navbar > .row > .col {
      margin-bottom: 0; }
    .section.section-navbar .navbar {
      position: relative; }
    .section.section-navbar .navbar-collapse {
      background-color: #FFFFFF;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      color: #000000;
      padding: 1rem 1.5rem;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out; }
      .section.section-navbar .navbar-collapse.show {
        transform: translateX(0); }
        .section.section-navbar .navbar-collapse.show .navbar-toggler {
          position: absolute;
          right: 15px;
          z-index: 1; }
        .section.section-navbar .navbar-collapse.show .nav-item .nav-link {
          color: #000000;
          text-align: left;
          padding-left: 0;
          padding-top: 1rem;
          padding-bottom: 1rem;
          border-bottom: 1px solid #E0E0E0; }
        .section.section-navbar .navbar-collapse.show .nav-item > .dropdown-menu .nav-item.dropdown-submenu .dropdown-menu.mega-menu {
          display: none; }
        .section.section-navbar .navbar-collapse.show .nav-item > .dropdown-menu:hover:has(.nav-item.dropdown-submenu:hover) {
          min-height: initial;
          transition: none; } }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/podcast/"] .section .card .card-body {
  padding: 2rem; }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/proposals/"] .alert {
  text-align: center;
  color: #011A3A;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  border-width: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.3); }
  body[data-path="/proposals/"] .alert:before {
    display: none; }
  body[data-path="/proposals/"] .alert.alert-warning {
    background-color: #FDB913; }
  body[data-path="/proposals/"] .alert.alert-primary {
    background-color: var(--section-background);
    color: var(--section-font-primary); }

body[data-path="/proposals/"] .section.section-footer {
  padding-top: 0; }
  body[data-path="/proposals/"] .section.section-footer hr {
    margin-top: 0; }

body[data-path="/proposals/"] .section #gdalogo img {
  height: 50px; }

body[data-path="/proposals/"] .section#gdacontacts {
  background-color: var(--section-background);
  color: var(--section-font-primary);
  padding: 1.5rem 8rem; }
  body[data-path="/proposals/"] .section#gdacontacts .card.card-contact {
    flex-direction: row-reverse; }
    body[data-path="/proposals/"] .section#gdacontacts .card.card-contact .card-body {
      flex-grow: 0;
      flex-shrink: 0; }
    body[data-path="/proposals/"] .section#gdacontacts .card.card-contact:last-child .card-body {
      margin-right: 0; }
  body[data-path="/proposals/"] .section#gdacontacts > .row > .col:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 0;
    padding-right: 0; }

body[data-path="/proposals/"] .section#proposalpartnership {
  padding: 3rem 8rem; }
  body[data-path="/proposals/"] .section#proposalpartnership .row .col h5 {
    font-weight: 500;
    margin-bottom: 1rem; }
  body[data-path="/proposals/"] .section#proposalpartnership .row .col p:last-child {
    margin-bottom: 0; }

body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader {
  flex-basis: 66.66%;
  max-width: 66.66%; }
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader .logoclient {
    display: inline-block; }
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome h2,
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome h3,
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome h4,
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome h5,
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome h6 {
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: var(--heading6-font-size); }
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposalwelcomeheader #proposalwelcome i.fa {
    display: none; }

body[data-path="/proposals/"] .section#proposalheader .row .col#proposaleventsummary {
  background-color: #EAF1FB;
  border-radius: 1rem;
  padding: 1.5rem; }
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposaleventsummary h4 {
    font-size: 1rem;
    background-color: var(--section-background);
    color: var(--section-font-primary);
    padding: .5rem 1rem;
    border-radius: 0.5rem; }
  body[data-path="/proposals/"] .section#proposalheader .row .col#proposaleventsummary table {
    font-size: 0.9rem; }

body[data-path="/proposals/"] .section#proposalspeakers {
  text-align: left; }
  body[data-path="/proposals/"] .section#proposalspeakers .row .col a.btn {
    z-index: 1; }
  body[data-path="/proposals/"] .section#proposalspeakers .row .col > h3 {
    margin-top: 0; }
  body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker {
    box-shadow: none;
    padding: 1.25rem;
    flex-direction: row; }
    body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker > .card-body {
      padding-top: 1rem; }
    body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .image-wrapper {
      margin-right: 1rem;
      flex-shrink: 0; }
      body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .image-wrapper a {
        width: 210px;
        height: 250px;
        aspect-ratio: 210/250;
        display: block;
        background-size: cover;
        background-position: top center;
        border-radius: 1rem; }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .image-wrapper a.btn {
          margin-top: 1rem;
          height: auto;
          width: calc(210px / 2 - 0.5rem);
          aspect-ratio: initial;
          display: inline-block;
          margin-left: 0;
          margin-right: 0;
          border-radius: 0.5rem;
          background: none;
          background-color: #EAF1FB;
          font-size: var(--heading5-font-size);
          padding: 0.75rem 2rem 0.25rem 2rem; }
          body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .image-wrapper a.btn.disabled[data-qa="upselect"] {
            background-color: #43A047;
            color: #FFFFFF !important;
            border-width: 0;
            opacity: 1; }
          body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .image-wrapper a.btn + .btn {
            margin-left: 0.7rem; }
    body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker h4.speakername {
      margin-bottom: 1rem; }
    body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse {
      border: 1px solid #E0E0E0;
      box-shadow: none;
      padding: 1.25rem 0rem 1.75rem 0;
      border-radius: 1rem; }
      body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button {
        display: block;
        text-align: left;
        font-size: 1.1rem;
        font-family: var(--heading-font-family);
        background-color: inherit;
        border-width: 0;
        font-weight: 500;
        padding: 0 1.25rem;
        font-weight: 600;
        color: var(--section-font-link); }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button .material-symbols-rounded {
          background-color: #FDB913;
          padding: 0.5rem;
          border-radius: 50%;
          margin-right: 7px;
          color: var(--section-font-reverse) !important; }
          body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button .material-symbols-rounded.bg-success, body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button .material-symbols-rounded.bg-danger {
            color: #FFFFFF !important; }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button code {
          font-weight: normal; }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button:not([aria-expanded]) {
          cursor: pointer;
          pointer-events: none;
          color: var(--section-font-reverse); }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button[aria-expanded="true"]:after {
          font-family: "FontAwesome";
          content: "\f106";
          margin-left: 0.25rem;
          display: inline-block; }
        body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse button[aria-expanded="false"]:after {
          font-family: "FontAwesome";
          content: "\f107";
          margin-left: 0.25rem;
          display: inline-block; }
      body[data-path="/proposals/"] .section#proposalspeakers .row .col .card.card-speaker .card-collapse .card-body {
        padding-left: 4.2rem;
        padding-bottom: 0.5rem; }

body[data-path="/proposals/"] .section#speakersremoved .row .col {
  text-align: left; }
  body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker {
    box-shadow: none;
    flex-direction: row; }
    body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker .image-wrapper {
      height: 88px;
      overflow: hidden;
      margin-right: 1rem;
      flex-shrink: 0; }
      body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker .image-wrapper a {
        width: 88px;
        aspect-ratio: 1;
        display: block;
        background-size: cover;
        background-position: top center;
        border-radius: 1rem; }
    body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker .card-body {
      padding: 0;
      padding-top: 0.35rem; }
      body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker .card-body .speakeradd {
        z-index: 1;
        position: relative; }
      body[data-path="/proposals/"] .section#speakersremoved .row .col .card.card-speaker .card-body h5 {
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 0.5rem; }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/"][data-file="search-v3"] .section.section-hero-inner > .row > .col {
  padding-right: 15px; }
  body[data-path="/"][data-file="search-v3"] .section.section-hero-inner > .row > .col#search form {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto; }

body[data-path="/"][data-file="search-v3"] .section#search-main > .row {
  align-items: start; }
  body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-filters {
    flex: 1;
    max-width: 300px; }
  body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results {
    padding-left: 3rem;
    padding-right: 0; }
    body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results #search-sort {
      float: right;
      max-width: none;
      font-family: var(--font-family);
      font-size: 1rem; }
      body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results #search-sort select {
        margin-left: 5px; }
    body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results .clearsearch {
      font-family: var(--font-family);
      float: right;
      font-size: 1.25rem; }
    body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results .col.col-grid {
      padding-left: 0;
      padding-right: 0; }
    body[data-path="/"][data-file="search-v3"] .section#search-main > .row > .col#search-results h3 {
      margin-top: 0; }

body[data-path="/"][data-file="search-v3"] .section #search-filters form {
  max-width: 100%;
  margin: 0; }
  body[data-path="/"][data-file="search-v3"] .section #search-filters form .btn {
    width: 60%;
    margin-right: 2rem; }
  body[data-path="/"][data-file="search-v3"] .section #search-filters form h5,
  body[data-path="/"][data-file="search-v3"] .section #search-filters form h6 {
    margin-bottom: 0.5rem; }
  body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group {
    margin-bottom: 1rem; }
    body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group .list-group-item {
      border-width: 0;
      padding: 0;
      background-color: inherit; }
      body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group .list-group-item > label {
        padding-left: 26px;
        position: relative;
        margin-bottom: 0; }
        body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group .list-group-item > label input {
          position: absolute;
          left: 3px;
          top: 5px; }
      body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group .list-group-item > .list-group {
        margin-top: 0.25rem;
        margin-bottom: 0; }
        body[data-path="/"][data-file="search-v3"] .section #search-filters form .list-group .list-group-item > .list-group .list-group-item {
          padding-left: 26px; }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: calc(1350px - 3rem); }
  body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 25%;
    max-width: 25%; }
    body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="xxl"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="8"] {
      display: block; }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="xl"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: calc(1020px - 3rem); }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 990px; }
  body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 33%;
    max-width: 33%; }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 {
  max-width: 660px; }
  body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 > .col {
    flex: 0 0 50%;
    max-width: 50%; }
    body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="md"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
      display: block; }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="sm"] .section {
  padding: 2rem 4rem; }
  body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) {
    display: flex !important; }
    body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 {
      max-width: 660px; }
      body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 > .col {
        flex: 0 0 50%;
        max-width: 50%; }
        body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="sm"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
          display: block; }

body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="xs"] .section .row:has(.col-grid) > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
  display: block; }

body[data-path="/"][data-file="search-v3"] .tooltip .tooltip-inner {
  text-align: left; }

@media (min-width: 1180px) {
  body[data-path="/"][data-file="search-v3"] .section .row #search-filters {
    display: block !important; }
  body[data-path="/"][data-file="search-v3"] .section .row .search-filter-toggler {
    display: none; } }

@media (min-width: 1251px) and (max-width: 1470px) {
  body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 {
    max-width: 660px; }
    body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 > .col {
      flex: 0 0 50%;
      max-width: 50%; }
      body[data-path="/"][data-file="search-v3"][data-gridsize][data-gridsize="lg"] .section .row > .col.col-grid .row.row-cols-3 > .col.col-midresult[data-idx="6"] {
        display: block; } }

@media (max-width: 1179px) {
  body[data-path="/"][data-file="search-v3"] .section.section-hero-inner > .row > .col#search form {
    max-width: 100%; }
  body[data-path="/"][data-file="search-v3"] .section .row .search-filter-toggler {
    display: inline-block;
    border-radius: 0.25rem;
    border: 1px solid #E0E0E0; }
  body[data-path="/"][data-file="search-v3"] .section .row #search-filters {
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    color: #000000;
    padding: 1rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: scroll;
    max-width: 100% !important;
    z-index: 5; }
    body[data-path="/"][data-file="search-v3"] .section .row #search-filters.show {
      transform: translateX(0); }
      body[data-path="/"][data-file="search-v3"] .section .row #search-filters.show .search-filter-toggler {
        font-size: var(--heading5-font-size);
        float: right; } }

@media (max-width: 768px) {
  body[data-path="/"][data-file="search-v3"] .section .row #search-sort {
    display: none; } }

:root {
  --app-background: #FFFFFF;
  --app-background-border-color: #cccccc;
  --border-color: #E0E0E0;
  --font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --font-size: 1rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.25rem;
  --text-strong: #000000;
  --text-accent: var(--primary);
  --primary-border: color-mix(in srgb, var(--primary), black 20%);
  --text-accent-border: var(--primary-border);
  --text-link: #013A81;
  --text-primary: #011A3A;
  --section-font-primary: #FFFFFF;
  --section-font-reverse: #011A3A;
  --section-font-link: #013A81;
  --section-background: #013069;
  --section-background-font: var(--section-font-primary);
  --section-background2: #F7F5F2;
  --section-background2-font: var(--section-font-primary);
  --section-background2-border-color: white;
  --section-background3: #596069;
  --section-background3-font: var(--section-font-primary);
  --section-navbar-background: var(--section-background3);
  --section-background-reverse: #FFFFFF;
  --section-cta-background: var(--section-background2);
  --section-cta-font: var(--section-font-primary);
  --section-2column-gap: 6rem;
  --handwritten-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-family: Jost, Helvetica Neue, Helvetica, Arial, sans-serif;
  --heading-font-color: #000000;
  --heading1-font-size: 2.5rem;
  --heading2-font-size: 2rem;
  --heading3-font-size: 1.75rem;
  --heading4-font-size: 1.5rem;
  --heading5-font-size: 1.25rem;
  --heading6-font-size: 1rem;
  --heading-font-weight: 600;
  --heading-subtitle-font-size: var(--heading4-font-size);
  --button-border-radius: 0.5rem;
  --button-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --button-padding: .5rem 1.5rem;
  --button-font-size: 1.5rem;
  --hero-height: 600px;
  --marquee-speed: 60s;
  --nav-image: url(https://iwcdn.s3.amazonaws.com/appimages/clear.gif); }

body[data-path="/speakers/"] .section .alert.alert-warning {
  position: absolute;
  top: 86px;
  left: 0;
  width: 100%;
  border-radius: 0;
  background-color: #FDB913;
  color: #011A3A;
  font-weight: normal;
  box-shadow: none;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0; }
  body[data-path="/speakers/"] .section .alert.alert-warning:before {
    display: none; }

body[data-path="/speakers/"] .section .feature-title {
  color: var(--section-font-reverse); }

body[data-path="/speakers/"] .section .speaker-urls {
  margin-top: 2rem; }
  body[data-path="/speakers/"] .section .speaker-urls ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    body[data-path="/speakers/"] .section .speaker-urls ul li {
      margin-bottom: 0.75rem;
      font-weight: 500; }

body[data-path="/speakers/"] .section .speaker-topics ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  body[data-path="/speakers/"] .section .speaker-topics ul li {
    font-weight: 500;
    font-weight: 500;
    padding: 1rem 1rem;
    border-bottom: 1px solid #E0E0E0; }

body[data-path="/speakers/"] .section .speaker-topics .topic-link-ua {
  display: none; }

body[data-path="/speakers/"] .section #speakerurls a.btn-secondary {
  display: block;
  background: transparent;
  padding: 0.75rem 2rem;
  border-width: 1px;
  border-color: var(--section-background); }

body[data-path="/speakers/"] .section #speakerkeynotes-featured > ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  body[data-path="/speakers/"] .section #speakerkeynotes-featured > ul h4 {
    color: var(--section-font-primary);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }

body[data-path="/speakers/"] .section #speakersimilar {
  padding-left: 15px; }
  body[data-path="/speakers/"] .section #speakersimilar .card.card-speaker {
    height: initial; }

body[data-path="/speakers/"] .section #speakerkeynotes ul.feature > li a {
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  margin-top: 1.25rem;
  font-size: 1.4rem; }

body[data-path="/speakers/"] .section #speakerpodcast {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  text-transform: none;
  padding: 0.75rem 1.5rem 0.75rem calc(1.5rem + 40px + 1rem);
  text-align: left;
  width: calc(1.5rem + 40px + 1rem + 180px);
  position: relative;
  font-size: 0.9rem; }
  body[data-path="/speakers/"] .section #speakerpodcast:before {
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    content: "\e029";
    position: absolute;
    left: 1.5rem;
    background-color: #FDB913;
    font-family: "Material Symbols Rounded";
    font-size: 1.5rem;
    color: var(--section-font-reverse);
    padding: 0.5rem;
    border-radius: 50%;
    top: calc(0.75rem + 2px); }

body[data-path="/speakers/"] .section.section-keynotes > .row {
  align-items: center !important; }

body[data-path="/speakers/"] .section.section-testimonial .carousel-item .carousel-caption h1 {
  font-size: 1.5rem; }
  body[data-path="/speakers/"] .section.section-testimonial .carousel-item .carousel-caption h1 a.read-smore__link {
    font-size: 1.25rem;
    color: var(--heading-font-family);
    margin-left: 0.5rem;
    font-weight: 200;
    font-style: italic; }
    body[data-path="/speakers/"] .section.section-testimonial .carousel-item .carousel-caption h1 a.read-smore__link:after {
      display: none; }

body[data-path="/speakers/"] .section #speakernav .actions {
  display: none; }

body[data-path="/speakers/"] .section #speakernav .tab-content .tab-pane h4 i.fa {
  display: none; }

body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col {
  margin-bottom: 3rem; }
  body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col .image-wrapper a {
    width: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
    body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col .image-wrapper a:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col p {
    font-weight: bold;
    padding: 1rem 1rem; }
  body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col.col-card {
    padding-top: 1rem;
    padding-bottom: 1rem; }
    body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col.col-card p:has(+ p) {
      padding-bottom: 0; }
    body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col.col-card p + p {
      padding-top: 0;
      padding-bottom: 0;
      font-weight: normal; }
    body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col.col-card:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      border-radius: 1rem; }

body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col {
  padding: 0;
  margin: 1rem 15px;
  flex-basis: calc(25% - 30px); }
  body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col .image-wrapper + p:last-child {
    margin-bottom: 0; }
  body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border-radius: 1rem; }
    body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover .image-wrapper a {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
      box-shadow: none; }
      body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover .image-wrapper a:hover {
        box-shadow: none; }

body[data-path="/speakers/"] .section .speakers .card-speaker {
  flex: 0 0 auto;
  /* Prevent shrinking */ }

body[data-path="/speakers/"] .section:has(.speaker-topics) hr {
  display: none; }

body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col #headshot a {
  aspect-ratio: 4/5;
  width: 400px;
  background-size: cover;
  background-position: top center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem; }

body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col #headshot img {
  width: 400px; }

body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col #headshot + hr {
  display: none; }

body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child {
  padding-left: 0;
  max-width: 55%;
  flex: 0 0 55%;
  padding-right: 15px; }
  body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child .labels {
    margin-bottom: 1.5rem; }
    body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child .labels .badge {
      font-size: 0.9rem;
      color: #FFFFFF;
      background-color: rgba(255, 255, 255, 0.3);
      padding: 0.5rem 1rem;
      margin-left: 0;
      margin-right: 0.5em; }
      body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child .labels .badge .fa {
        display: none; }
  body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child h1 .subtitle {
    display: block;
    margin-top: 1rem;
    padding: 0;
    color: var(--section-font-primary);
    font-style: normal;
    font-weight: 500; }
  body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child p {
    font-size: 1.15rem; }
    body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child p.subtitle {
      font-size: 1.5rem;
      font-weight: 500; }
    body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child p.fee-range {
      font-size: 0.9rem;
      font-weight: 500; }
  body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col:last-child .btn.btn-primary {
    margin-top: 1.5rem;
    color: var(--section-font-reverse); }

@media (max-width: 767px) {
  body[data-path="/speakers/"] .section .speaker-topics ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    body[data-path="/speakers/"] .section .speaker-topics ul li {
      font-weight: 500;
      font-weight: 500;
      padding: 1rem 1rem;
      border-bottom: 1px solid #E0E0E0; }
  body[data-path="/speakers/"] .section .speaker-topics .topic-link-ua {
    display: none; }
  body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col {
    margin-bottom: 2rem; }
    body[data-path="/speakers/"] .section .tab-pane .row.row-cols-4 > .col .image-wrapper a {
      display: block;
      background-size: cover;
      background-position: center;
      border-radius: 1rem; }
  body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col {
    padding: 0 !important;
    margin: 1rem 15px !important;
    max-width: calc(100% - 30px) !important; }
    body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover {
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
      border-radius: 1rem; }
      body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover .image-wrapper a {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        box-shadow: none; }
        body[data-path="/speakers/"] .section .tab-pane#videos .row.row-cols-4 > .col:hover .image-wrapper a:hover {
          box-shadow: none; }
  body[data-path="/speakers/"] .section.section-hero-inner-right > .row > .col #headshot a {
    width: 100%; } }

body .section .speakers {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 15px; }
  body .section .speakers .card-speaker {
    width: 300px;
    margin: 1rem 15px;
    flex-direction: column;
    height: 100%; }
    body .section .speakers .card-speaker .labels {
      position: absolute;
      padding: 1.25rem;
      text-align: left;
      bottom: 0;
      display: inline-block; }
      body .section .speakers .card-speaker .labels .badge-primary {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-left: 0;
        margin-right: 0.5em; }
    body .section .speakers .card-speaker .image-wrapper {
      height: 300px;
      overflow: hidden;
      border-top-left-radius: 1rem;
      border-top-right-radius: 1rem;
      position: relative; }
      body .section .speakers .card-speaker .image-wrapper a {
        height: 300px;
        display: block;
        background-size: cover;
        background-position: top center; }
    body .section .speakers .card-speaker .card-body {
      padding-bottom: 0; }
      body .section .speakers .card-speaker .card-body .card-title {
        font-weight: 500;
        font-size: 1.5rem; }
      body .section .speakers .card-speaker .card-body .modal .row > .col img {
        width: 100%;
        border-radius: 1rem; }
    body .section .speakers .card-speaker .card-footer {
      background-color: #ffffff;
      border-top-width: 0;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem; }
      body .section .speakers .card-speaker .card-footer p:last-child {
        margin-bottom: 0; }
    body .section .speakers .card-speaker:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
    body .section .speakers .card-speaker:first-child {
      margin-left: 0.5rem; }
    body .section .speakers .card-speaker:last-child {
      margin-right: 0.5rem; }
  body .section .speakers.row-cols-4, body .section .speakers.row-cols-3 {
    flex-wrap: wrap; }
    body .section .speakers.row-cols-4 > .col, body .section .speakers.row-cols-3 > .col {
      margin-bottom: 3rem; }
      body .section .speakers.row-cols-4 > .col .card-speaker:first-child, body .section .speakers.row-cols-3 > .col .card-speaker:first-child {
        margin-left: 0; }
      body .section .speakers.row-cols-4 > .col .card-speaker:last-child, body .section .speakers.row-cols-3 > .col .card-speaker:last-child {
        margin-right: 0; }
      body .section .speakers.row-cols-4 > .col.col-cta, body .section .speakers.row-cols-3 > .col.col-cta {
        max-width: 100% !important;
        flex-basis: 100% !important; }

body .section .row > .col.col-midresult {
  display: none;
  flex: 0 0 100% !important;
  max-width: 100% !important; }
  body .section .row > .col.col-midresult > .row {
    background-image: linear-gradient(90deg, #01479c 0%, #013069 100%);
    color: var(--section-font-primary);
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
    align-items: center;
    margin-top: 2rem; }
    body .section .row > .col.col-midresult > .row > .col h5 {
      color: var(--section-font-primary);
      margin-bottom: 10px; }
    body .section .row > .col.col-midresult > .row > .col p {
      color: var(--section-font-primary); }
      body .section .row > .col.col-midresult > .row > .col p:last-child {
        margin-bottom: 0; }
    body .section .row > .col.col-midresult > .row > .col:first-child {
      padding-right: 6rem; }
    body .section .row > .col.col-midresult > .row > .col:last-child {
      width: 30%;
      max-width: 30%;
      text-align: right; }
    body .section .row > .col.col-midresult > .row > .col .btn.btn-primary {
      padding: 1rem 2.25rem;
      line-height: 1.5;
      background: linear-gradient(to bottom, #FECC53 0%, #FDB913 100%);
      color: var(--section-font-reverse);
      font-size: 1.25rem; }
      body .section .row > .col.col-midresult > .row > .col .btn.btn-primary:hover {
        background-image: none;
        background-color: #FDB402; }

.handwritten {
  font-family: "Caveat";
  font-size: 120%;
  color: #FDB913; }

p.flush {
  margin-bottom: 0; }

.text-lg {
  font-size: 1.1rem; }

.text-xl {
  font-size: 1.5rem; }

.text-xxl {
  font-size: 1.875rem; }

.section:not(.section-alt):not(.section-alt2):not(.section-reverse) .handwritten {
  font-family: "Caveat";
  font-size: 120%;
  color: #FDB913; }
