/*
Theme Name:         Axis Dorado Custom Theme v1.0
Theme URI:          https://www.joindorado.com
Description:        Custom Wordpress them for dorado. Created March 2026
Version:            1
Author:             MASINI CREATIVE INC
Author URI:         https://www.masini.ca

/* -----------------------------------------------------
= Base
--------------------------------------------------------*/

/* --- Font Declaration --- */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

body {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #1A1718;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  color: #1A1718;
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(24px, 3vw, 32px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }
h4 { font-size: clamp(18px, 1.8vw, 20px); }
h5 { font-size: clamp(16px, 1.5vw, 18px); }
h6 { font-size: clamp(14px, 1.2vw, 16px); }

p {
  margin: 0 0 24px;
  font-size: clamp(14px, 1.1vw, 16px);
}

p.large {
  font-size: clamp(16px, 1.3vw, 18px);
}

sub, sup {
  color: #414547;
  font-size: 60%;
  font-weight: 300;
  top: -0.4em;
}

h2 sup {
    font-size: 45%;
    top: -1.2em;
}
h2 a sup {
    font-size: inherit;
}
header.lrg {margin-bottom: 62px;}
header.med {margin-bottom: 40px;}
header.sml {margin-bottom: 24px;}

/* Links */
a, a:link, a:visited, a:active {
  color: #EC1A8A;
  text-decoration: none;
}

  a:hover, a:focus, a:active,
  h1 a:hover, h2 a:hover, h3 a:hover {color: #B31E8D; text-decoration: none;}

a.collapsible,
a.collapsible:hover,
.navbar-nav.top>li>a,
.navbar-nav.top>li>a:hover {text-decoration: none;}


/* -----------------------------------------------------
= Lists
--------------------------------------------------------*/
ul li, ol li {margin-top: 5px;}

.list-grid {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.list-grid > li {
  float: left;
  list-style: none;
  box-sizing: border-box;
}
.list-grid.one > li {width: 100%;}
.list-grid.two > li {width: 50%;}
.list-grid.three > li {width: 33.3333%;}
.list-grid.four > li {width: 25%;}
.list-grid.five > li {width: 20%;}
.list-grid.six > li {width: 16.666%;}

/* Table */
.css-table {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  align-items: center;
}
  .css-table > li {
    flex: 1;           /* equal width */
    list-style: none;
    display: flex;
    flex-direction: column;
  }

ul.branded-arrow {
  list-style: none;
  padding: 0;
}
ul.branded-arrow li {
  background: url(img/icons/icon-brand-arrow.svg) no-repeat 0 3px;
  background-size: 14px auto;
  padding-left: 26px;
  margin-top: 10px;
}

.list-padded-sml > li {padding: 1em;}
.list-padded-med > li {padding: 1.4em;}
.list-padded-lrg > li {padding: 3em;}

/* image + positioned text */
.list-feat-full-box {position: relative;}

.list-feat-full-box .text-box {
    position: absolute;
    bottom: 0;
    padding: 24px 32px;
    max-width: 40%;
    background: transparent linear-gradient(263deg, var(--unnamed-color-ec1a8a) 0%, var(--unnamed-color-f69227) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(263deg, #EC1A8A 0%, #F69227 100%) 0% 0% no-repeat padding-box;
    opacity: 0.9;
}
  .list-feat-full-box .text-box.right-side {right: 0;}
  .list-feat-full-box .text-box:hover {
    background: transparent linear-gradient(264deg, var(--unnamed-color-ec1a8a) 0%, var(--unnamed-color-f69227) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(264deg, #EC1A8A 0%, #F69227 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
  }

 .list-icon-box {gap: 2px;}


hr.with-shadow {
  margin: 75px auto 0; 
  height: 32px;
  background-image: radial-gradient(ellipse at top,hsla(0,0%,58.8%,.1) 0,transparent 70%);
}

/* --- Form Elements --- */
.form-control, label {font-weight: 400;}

.form-control {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 8px 10px;
  color: #1A1718;
  line-height: 24px;
  border: 0.094em solid #D9D9D9;
  border-radius: 5px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  /*appearance: none; /* ensures select looks similar across browsers */*/
}

/* Match select and input height exactly */
select.form-control {
  height: 50px;
  line-height: normal;
}

/* Focus state for inputs and selects */
.form-control:focus {
  color: #EC1A8A;
  border-color: #EC1A8A;
  box-shadow: 0 0 5px rgba(236, 26, 138, 0.5);
  outline: none;
}

/* Optional: make select arrow consistent */
select.form-control::-ms-expand {
  display: none; /* removes default IE arrow */
}

/* Buttons */
.btn-container {margin-top: 32px;}

.btn, a.btn {
  display: inline-block;
  padding: 1em 2em;
  font-size: clamp(13px, 1vw, 15px);
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 50px;
  transition: all .75s ease-in;
}

  .btn, a.btn,
  .btn:hover, a.btn:hover,
  .btn:focus, a.btn:focus {
    transition: all .75s ease-in;
      -webkit-transition: all .75s ease-in;
    outline: none;
    box-shadow: none;
    text-decoration: none;
  }
         
.btn-primary {
  background: transparent linear-gradient(263deg, var(--unnamed-color-ec1a8a) 0%, var(--unnamed-color-f69227) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(263deg, #EC1A8A 0%, #F69227 100%) 0% 0% no-repeat padding-box;
  border-color: #EC1A8A;
}
  .btn-primary:hover,
  a.btn-primary:hover,
  .btn-primary:focus, a.btn-primary:focus {
    background: transparent linear-gradient(263deg, var(--unnamed-color-ec1a8a) 0%, var(--unnamed-color-f69227) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(263deg, #EC1A8A 40%, #F69227 100%) 0% 0% no-repeat padding-box;
    border-color: #EC1A8A;
  }

.btn-default {
  background: transparent;
  border: 2px solid #8C288E;
  color: #8C288E !important;
}
.btn-default:hover {
  background: #8C288E;
  color: #fff !important;
}

/* Tab */
.minimal-tabs > li {background-color: #F8F8F8;}
  .minimal-tabs > li > a {
    background-color: #F8F8F8;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    border-radius: 0;
  }
     .minimal-tabs > li.active > a,
     .minimal-tabs > li.active > a:active,
     .minimal-tabs > li.active > a:focus {
        background-color: #EC1A8A;
        border-color: #EC1A8A;
        color: #fff;
    }
    .minimal-tabs > li > a:hover ;{background-color: #D9D9D9;}

.panel-default>.panel-heading {
    color: #EC1A8A;
    background-color: #F8F8F8;
    border-color: rgb(51,51,51, 0.1);
}
.panel-default>.panel-heading .panel-title {
  font-size: 16px; 
  color: #414547;
}

.wpcf7-list-item {
    display: block;
    margin: 15px 0 0;
}

/* Alerts */
.alert {padding: 15px;}

.alert-info {
	color: #54595F;
    background-color: #F4F9F2;
    border-color: #D8D8D8;
}
.alert-success {
	color: #4b286d;
    background-color: #fff;
    border-color: #2B8000;
}
.alert-danger {
    color: #4b286d;
    background-color: #fff;
    border-color: #4b286d;
}

.alert-telus-grn {
  background-color: #009100;
  color: #fff;
}

.alert-telus-gry {background-color: #f4f4f7;}

.alert > p {margin-top: 0;}

.alert > p > strong {
   font-weight: 300;
}

/* Contact Form 7 overrides */
.wpcf7-not-valid, div.wpcf7-validation-errors {border-color: #d9483b;}
span.wpcf7-not-valid-tip,
.wpcf7 img.ajax-loader {display: none;}
.wpcf7-validation-errors, 
.wpcf7-mail-sent-ok,
div.wpcf7-response-output {
    margin: 15px auto 0;
    padding: 15px;
    max-width: 744px;
    font-size: 14px;
    border: 1px;
    -webkit-border-radius:4px;
      -moz-border-radius:4px;
      border-radius:4px;
}
  .wpcf7-mail-sent-ok {
    background-color: #dff0d8;
    color: #398f14;
    border-collapse: #398f14;
  }
  .wpcf7-validation-errors {
    background-color: #f2dede;
    color: #d9483b;
    border-color: #d9483b;
  }

  .wpcf7-response-output {
  padding-left: 40px;
    background-position: 10px center;
    background-repeat: no-repeat;
}
.wpcf7-mail-sent-ok {background-image: url(img/icons/icon-success.svg);}
.wpcf7-response-output.wpcf7-validation-errors {background-image: url(img/icons/icon-fail.svg);}
._inline-form {width: 100%;}
#_form_5EA3E110C1792_ button[type="submit"],
._submit {font-size: 13px;}

/* Blog search form */
.searchbox {margin-bottom: 40px;}
.searchbox .input-group {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  .searchbox .input-group .form-control {
    background-color: transparent;
    color: #666;
    border: none;
    box-shadow: none;
  }

  .searchbox .input-group .btn {
    padding: 0;
    margin: 0 16px 0 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url('img/icons/search-close.png');
    background-repeat: no-repeat;
    background-position: left top;
    text-indent: -8000px;
  }

.legalContainer {
  display: none;
  padding: 50px 25px;
  background: #fff;
  width: 100%;
  height: 25%;
  z-index: 205;
  position: fixed;
  bottom: 0;
  left: 0;
  border: 1px solid #f7f7f8;
  box-shadow: rgb(0 0 0 / 10%) 0px 0px 16px 0px;
  transition: transform 500ms ease-out 0s;
}

.modal-backdrop.in {opacity: 0.35;}

.modal-backdrop {background-color: transparent;}
.modal.fade.modal-legal .modal-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    margin:0;
    width: 100%;
    max-width: 100%;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, 0%, 0);
}

.modal.fade.modal-legal:not(.in) .modal-dialog {
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(0, 0%, 0);
}

.modal.fade.modal-legal .modal-content {
    padding: 25px;
    border-radius: 0;
    border: 0;
}
  .modal.fade.modal-legal .modal-content p {margin-bottom: 10px;font-size: 13px;}

/* -----------------------------------------------------
= Layout
--------------------------------------------------------*/

.site-header {padding: 40px 0 80px;}
.site-header,
.site-header > .container {overflow-y: visible;}

.wrapper {background-color: #fff;}
.container-fluid {max-width: 1366px;}

/* Logo */
.logo {
  float: left;
  -webkit-box-align: center;
    align-items: center;
    display: flex;
    padding: 0;
} 

  .logo img {
    width: auto;
    height: 32px;
    overflow: hidden;
  }


/* Navigation Menus */
.navbar {
  margin: 0;
  border: 0;
}

.navbar-header {
  float: none;
  padding: 0;
  border: 0;
}
  /* Desktop menu */
  .nav-primary, 
  .nav-primary .navbar-collapse {
    padding: 0;
    margin: 0;
  }
    .nav-primary > ul {margin-bottom: 0;}
      .nav-primary  > ul > li {
        float: left;
        margin: 0 20px;
        padding: 0;
        list-style: none;
        position: relative;
      }
        .nav-primary > ul > li > a {
          font-size: clamp(16px, 1.2vw, 18px);
          font-weight: 500;
          line-height: 48px;
          text-transform: uppercase;
        }

          .nav-primary > ul > li:last-child {margin-right: 0;}

.nav-primary > ul > li.current_page_item {border-bottom: 2px solid #EC1A8A}

  .nav-primary > ul > li .sub-menu li a:hover,
  .nav-footer .sub-menu > li > a:hover {
    color: #EC1A8A;
    background-color: transparent;
  }

.nav-footer > ul > li {margin: 16px 0;}
  .nav-footer > ul > li > a {font-weight: 600;}

  .nav-footer .sub-menu {padding: 0;}
  .nav-footer .sub-menu > li {list-style: none;}
    .nav-footer .sub-menu > li > a {
      padding: 0 0 4px 0 !important;
      color: #1A1718;
    }


.pll-switcher-select {
  float: right;
  border: none;
  font-size: 15px;
  padding: 0;
  margin-top: -1px;
}

/* Sections */
.section.default {padding: 140px 0;}
.section.med {padding: 80px 0;}
.section.sml {padding: 42px 0;}
.fill-bg.grad {
	background: #D9D9D9;
  background: linear-gradient(75deg, rgba(246, 146, 38, 1) 0%, rgba(236, 26, 138, 1) 100%);
}
.section.tp-none {padding-top: 0;}

.fill-bg.grad * {color: #fff;}
.fill-bg.bg-special > .container-fluid {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
.fill-bg.lgr {background-color: #F8F8F8;border: 1px solid transparent;}
  .fill-bg.lgr.with-hover:hover, .fill-bg.lgr.with-hover:focus {
    background-color: #fff;
    border: 1px solid #D9D9D9;
  }

.section-bg-img {
  background-color: #F8F8F8;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
  .section-bg-img.img-01 {background-image: url(img/hero/img-footer-cta-01.png);}
  .section-bg-img.img-02 {background-image: url(img/hero/img-footer-cta-02.png);}

.img-pos-abs {
  position: absolute;
  bottom: 0;
  width: 40%;
  max-width: 440px;
}
  .img-pos-abs.pos-left {left: 0;}
  .img-pos-abs.pos-right {right: 0;}


i.fa, i {border-width: 0;}

.notify-wrapper-warn {
  padding: 10px 5px;
    background-color: #fff;
    border: 1px solid #45326a;
}

.btn-warning,
.btn-edit-person-cancel {
    color: #2a2c2e;
    background-color: #f7f7f8;
    border-color: #d8d8d8;
}


/* -- Footer -- */
.footer {
  width: 100%;
  border-top: 1px solid #EDF0F2;
}
  .footer .bottom {
    padding: 24px 0;
    font-size: 14px;
    font-weight: 400;
  }

.nav-footer > ul {display: inline-block;}
  
  .nav-footer > ul > li {margin-bottom: 8px;}

  .nav-footer a, .nav-footer a:link, .nav-footer a:visited, .nav-footer a:active {
    display: block;
    text-transform: uppercase;
  }

  .nav-footer li a > .glyphicon > img,
  .navbar-nav.top.navbar-right .glyphicon img {
    margin: -5px 2px 0 0;
    width: 16px;
    height: 16px;
  }

/* -----------------------------------------------------
= Bio
--------------------------------------------------------*/
.bio-card {
  margin-bottom: 40px;
  min-height: 264px;
  align-items: normal;
}

.bio-photo {
    background: transparent linear-gradient(263deg, var(--unnamed-color-ec1a8a) 0%, var(--unnamed-color-f69227) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(263deg, #EC1A8A 0%, #F69227 100%) 0% 0% no-repeat padding-box;
}

.bio-text {
    position: relative;
    overflow: hidden;
    max-height: 80px; /* adjust to ~2–3 lines */
    transition: max-height 0.5s ease;
}

/* Gradient fade */
.bio-text:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;

    background: linear-gradient(
        to bottom,
        rgba(248,248,248,0) 0%,
        rgba(248,248,248,1) 100%
    );
}

/* Expanded state */
.bio-text.expanded {
    max-height: 1000px; /* big enough to fit content */
}

.bio-text.expanded:after {
    display: none;
}

.bio-toggle {
  padding: 6px;
  display: inline-flex; 
  align-items: center;
}

.bio-toggle .toggle-icon {
    margin-right: 2px;
}

.bio-toggle .toggle-text {
    line-height: 1;
    padding-left: 4px;
}

.bio-toggle .icon {
  width: 16px;
  height: auto;
}

/* Confetti burst */
#confetti-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
  background-color: #fff; /* Optional: white background during burst */
}

.confetti-piece {
  position: absolute;
  opacity: 0;
  transform-origin: center;
}

.confetti-piece.circle {
  border-radius: 50%;
}
/* -----------------------------------------------------
= Media Queries
--------------------------------------------------------*/

@media print {
  #btngotoReplicatedSite,
  #btnLogin,
  .footer-cta {display: none;}
}

@media (min-width: 768px) {

  .nav-primary > ul {float: right;}

    .nav-primary > ul > li {position: relative;}
      .nav-primary > ul > li > a {
          padding: 20px 0;
        }

     /* Hide submenu by default */
    .nav-primary > ul > li .sub-menu {
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease;
      position: absolute;
      top: 100%;
      left: 0;
      padding: 24px 0 0;
      background: #fff;
      min-width: 240px;
      border: 1px solid #EDF0F2;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
      z-index: 999;
    }

    /* Show on hover */
    .nav-primary > ul > li:hover > .sub-menu {
      display: block;
      opacity: 1;
      visibility: visible;
    }

    .nav-primary > ul > li .sub-menu > li {
      display: block;
      margin: 0;
      width: 100%;
    }

    .nav-primary > ul > li .sub-menu > li > a {
      display: block;
      width: 100%;
      padding: 0 24px 24px;
      white-space: nowrap;
      color: #1A1718;
      font-weight: 400;
      line-height: 100%;
      text-transform: uppercase;
    }


  /* -- Lists -- */
  .list-box {margin-right: -15px;margin-left: -15px;}
    .list-box li > span {margin: 0 15px 15px;}
	
  /* -- Modal -- */
  .modal-dialog {width: 70%;max-width: 900px;}

/* -----------------------------------------------------
= Layout
--------------------------------------------------------*/
  
  /* -- Section Specific Styles -- */
	
  /* --- Misc/Utilities --- */
  .pull-right-desktop {float: right;}
  .pull-left-desktop {float: left;}
  .center-desktop {text-align: center;} 
  .center-block-desktop {
    margin-right: auto;
    margin-left: auto;
  }
	.center-mobile {text-align: left;}
 
}

/* --- Small devices (Tablets) --- */
@media (min-width: 768px) and (max-width: 1024px) {

  .section.default {padding: 56px 0;}
  .section.med {padding: 34px 0;}

} 

@media (min-width: 992px)  {

  /* --- Misc/Utilities --- */
  .pull-right-desktop {float: right;}
  .pull-left-desktop {float: left;}
  .center-desktop {text-align: center;} 
  .center-block-desktop {
    margin-right: auto;
    margin-left: auto;
  }

}

/* --- Large devices (Desktop)  --- */
@media (min-width: 1025px)  {


}

/* --- Large devices (Desktop)  --- */
@media (min-width: 1200px)  {
	
}

@media (min-width: 768px) and (max-width: 1200px) {
	
  .section-bg-img {background-position: calc(40% + 40vw) center;}
} 
/* --- Small devices (Tablets) --- */
@media (max-width: 1024px) {

} 

/* --- Both extra small and small devices (Phones/Tablets) --- */
@media (max-width: 991px) {

  .container,
  .container-fluid {padding: 0 30px}
   
  .dist-info-phone, .dist-info-code {display: block;text-align: left;} 
	
  /* Lists */
  .list-tablet-stacked li {
    display: block;
    width: 100%;
  }

  .center-mobile {text-align: inherit;margin-right: inherit!important;margin-left: inherit!important;}
  .center-tablet {text-align: center;} 
  .center-tablet-block {
    margin-right: auto;
    margin-left: auto;
  } 
  .tablet-margin {margin-bottom: 50px;}

  .section-offers .list-grid.three > li {width: 50%;}

}

/* --- Small Devices (Phones)  --- */
@media (max-width: 767px) {
  
  body, .btn, a.btn {font-size: 14px;}

  .txt-small {font-size: 12px !important;}

  /* -- Lists -- */ 
 .list-icon-box {
    display: flex;
    flex-wrap: wrap;
  }

  .list-icon-box li {
    flex: 0 0 48%;   /* 2 columns */
    flex-direction: column;
  }

  .list-feat-full-box.mobile .text-box {
    position: relative;
    max-width: 100%;
  }

  .list-mobile-stacked li {
    display: block;
    width: 100% !important;
  }

  .center-mobile-block {
    margin-right: auto;
    margin-left: auto;
  } 
   
  hr.with-shadow {margin: 50px auto 0;} 
	
  .mobile-margin {margin-bottom: 40px;}
  .mobile-margin.sml {margin-bottom: 20px ;}

  /* -- Media Elements -- */
  .media.stacked-mobile > div {
    display: block;
    padding: 0;
    width: 100%;
  }

  /* Form */
  .btn-block-mobile {
    display: block;
    margin: 0 auto;
    width: 100%;
  }

/* -----------------------------------------------------
= Layout
--------------------------------------------------------*/
  
/* --- Header --- */
.site-header {padding: 16px 0 40px;}

.logo {
  display: inline-block;
  float: none;
  padding: 15px 0 15px 15px;
  text-align: center;
}
    .logo img {
      margin: 0 auto;
      width: 126px;
      height: auto;
    }

  .navbar-nav.top.navbar-right {margin: 0;}

  /* Navigation Menus */
    .nav-primary > ul {
      margin: 0;
      padding: 0;
      float: none;
      overflow: hidden;
      width: 100%;
    }
      .nav-primary > ul > li {
        float: none;
        margin: 0;
        padding: 0;
        border: 0;
        border-bottom: 1px solid rgb(0 0 0 / 10%);
      }
        .nav-primary > ul > li:last-child {border-bottom: 0;}

        .nav-primary > ul > li > a {
          display: block;
          text-align: right;
        } 
          .nav-primary > ul > li > a:hover, .nav-primary > ul > li > a:focus {
            background-color: #f7f7f8;
            color: #4b286d;
          }

    .nav-primary > ul > li .sub-menu {display: none;}

    .nav-primary > ul > li .sub-menu > li {
      display: block;
      margin: 0;
      list-style: none;
      text-align: right;
    }

    .nav-primary > ul > li .sub-menu > li > a {
      display: block;
      padding: 0 0 16px 0;
      color: #1A1718;
      text-align: right;
      text-transform: uppercase;
    }

    .nav-footer li {
      display: block;
      float: none;
    }

.navbar-collapse {padding: 0;}
.navbar-collapse, .navbar-inverse .navbar-form {border-color: rgb(0 0 0 / 10%);}

.navbar-toggle {
  border-color: transparent;
  margin-right: 0;
  padding: 14px 15px;
  margin-top: 0;

}
  .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {background-color: transparent;}
  .navbar-toggle .icon-bar {background-color: rgb(84, 89, 95);}

  /* Sections */
  .section.default {padding: 62px 0;}
  .section.med {padding: 40px 0;}
  .section.sml {padding: 34px 0;}

  .section-bg-img {
    background-position: calc(50% + 40vw) 80px;
    background-size: 100%;
    background-position-y: bottom;
  }

  .bio-card {min-height: 284px;} /* -- forces bio cards to stack properly --*/
 
  /* -- Footer -- */ 
  .list-social {margin:25px auto;}

  .center-mobile, .center-mobile * {text-align: center;}
	.mobile-centered, .mobile-centered * {text-align: center;}
  .hidden-mobile {display: none;}
  .is-not-visible[data-animation]  { visibility: visible; }
  .is-hidden[data-animation] {display: block;}
	
	.dist-info-phone, .dist-info-code {text-align: center;} 

	.login-consultant-col {min-width: auto;}
	
  .embed-container.instagram {
    padding-bottom: 130%;
    min-height: 500px;
  }

  /* -- System Status -- */
  .list-alerts {padding: 0;}
    .list-alerts > li .date {float: none;}

  .padding_mobile_none {padding: 14px;}
}

/* --- Misc/Utilities --- */

.section.tp-none {padding-top: 0 !important;}

.row-eq-height {
    display: flex;
    flex-wrap: wrap; /* keeps responsiveness */
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills nicely like a background */
}

.wp-caption-text {
  margin: 10px 0;
  font-size: 12px;
  color: #666;
  font-style: italic;
}

.txt-primary {color: #EC1A8A;}
.txt-secondary {color: #8C288E;}
.text-wt,
.text-wt * {color: #fff;}
 a.text-wt, a.text-wt:link, a.text-wt:visited, a.text-wt:hover {
  padding-bottom: 3px;
  color: #fff;
  text-decoration: underline;
}

.text-meta {
  font-size: 13px;
  color: #999;
}

/* Font weight classes */
.txt-semibold {font-weight: 500;}

.txt-small {font-size: 14px;}

/* Font transform related classes */
.txt-lc {text-transform: none;}
.txt-ital {font-style: italic;}
.txt-uc {text-transform: uppercase;}

.icon-pdf {
  display: inline-block;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  background-color: transparent;
  background-image: url('img/icons/icon-pdf.png');
  background-size: contain;
}

.icon.lrg {
  max-height: 40px;
  width: auto;
}

.icon.med {
  height: 24px;
  width: auto;
}

.icon.sml {
  height: 16px;
  width: auto;
}

.icon.xsml {
  height: 12px;
  width: auto;
}

.zoom-in {
    position: relative;
    margin: auto;
    overflow: hidden;
}
.zoom-in img {
    max-width: 100%;
    transition: all 1s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.zoom-in:hover img {transform: scale(1.2);}

.pipe {
  display: inline-block;
  padding: 0 5px;
  color: #ccc;
}

.close {
    position: absolute;
    padding: 4px;
    right: 15px;
    top: 10px;
    background-color: rgba(255,255,255,0.25);
    opacity: 0.8;
    z-index: 709;
  }

/* Hide Google Captcha box */
.grecaptcha-badge { visibility: hidden;}

/* -- Centering utilities -- */
.center, .center * {text-align: center;}
.center-block, .center-block * {
  margin-right: auto;
  margin-left: auto;
}

/* Site wide general announcement alert */
.gen-ancmt {
  background-color: #e9900e;
  width: 100%;
  color: #fff;
  border-radius: 0;
  bottom: 0;
  position: fixed;
  z-index: 711;
}
  .gen-ancmt p {
    margin: 0 15px;
    font-size: 14px;
    color: #fff;
  }
    .gen-ancmt a:link, .gen-ancmt a:visited {
      color: #fff;
      text-decoration: underline;
    }

/* Hide */
.is-hidden {display: none;}
.is-not-visible {visibility: hidden;}

/* No JS */
.no-js .is-hidden {display: block;}
.no-js .is-not-visible {visibility: visible;}


/* Responsive media player */
.embed-container {
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
  max-width: 100%; 
  height: auto;
} 

  .embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
  }

.embed-container.instagram {padding-bottom: 117%;}
  .embed-container.instagram .thirdparty,
  .embed-container.instagram .Embed, 
  .embed-container.instagram .root {background-color: #fafafa;}

/* Input flags */
.iti-flag {background-image: url("img/flags.png");}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti-flag {background-image: url("img/flags@2x.png");}
}

/* CSS arrows */
i {
  border: solid #12141a;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

i:hover, i:focus,
a > i:hover, a > i:focus {border-color: inherit;}

/* Margin Helpers */
.m-0 {margin: 0;}
.m-5 {margin: 5px;}
.m-10 {margin: 10px;}
.m-15 {margin: 15px;}
.m-20 {margin: 20px;}
.m-25 {margin: 25px;}
.m-30 {margin: 30px;}
.m-35 {margin: 35px;}
.m-40 {margin: 40px;}
.m-45 {margin: 45px;}
.m-50 {margin: 50px;}

.mt-0 {margin-top: 0;}
.mt-5 {margin-top: 5px;}
.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-25 {margin-top: 25px;}
.mt-30 {margin-top: 30px;}
.mt-35 {margin-top: 35px;}
.mt-40 {margin-top: 40px;}
.mt-45 {margin-top: 45px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}

.mr-0 {margin-right: 0;}
.mr-5 {margin-right: 5px;}
.mr-10 {margin-right: 10px;}
.mr-15 {margin-right: 15px;}
.mr-20 {margin-right: 20px;}
.mr-25 {margin-right: 25px;}
.mr-30 {margin-right: 30px;}
.mr-35 {margin-right: 35px;}
.mr-40 {margin-right: 40px;}
.mr-45 {margin-right: 45px;}
.mr-50 {margin-right: 50px;}

.mb-0 {margin-bottom: 0;}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-25 {margin-bottom: 25px;}
.mb-30 {margin-bottom: 30px;}
.mb-35 {margin-bottom: 35px;}
.mb-40 {margin-bottom: 40px;}
.mb-45 {margin-bottom: 45px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}

.ml-0 {margin-left: 0;}
.ml-5 {margin-left: 5px;}
.ml-10 {margin-left: 10px;}
.ml-15 {margin-left: 15px;}
.ml-20 {margin-left: 20px;}
.ml-25 {margin-left: 25px;}
.ml-30 {margin-left: 30px;}
.ml-35 {margin-left: 35px;}
.ml-40 {margin-left: 40px;}
.ml-45 {margin-left: 45px;}
.ml-50 {margin-left: 50px;}

/* Padding Helpers */
.p-0 {padding: 0;}
.p-1 {padding: 1px;}
.p-5 {padding: 5px;}
.p-10 {padding: 10px;}
.p-15 {padding: 15px;}
.p-20 {padding: 20px;}
.p-25 {padding: 25px;}
.p-30 {padding: 30px;}
.p-35 {padding: 35px;}
.p-40 {padding: 40px;}
.p-45 {padding: 45px;}
.p-50 {padding: 50px;}

.pt-0 {padding-top: 0;}
.pt-5 {padding-top: 5px;}
.pt-10 {padding-top: 10px;}
.pt-15 {padding-top: 15px;}
.pt-20 {padding-top: 20px;}
.pt-25 {padding-top: 25px;}
.pt-30 {padding-top: 30px;}
.pt-35 {padding-top: 35px;}
.pt-40 {padding-top: 40px;}
.pt-45 {padding-top: 45px;}
.pt-50 {padding-top: 50px;}
.pt-60 {padding-top: 60px;}
.pt-75 {padding-top: 75px;}
.pt-100 {padding-top: 100px;}

.pr-0 {padding-right: 0;}
.pr-5 {padding-right: 5px;}
.pr-10 {padding-right: 10px;}
.pr-15 {padding-right: 15px;}
.pr-20 {padding-right: 20px;}
.pr-25 {padding-right: 25px;}
.pr-30 {padding-right: 30px;}
.pr-35 {padding-right: 35px;}
.pr-40 {padding-right: 40px;}
.pr-45 {padding-right: 45px;}
.pr-50 {padding-right: 50px;}

.pb-0 {padding-bottom: 0 !important;}
.pb-5 {padding-bottom: 5px;}
.pb-10 {padding-bottom: 10px;}
.pb-15 {padding-bottom: 15px;}
.pb-20 {padding-bottom: 20px;}
.pb-25 {padding-bottom: 25px;}
.pb-30 {padding-bottom: 30px;}
.pb-35 {padding-bottom: 35px;}
.pb-40 {padding-bottom: 40px;}
.pb-45 {padding-bottom: 45px;}
.pb-50 {padding-bottom: 50px;}
.pb-60 {padding-bottom: 60px;}
.pb-100 {padding-bottom: 100px;}

.pl-0 {padding-left: 0;}
.pl-5 {padding-left: 5px;}
.pl-10 {padding-left: 10px;}
.pl-15 {padding-left: 15px;}
.pl-20 {padding-left: 20px;}
.pl-25 {padding-left: 25px;}
.pl-30 {padding-left: 30px;}
.pl-35 {padding-left: 35px;}
.pl-40 {padding-left: 40px;}
.pl-45 {padding-left: 45px;}
.pl-50 {padding-left: 50px;}

/* % Width Helpers */
.w-5 {width: 5%;}
.w-10 {width: 10%;}
.w-15 {width: 15%;}
.w-20 {width: 20%;}
.w-25 {width: 25%;}
.w-30 {width: 30%;}
.w-35 {width: 35%;}
.w-40 {width: 40%;}
.w-45 {width: 45%;}
.w-50 {width: 50%;}
.w-55 {width: 55%;}
.w-60 {width: 60%;}
.w-65 {width: 65%;}
.w-70 {width: 70%;}
.w-75 {width: 75%;}
.w-80 {width: 80%;}
.w-85 {width: 85%;}
.w-90 {width: 90%;}
.w-95 {width: 95%;}
.w-100 {width: 100%;}
