.page-nav {
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.narrow-button .btn-u.URLRedirectConfirmation{
  color: #fff;
  display: flex;
  gap: 6px;
}

.btn-u.URLRedirectConfirmation .glyphicon{
  font-size: 10px;
  padding-top: 4px;
}

.table-maker-widget p{
  padding-left: 1rem;
}

.table-maker-widget li{
  line-height: 1.6;
  margin-bottom: 11px;
}

.d-flex{
  display: flex;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.row .flex-wrap{
  display: flex;
  flex-wrap: wrap;
}


.d-none{
  display: none !important;
}

@media (min-width: 993px) {
  .d-md-initial{
    display: initial !important;
  }
  
  .d-md-none {
    display: none !important;
  }
}


@media  (max-width: 992px) {
  .page-nav {
    display: block;
  }
}

.page-nav a {
  padding: 0 20px;
  display: block;
  text-align: center;
  font-size: 13px;
  color: #00205a;
}

.btn-brd-hover:hover {
  background: #0089ae !important
}
.accordion {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #e4e9f0;
}

.accordion .panel {
  border: none;
  margin: 0;
}

.accordion .panel-default {
  border-bottom: 1px solid #e4e9f0;
}

.accordion .panel-default .panel-heading {
  padding: 0;
  margin: 0;
  border: none;
}

.accordion .panel-default:last-of-type {
  border-bottom: none;
}

.accordion button {
  border-bottom: none;
}

.accordion button {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 10px 20px;
  font-weight: 700;
  font-family: arial;
  font-size: 16px;
  color: #333;
  line-height: 26px;
  /* display: block; */
  width: 100%;
  text-align: left;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

.accordion button img {
  margin-right: 20px;
}

.accordion button:after {
  content: "\f067";
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 15px;
  color: #02a8ce;
}

.accordion-button.accordion-toggle:not(.collapsed):after {
  content: "\f068";
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  top: 15px;
  color: #02a8ce;
}

.accordion-button.accordion-toggle:not(.collapsed) {
  background-color: #ebf8fb;
}

.panel-body {
  background-color: #ebf8fb;
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 73px;
  padding-right: 65px;
  width: 100%;
}

#collapseThree .panel-body{
  padding-right: 15px;
}

.panel-body p{
  padding-left: 26px;;
}

.panel-body li{
  margin-bottom: 1em;  
}

.show {
  display: inline-block !important;
}

#product-overview {
  background-image: linear-gradient(180deg, #02a8ce, #0190b1);
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
  margin-top: 60px;
}

.btn-brd-hover:hover {
  color: white !important;
}

.bottom-cta {
  margin-top: 50px;
  background-image: linear-gradient(180deg, #02a8ce, #0190b1);
  padding: 30px;
}

.catalog-outlined {
  border: 1px solid white;
  background-color: transparent
}

.resource {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  margin-left: 0;
}

.tooltip {
  font-family: arial;
  font-size: 13px;
  color: #333;
  line-height: 19px;
  max-width: 250px;
  background: #fff;
  border: 1px solid #e4e9f0;
  box-shadow: 0 8px 14px 0 rgb(0 0 0 / 10%);
  text-align: left;
  opacity: 0;
  padding: 8px 21px;
  position: fixed;
  pointer-events: none;
  z-index: 999;
  margin-top: -10px;
  --arrowPos: 50%;
}

.tooltip:after {
  border-top-style: solid;
  border-right-style: solid;
  content: "";
  position: absolute;
  border-right-color: #222;
  border-top-color: #fff;
}

.tooltip.bottom-arrow:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: -6px;
  left: var(--arrowPos);
  margin-left: -8px;
  border-top-width: 6px;
}

.tooltip.left-arrow:after {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  left: -6px;
  top: 50%;
  margin-top: -4px;
  border-right-width: 6px;
}

.tip-trigger {
  position: absolute;
}

/* Side Message */

.slider-alert-box {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 280px;
  min-height: 100px;
  right: -250px;
  bottom: 60px;
  border-radius: 30px 0 0 30px !important;
  transition: all 0.5s;
  background: rgba(181, 241, 255, 0.76);
  z-index: 999;

}

.side-message-copy {
  text-align: left;
  width: calc(100% - 60px);
  margin-left: 30px;
  font-weight: normal;
  line-height: 1.25em;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.side-message-copy a {
  display: inline-block;
  background-color: #00205B;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  align-items: center;
  padding: 2px 8px 2px 8px;
  border-radius: 12px !important;
  margin-top: 8px;
}

.slider-alert-box.open {
  right: -1px;
}

.slider-alert-box .close-alert {
  width: 32px;
  height: 32px;
  border-radius: 16px !important;
  background-color: navy;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -16px;
  top: calc(50% - 16px);
  cursor: pointer;
}

.close-alert svg {
  fill: #fff;
  width: 14px;
  height: 14px;
  transition: all 0.5s;
  border-radius: 50%;
}

.slider-alert-box.show .close-alert svg {
  transform: rotate(0);
}


@media (max-width: 768px) {
  .slider-alert-box {
    bottom: unset;
    top: 205px;
  }

  .heading h2:before,
  .heading h2:after {
    width: 20%;
  }
}