@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,600;0,800;1,300;1,400;1,500;1,600;1,600;1,800&display=swap");

.sample-section {
  margin-top: 40vh;
  border-top: 1px solid #ccc;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* full viewport height */
  font: 400 12px "Poppins", sans-serif !important;
  color: #333;
  background: radial-gradient(#4ea0ac, #468ca0);
  min-height: 100vh;
}

.main-wrapper {
  flex: 1;
}

* {
  font-family: "Poppins", sans-serif;
}

a {
  color: #09adff;
  font-weight: 500;
}

h1 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

body.my-policies h1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

h5 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

h6 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/*=======  CONTACT POPUP =======*/
.no-scroll {
  overflow: hidden;
}

.contact-obv {
  text-decoration: none;
}

span.blockmaps1,
span.blockmaps2 {
  display: none;
}

span.blockmaps3::before {
  content: "@";
  display: inline;
}

#screenoverlay {
  background-color: rgba(14, 20, 29, 0.8);
  position: absolute;
  z-index: 15;
  min-width: 100vw;
  min-height: 100vh;
  display: none;
}

#screenoverlay .close-handle {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 40px;
  top: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
}

#screenoverlay .close-handle .icon,
#screenoverlay .close-handle .icon::before,
#screenoverlay .close-handle .icon::after {
  position: absolute;
  background: #f5f6f2;
}

#screenoverlay .close-handle .icon {
  left: 0;
}

#screenoverlay .close-handle .icon::before,
#screenoverlay .close-handle .icon::after {
  content: "";
}

#screenoverlay .close-handle .icon {
  background: transparent;
}

#screenoverlay .close-handle .icon::before {
  top: -50%;
  left: -50%;
  height: 20px;
  width: 2px;
  transform: translate(50%, 50%) rotate(45deg);
}

#screenoverlay .close-handle .icon::after {
  top: -50%;
  left: -50%;
  height: 20px;
  width: 2px;
  transform: translate(50%, 50%) rotate(-45deg);
}

#screenoverlay .close-handle:hover .icon::before {
  transition-duration: 300ms;
  transform: translate(50%, 50%) rotate(225deg);
}

#screenoverlay .close-handle:hover .icon::after {
  transition-duration: 300ms;
  transform: translate(50%, 50%) rotate(-225deg);
}

.contact-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f50052;
  border-radius: 10px;
  padding: 20px;
  z-index: 20;
  display: none;
  width: max-content;
  max-width: calc(100vw - 40px);
}

.popup-content p,
.popup-content p a {
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

/*=======  HEADER BAR =======*/
.section.header-bar {
  background: transparent;
  color: #fff;
  /* text-align: center; */
  padding: 0;
  position: fixed;
  z-index: 10;
}

.section.header-bar .pillar-wrapper {
  background-color: #f4f6f1;
  min-height: 100px;
  padding: 26px 100px;
  border-radius: 0 0 4rem 4rem;
  display: flex;
  align-items: center;
  max-width: var(--pillar-width);
}

.section.header-bar.open .pillar-wrapper {
  background-color: #0e141d;
}

.section.header-bar.open .pillar-wrapper .hamburger-menu li a {
  color: #ffffff;
}

.section.header-bar.open {
  padding-bottom: 0px;
}

.section.header-bar.open>.pillar-wrapper {
  border-radius: 0;
}

.section-header {
  margin-top: 74px;
}

.hamburger-menu-container a.hamburger-logout,
.hamburger-menu-container a.hamburger-logout:visited {
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  color: #f4f6f1;
}


/*=======  HEADER NAV =======*/
.nav-mobile {
  display: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  height: 100%;
  list-style: none;
}

.nav-list li,
.dropdown-list li {
  list-style: none;
  padding: 10px 20px 10px 0;
}

.nav-list li a,
.dropdown-list li a {
  color: #0e141d;
  text-decoration: none;
  font-size: 14px;
}

.nav-list .nav-active a,
.nav-list li a:hover,
.dropdown-list li a:hover,
.logout-account-dropdown .dropdown-list li a:hover {
  color: #f50052;
}

.logout-account-dropdown {
  display: none;
  position: absolute;
  padding: 10px;
  left: calc(-40px + 50%);
  min-width: max-content;
  transform: translateX(-50%);
  margin-top: 10px;
  background-color: #f4f6f1;
  border-radius: 10px;
}

.dropdown-list {
  list-style: none;
}

/*=======  HAMBURGER =======*/
.hamburger {
  /* position: absolute; */
  position: relative;
  width: 25px;
  height: 38px;
  float: left;
  /* top: 200px;
  left: 0px; */
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.header-bar.open .logo-header-link img {
  display: none;
}
.header-bar.open .logo-header-link {
    display: block;
    max-height: 48px;
    height: 48px;
    max-width: 48px;
    width: 48px;
    background-image: url(http://local.msportal:8888/images/header/logo-sm.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
}


.hamburger .icon,
.hamburger .icon::before,
.hamburger .icon::after {
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  position: absolute;
  height: 2px;
  width: 25px;
  top: 19px;
  background-color: #ffffff;
  display: block;
}

.hamburger .icon--dark,
.hamburger .icon--dark::before,
.hamburger .icon--dark::after {
  background-color: #0e141d;
}
  .hamburger.open .icon--dark, 
  .hamburger.open .icon--dark::before, 
  .hamburger.open .icon--dark::after {
    background-color: #ffffff;
  }

.hamburger .icon:before {
  content: "";
  top: -9px;
}

.hamburger .icon:after {
  content: "";
  top: 9px;
}

.hamburger.open .icon {
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.hamburger.open .icon:before {
  -webkit-transform: rotateZ(45deg) scaleX(0.75) translate(8px, -2px);
  transform: rotateZ(45deg) scaleX(0.75) translate(8px, -2px);
  /* -webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(-8px, -2px);
	transform: rotateZ(-45deg) scaleX(0.75) translate(-8px, -2px); */
}

.hamburger.open .icon:after {
  -webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, 2px);
  transform: rotateZ(-45deg) scaleX(0.75) translate(8px, 2px);
  /* -webkit-transform: rotateZ(45deg) scaleX(0.75) translate(-8px, 2px);
	transform: rotateZ(45deg) scaleX(0.75) translate(-8px, 2px); */
}

/* .icon-my-account-link.open .icon {
	left: 7px;
	width: 25px;
}

.icon-my-account-link.open .icon-my-account {
	height: 0px;
	margin-top: 19px;
}

.icon-my-account-link.open .icon:before {
	left: 0px;
	width: 25px;
	-webkit-transform: rotateZ(45deg) scaleX(0.75) translate(8px, -2px);
	transform: rotateZ(45deg) scaleX(0.75) translate(8px, -2px);
}

.icon-my-account-link.open .icon:after {
	left: 0px;
	width: 25px;
	-webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, 2px);
	transform: rotateZ(-45deg) scaleX(0.75) translate(8px, 2px);
} */

.hamburger:hover,
.logout-account-link:hover {
  cursor: pointer;
}

.logo-header-link {
  position: relative;
  display: inline-block;
  margin-right: auto;
  max-width: 48px;
}

.logo-header {
  max-height: 48px;
  height: 48px;
}

.logout-account-link {
  position: relative;
  display: block;
  float: right;
  width: 38px;
  height: 38px;
}

.icon-my-account {
  max-height: 38px;
  height: 38px;
  margin: 0 auto;
}

/*=======  HAMBURGER MENU =======*/
.hamburger-menu-container {
  background: #000;
  height: 0;
  min-height: 0;
  overflow-y: auto;
  margin-top: 0;
}

.header-bar.open {
  background: #0e141d;
}

.header-bar.open .hamburger-menu-container,
.hamburger-menu-container.open {
  min-height: calc(100vh - 100px);
  padding-top: 100px;
  background: #0e141d;
}

.header-bar.open>.pillar-wrapper {
  border-radius: 0 0 0 0;
}

.hamburger-menu-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.hamburger-menu {
  padding: 0;
  height: 0;
  min-height: 0vh;
  overflow-y: hidden;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  border-radius: 0;
}

.hamburger-menu.open {
  padding: 0;
  min-height: 50vh;
  height: fit-content;
}

.readview .hamburger-menu.open {
  overflow: auto;
  min-height: calc(100vh - 140px);
}

.hamburger-nav {
  background-color: transparent;
}

.header-bar.open .pillar-wrapper {
  padding-inline: calc(0px + var(--half-pillar-gap)) !important;
  width: 100%;
}

/* .hamburger-menu li {
  border-bottom: 1px solid #5c5c5c;
} */

.hamburger-menu li:hover {
  border-bottom-color: rgba(92, 92, 92, 0);
}

.hamburger-menu li a {
  padding: 12px 0;
  color: #0e141d;
  font-size: 34px;
  font-weight: 600;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: left;
}

.hamburger-menu li a::before,
.hamburger-menu li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #f5f6f2;
  position: absolute;
  right: 0px;
  top: calc(50% - 2px);
  transform: rotate(45deg);
}

.hamburger-menu li a::after {
  transform: rotate(-45deg);
  top: calc(50% + 2px);
}

.hamburger-menu li a:hover {
  /* background: rgb(72, 72, 72); */
  background-color: #459892;
  color: #f5f6f2;
  padding-left: 14px;
}

.hamburger-menu li a:hover::before,
.hamburger-menu li a:hover::after {
  right: 14px;
}

/*=======  MAIN MENU =======*/
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.main-nav li {
  margin: 0;
  padding: 0;
  display: block;
  float: left;
  width: 33.33%;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 18px 0;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0%;
  height: 2px;
  background: #fff;
  left: 0%;
  bottom: -1px;
}

.main-nav a:hover {
  background: #d7ecf4;
  background: -moz-linear-gradient(25deg,
      rgba(215, 236, 244, 1) 0%,
      rgba(239, 239, 239, 0) 70%);
  background: -webkit-linear-gradient(25deg,
      rgba(215, 236, 244, 1) 0%,
      rgba(239, 239, 239, 0) 70%);
  background: linear-gradient(25deg,
      rgba(215, 236, 244, 1) 0%,
      rgba(239, 239, 239, 0) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d7ecf4", endColorstr="#ffffff", GradientType=1);
}

.main-nav a:hover::after {
  width: 100%;
  background: #555;
  left: 0%;
}

.main-nav .nav-active a,
.main-nav .nav-active a:hover {
  background: #fff;
  font-weight: 600;
}

.main-nav .nav-active a::after,
.main-nav .nav-active a:hover::after {
  width: 100%;
  background: #000;
  left: 0%;
}

/*========== PROGRESS BAR ==========*/
.port-progress-bar {
  background-color: #11d5fe;
}

.port-waiting-container {
  height: 100%;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.login .port-waiting-container {
  height: 240px;
}

.login-wait-container {
  position: relative;
  clear: both;
}

.port-progress-container {
  width: 100%;
  height: 30px;
  position: relative;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.section-sub .port-progress-container {
  transform: translateY(-0%);
  -webkit-transform: translateY(-0%);
  -moz-transform: translateY(-0%);
  -ms-transform: translateY(-0%);
  -o-transform: translateY(-0%);
}

.port-progress-bar {
  height: 1px;
  position: absolute;
  width: 1px;
  top: 50%;

  animation: progress-bar 3s infinite;
  -moz-animation: progress-bar 3s infinite;
  -o-animation: progress-bar 3s infinite;
  -webkit-animation: progress-bar 3s infinite;

  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

@keyframes progress-bar {
  0% {
    width: 1px;
    left: 0px;
  }

  25% {
    width: 100%;
    left: 0px;
  }

  45% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  50% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  75% {
    width: 100%;
    left: 0px;
  }

  95% {
    width: 1px;
    left: 0px;
  }

  100% {
    width: 1px;
    left: 0px;
  }
}

@-webkit-keyframes progress-bar {
  0% {
    width: 1px;
    left: 0px;
  }

  25% {
    width: 100%;
    left: 0px;
  }

  45% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  50% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  75% {
    width: 100%;
    left: 0px;
  }

  95% {
    width: 1px;
    left: 0px;
  }

  100% {
    width: 1px;
    left: 0px;
  }
}

@-moz-keyframes progress-bar {
  0% {
    width: 1px;
    left: 0px;
  }

  25% {
    width: 100%;
    left: 0px;
  }

  45% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  50% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  75% {
    width: 100%;
    left: 0px;
  }

  95% {
    width: 1px;
    left: 0px;
  }

  100% {
    width: 1px;
    left: 0px;
  }
}

@-o-keyframes progress-bar {
  0% {
    width: 1px;
    left: 0px;
  }

  25% {
    width: 100%;
    left: 0px;
  }

  45% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  50% {
    width: 1px;
    right: 0px;
    left: 100%;
  }

  75% {
    width: 100%;
    left: 0px;
  }

  95% {
    width: 1px;
    left: 0px;
  }

  100% {
    width: 1px;
    left: 0px;
  }
}

/*========== CRM NOTIFICATIONS ==========*/
.port-access-lvl-notification {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;

  background: #f50052;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  min-height: 35px;
  text-align: center;
  position: fixed;
  top: 0;
  right: calc(50% - 170px);
  width: calc(50% - 40px);
  z-index: 100;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.notification-link {
  color: #fff !important;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-right: .5rem;
  border: 1px solid #fff;
  border-radius: .3rem;
  padding: .5rem 1rem;
}

.display-flex {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

/*========== SEMI OVERLAY ==========*/
.semi-page-overlay-container {
  position: absolute;
  width: 100%;
  background: #000;
  /* z-index: 1000; */
  z-index: 9;
  left: 0;
  top: 74px;
  bottom: 0;
}

.modal {
  display: none;
  z-index: 1000;
  background: #ff5955;
  position: fixed;
  width: 100%;
  padding: 40px 20px;
  color: #fff;
}

.modal-header {
  position: relative;
}

.modal-header .close {
  float: right;
  font-size: 30px;
  line-height: 1em;
  cursor: pointer;
}

.section-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  text-align: left;
}

.section-footer--mobile {
  display: none;
}

/* .section-footer>.col-xxs-12:first-of-type {
	margin-bottom: 10px;
} */

.section-footer--mobile>.col-xxs-12:first-of-type {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.section-footer,
.section-footer>.col-xxs-12:first-of-type>div a {
  color: #151515;
  line-height: 2em;
}

.section-footer>.col-xxs-12:first-of-type>div {
  margin-left: 10px;
}

.section-footer>.col-xxs-12 p {
  margin-left: 10px;
  font-size: 9px;
}

.section-footer img.logo-footer {
  min-width: 38px;
  height: 38px;
}

.section-main-content {
  background: transparent;
  background-color: transparent;
  margin-top: 74px;
}

.section-main-content>.section-content {
  position: relative;
  padding-top: 7.315%;
  padding-bottom: 10.278%;
}

.section-content .pillar-wrapper {
  padding-inline: 0;
}

/* .dashboard-wrapper::before, */
.section-main-content::before {
  content: "";
  position: absolute;
  height: calc(100% + 80px);
  width: calc(var(--pillar-width) + var(--half-pillar-gap));
  background-color: #f4f6f1;
  left: 0;
  top: -80px;
  z-index: -1;
  border-radius: 0 0 6rem 0;
}

.home .section-main-content::before {
  background-color: #0e141d;
}

.section-expandable {
  padding: 29px 0 29px 0;
}

.section-expandable-content {
  display: none;
}

.section-expandable-content-default-open {
  display: block;
}

.section-expandable .pillar-wrapper,
.section-content .pillar-wrapper {
  position: relative;
}

.more-handle {
  position: absolute;
  width: 50px;
  height: 50px;
  right: -0px;
  top: -30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
}

.more-handle.hint::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url(../images/content/icon-item-menu-hint.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(0deg);
  position: absolute;
  top: 6px;
  left: 9px;
  animation-name: rotate_logo;
  animation-duration: 9s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.more-handle:nth-of-type(1n + 1)::after {
  animation-delay: 0ms;
}

.more-handle:nth-of-type(1n + 2)::after {
  animation-delay: 350ms;
}

.more-handle:nth-of-type(1n + 3)::after {
  animation-delay: 600ms;
}

@keyframes rotate_logo {
  0% {
    transform: rotate(0deg);
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: rotate(900deg);
    opacity: 0;
  }
}

.large-padding-top .more-handle {
  top: -45px;
}

.more-handle .icon,
.more-handle .icon::before,
.more-handle .icon::after {
  position: absolute;
  top: calc(50% - 3px);
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 2.5px;
  -webkit-border-radius: 2.5px;
  -moz-border-radius: 2.5px;
  -o-border-radius: 2.5px;
  -ms-border-radius: 2.5px;
}

.more-handle .icon {
  left: 24px;
}

.more-handle .icon::before,
.more-handle .icon::after {
  content: "";
}

.more-handle .icon::before {
  top: calc(50% - 11px);
}

.more-handle .icon::after {
  top: calc(50% + 5px);
}

.more-handle:hover {
  /*border: 1px solid #333;*/
}

.more-handle:hover .icon {
  /*left: 13px;*/
  background: transparent;
}

.more-handle:hover .icon::before {
  top: calc(50% - 8px);
  left: 1px;
  height: 10px;
  width: 2px;
  transform: rotate(-45deg);
}

.more-handle:hover .icon::after {
  top: calc(50% - 2px);
  left: 1px;
  height: 10px;
  width: 2px;
  transform: rotate(45deg);
}

.section-content-active .more-handle .icon {
  /*left: 13px;*/
  background: transparent;
}

.section-content-active .more-handle .icon::before {
  top: calc(50% - 6px);
  left: 0px;
  height: 14px;
  width: 2px;
  transform: rotate(45deg);
}

.section-content-active .more-handle .icon::after {
  top: calc(50% - 6px);
  left: 0px;
  height: 14px;
  width: 2px;
  transform: rotate(-45deg);
}

.section-content-active .more-handle:hover .icon::before {
  transition-duration: 300ms;
  transform: rotate(225deg);
}

.section-content-active .more-handle:hover .icon::after {
  transition-duration: 300ms;
  transform: rotate(-225deg);
}

.section-main-content {
  min-height: calc(100vh - 333px);
  position: relative;
}

.list-edit-handle>span {
  font-size: 20px;
  margin-bottom: 48px;
  font-weight: 600;
}

.section-main-content>.section-content,
.main-wrapper+.section-content {
  padding: 24px calc(100px + var(--half-pillar-gap));
}

.section-main-content>.section-content:first-of-type {
  padding-top: 74px;
}

.section-content-more {
  display: none;
}

.section-content-more.no-padding {
  padding: 0px;
}

.section-content-more.no-padding-top,
.no-padding-top {
  padding-top: 0px;
}

.section-content-more.no-padding-bot {
  padding-bottom: 0px;
}

.section-content.large-padding-top {
  padding-top: 45px;
}

.section-content.small-margin-top {
  clear: both;
  margin-top: 15px;
}
.section-content.medium-margin-top {
  clear: both;
  margin-top: 25px;
}

.section-white {
  background: #fff;
}

.section-medium-dark {
  background: #e7e9eb;
  box-shadow: inset 0px 0px 5px #d4d4d4;
}

.section-dark {
  background: #d4d6d7;
  box-shadow: inset 0px 0px 5px #c0c0c0;
}

.section-space {
  margin: 7px 0px;
}

.section-space-top {
  margin-top: 7px;
}

.section-space-bottom {
  margin-bottom: 7px;
}

.section-space-large {
  margin: 20px 0px;
}

.section-space-large-top {
  margin-top: 20px;
}

.section-space-large-bottom {
  margin-bottom: 20px;
}

.section .section-space:first-of-type {
  /* margin-top: 0px; */
  margin: 0px;
  padding: 0;
}

.section .section-space:last-of-type {
  margin-bottom: 0px;
}

.section-label {
  font-size: 13px;
  font-weight: 400;
  padding: 0;
  margin-bottom: 20px;
  float: left;
  width: 100%;
}

.section-label-large {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 0px;
  float: left;
  width: 100%;
  color: #05141f;
}

.section-sub {
  float: left;
  width: 100%;
}

.section-sub-exclaim {
  color: #fff;
  background: rgb(17, 211, 252);
  background: -moz-linear-gradient(180deg,
      rgba(17, 211, 252, 1) 0%,
      rgba(9, 160, 255, 1) 100%);
  background: -webkit-linear-gradient(180deg,
      rgba(17, 211, 252, 1) 0%,
      rgba(9, 160, 255, 1) 100%);
  background: linear-gradient(180deg,
      rgba(17, 211, 252, 1) 0%,
      rgba(9, 160, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#11d3fc", endColorstr="#09a0ff", GradientType=1);
}

.section-sub-exclaim .btn-solid {
  background: #fff;
  border: 3px solid #fff;
  color: #09adff;
  text-decoration: none;
  float: left;
}

.list-content {
  float: left;
  width: 100%;
}

.content-list {
  padding: 14px 0;
  position: relative;
  float: left;
  width: 100%;
}

.list-more-content-active::after {
  opacity: 0;
}

.content-list-no-line {
  padding-bottom: 0;
}

.content-list.content-list-no-line::after {
  display: none;
}

.content-list-section-spacer,
.content-caption-spacer,
.content-caption.content-caption-spacer {
  padding-top: 42px;
}

.content-list-agree {
  padding-top: 30px;
  padding-bottom: 15px;
}

.content-list-light,
.content-list-light .list-label-small,
.content-list-light .list-label-large {
  color: #aaa;
}

.content-caption {
  padding-top: 14px;
  float: left;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
}

.list-label-content-icon {
  width: 40px;
  float: left;
  padding: 0px 10px 0 0;
}

.list-label-content-icon img {
  max-height: 30px;
}

.list-label-content-detail {
  float: left;
  width: calc(100% - 40px);
  margin-bottom: 20px;
}

.list-label-content-detail:last-of-type {
  margin-bottom: 0px;
}

.content-list::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #cccdce;
}

.section-sub.section-white .content-list::after {
  background: #ededed;
}

.list-content-faint .content-list::after {
  background: #ededed;
}

.section-sub.section-white .list-content-faint .content-list::after {
  background: #e4e4e4;
}

.section-sub .content-list:first-of-type {
  padding-top: 0px;
}

/* .section-sub .content-list:last-of-type {
	padding-bottom: 0px;
} */

/* .section-sub .content-list:last-of-type::after {
	display: none;
} */

.content-list .notification {
  /* margin-top: 15px; */
  margin-bottom: 0;
}

.list-label {
  font-size: 16px;
  font-weight: 400;
  clear: both;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.list-label-small {
  font-size: 11px;
  font-weight: 400;
  clear: both;
  color: #676767;
}

.list-label-large {
  font-size: 18px;
  font-weight: 500;
  clear: both;
}

.list-drop-down-handle {
  cursor: pointer;
}

.list-download-handle {
  cursor: pointer;
}

.list-download-handle form {
  float: left;
}

.section-sub-exclaim .list-label {
  font-size: 15px;
}

.section-sub-exclaim .list-label-small {
  font-size: 13px;
}

.section-sub-exclaim .list-label-large {
  font-size: 20px;
}

.list-label-col-2 {
  width: 50%;
  float: right;
  font-weight: inherit;
}

/* .list-label a.icon-label { text-decoration: none; } */
.list-label a.icon-label img {
  max-height: 21px;
  margin-top: -4px;
}

.btn-list-more,
.btn-list-download,
.btn-list-edit,
.btn-list-edit-inside,
.btn-list-update {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  float: right;
  cursor: pointer;
  color: #09adff;
  background: -webkit-linear-gradient(45deg, #52c5ff, #09adff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.label-btn-list-download {
  float: left;
  text-decoration: none;
  width: calc(100% - 20px);
}

.btn-text {
  position: relative;
  color: #09adff;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  padding-right: 10px;
  cursor: pointer;
}

.btn-text::before,
.btn-text::after {
  content: "";
  display: block;
  width: 2px;
  height: 6px;
  background: #09adff;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: 0px;
}

.btn-text::after {
  transform: rotate(-45deg);
  margin-top: -4px;
}

.btn-text-space-top {
  margin-top: 14px;
  float: left;
  clear: both;
}

.list-drop-down-handle.btn-text::before,
.list-drop-down-handle.btn-text::after {
  display: none;
}

.list-drop-down-handle.btn-text .btn-dropdown::before,
.list-drop-down-handle.btn-text .btn-dropdown::after {
  background: #09adff;
  top: calc(50% - 2px);
  height: 2px;
}

.list-drop-down-handle.btn-text {
  width: 100%;
}

.section-label-large .btn-list-more,
.section-label-large .btn-list-download,
.section-label-large .btn-list-edit,
.section-label-large .btn-list-edit-inside,
.section-label-large .btn-list-update {
  margin-top: 8px;
}

.btn-list-update {
  color: #09acff;
  background: -webkit-linear-gradient(45deg, #52c5ff, #09acff 100%);
}

.btn-list-update {
  display: none;
}

.btn-list-more::after,
.btn-list-download::after,
.btn-list-edit:after,
.btn-list-update:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #09adff;
}

.btn-list-more.icon-label::after,
.btn-list-download.icon-label::after,
.btn-list-edit.icon-label:after,
.btn-list-update.icon-label:after {
  bottom: -4px;
}

.btn-list-more:hover,
.btn-list-download:hover {
  background: -webkit-linear-gradient(45deg, #09adff, #09adff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-list-edit,
.btn-list-edit-inside,
.btn-list-update {
  color: #9e4bb2;
  background: -webkit-linear-gradient(45deg, #9e4bb2, #9e4bb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-list-update {
  color: #09acff;
  background: -webkit-linear-gradient(45deg, #09acff, #09acff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 10px;
}

.btn-list-edit:hover {
  background: -webkit-linear-gradient(45deg, #9e4bb2, #9e4bb2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-list-update:hover {
  background: -webkit-linear-gradient(45deg, #09acff, #09acff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-list-edit::after {
  background: #9e4bb2;
}

.btn-list-update::after {
  background: #09acff;
}

.btn-list-more:hover::after,
.btn-list-download:hover::after,
.btn-list-edit:hover::after,
.btn-list-update:hover::after {
  left: 50%;
  width: 0%;
}

.btn-dropdown {
  float: right;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

/* .btn-dropdown { position: absolute; right: 0; top: 22px; width: 30px; height: 20px; cursor: pointer; } */
/* .content-list:first-of-type .btn-dropdown { top: 10px; } */

.btn-dropdown::before,
.btn-dropdown::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6px;
  background: #333;
  width: 9px;
  height: 1px;
  transform: rotate(45deg);
}

.btn-dropdown::after {
  transform: rotate(-45deg);
  right: 0px;
}

.btn-dropdown.btn-active::before {
  transform: rotate(-45deg);
}

.btn-dropdown.btn-active::after {
  transform: rotate(45deg);
}

.section-sub-exclaim .btn-dropdown::before,
.section-sub-exclaim .btn-dropdown::after {
  background: #fff;
}

/* .btn-list-more { color: #09adff; }
	.btn-list-download { color: #09adff; } */
.list-more-content {
  display: none;
  padding: 15px 0 0 0;
  /*float: left; width: 100%;*/
}

.list-more-form {
  display: none;
  padding: 0px 0 0 0;
}

.list-more-content::after,
.list-more-form::after {
  content: "";
  display: block;
  clear: both;
}

.list-more-content p {
  margin-bottom: 1em;
}

.view-more-content {
  display: none;
}

.list-content-split-section {
  float: left;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #e4e4e4;
}

.list-content-split-section:first-of-type {
  padding-top: 0;
}

.list-content-split-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.search-faq-form {
  position: relative;
  max-width: 50%;
}

.search-faq-input {
  padding-block: 8px;
  padding-inline: 3px;
  border: none;
  border-bottom: 1px solid #0e141d;
  background-color: transparent;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #05141f;
}

.search-faq-input::placeholder {
  color: #697279;
}

.search-faq-button {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  position: absolute;
  right: 0;
  /* top: calc(50% + (16px / 2)); */
  bottom: 16px;
}

.search-faq-icon {
  content: url("/images/faq-search-icon.svg");
  display: block;
  width: 26px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.search-faq-button:hover .search-faq-icon {
  transform: translateY(-3px);
}

.search-faq-button:active .search-faq-icon {
  transform: scale(0.9);
}

.faq-categories {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  max-width: 60%;
  margin-bottom: 28px;
}

.faq-category-info-text {
  display: block;
  margin-top: 27px;
  margin-bottom: 9px;
}

.faq-category {
  display: flex;
  align-items: center;
  max-width: 180px;
  min-height: 62px;
  background-color: #56bbbd;
  color: #f5f6f2;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  padding: 0 14px;
  margin-right: 6px;
  margin-bottom: 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background ease-in-out .3s;
}

.faq-category:hover,
.faq-category--active {
  background-color: #459892;
}

.faq-categories+div {
  padding-bottom: 12px;
  border-bottom: 1px solid #cccdce;
}

.faq-results-count,
.faq-results-term {
  font-size: 15px;
  color: #05141f;
}

.faq-results-count {
  font-weight: 500;
}

.list-content[data-key="faq-results"] .list-more-content {
  padding: 14px 16px;
  background-color: #e5e6e3;
  color: #05141f;
  border-radius: 10px;
  margin-top: 14px;
}

/*====== STATUS INDICATOR =======*/
.status-indicator-container {
  font-size: 10px;
  float: right;
  margin-right: 45px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.status-indicator {
  background: #eee;
  border: 2px solid #fff;
  width: 45px;
  height: 25px;
  position: relative;
  margin-left: 6px;
  box-shadow: 0px 0px 5px 0px rgba(180, 180, 180, 1);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(180, 180, 180, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(180, 180, 180, 1);
}

/*TMP*/
.status-indicator {
  width: 30px;
  height: 30px;
}

.status-indicator::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: calc(100% - 23px);
  background: #fff;
  border: 3px solid #eee;
  width: 25px;
  height: 25px;
}

/*TMP*/
.status-indicator::after {
  left: calc(100% - 18px);
  width: 20px;
  height: 20px;
  opacity: 0;
}

.status-indicator-green {
  background: #5dc59b;
  box-shadow: 0px 0px 5px 0px rgba(93, 197, 155, 1);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(93, 197, 155, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(93, 197, 155, 1);
}

.status-indicator-green::after {
  border: 3px solid #5dc59b;
}

.status-indicator-orange {
  background: #fca032;
  box-shadow: 0px 0px 5px 0px rgba(252, 160, 50, 1);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(252, 160, 50, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(252, 160, 50, 1);
}

.status-indicator-orange::after {
  border: 3px solid #fca032;
}

.status-indicator-red {
  background: #f50052;
  box-shadow: 0px 0px 5px 0px rgba(224, 49, 86, 1);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(224, 49, 86, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(224, 49, 86, 1);
}

.status-indicator-red::after {
  border: 3px solid #f50052;
}

.status-indicator-negative {
  /* background: #ff5955;
	box-shadow: 0px 0px 5px 0px rgba(255,89,85,1);
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255,89,85,1);
	-moz-box-shadow: 0px 0px 5px 0px rgba(255,89,85,1); */
}

.status-indicator-negative::after {
  left: -2px;
}

.status-indicator,
.status-indicator::after,
.status-indicator-negative,
.status-indicator-negative::after {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
}

.status-indicator>div {
  position: absolute;
  right: 14px;
  top: 14px;
  width: max-content;
  font-size: 14px;
  background: #333;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  max-width: 0;
  height: 0;
  padding: 0;
  float: right;
  overflow: hidden;
}

.status-indicator.status-indicator-red>div {
  background: #ff5955;
}

.status-indicator.status-indicator-orange>div {
  background: #fca032;
}

.status-indicator.status-indicator-green>div {
  background: #30d058;
}

.status-indicator:hover>div {
  right: 40px;
  top: 0px;
  max-width: max-content;
  padding: 6px;
  height: auto;
}

/*===== CRITICAL CRM DATA ERROR NOTIFICATIONS ======*/
.no-crm-data-notification {
  color: #fff;
  padding: 0px;
}

.no-crm-data-notification .port-form-container form,
.no-crm-data-notification .myprofileformresult-container {
  float: left;
  padding: 20px;
}

.no-crm-data-notification .port-form-container form {
  padding-top: 40px;
}

.no-crm-data-notification .port-progress-bar {
  /*background: #fff;*/
  background: #0087c7;
}

.fullscreen-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0087c7;
  z-index: 1000000000;
  padding: 70px 40px;
  color: #ffffff;
}

.no-crm-data-notification h1,
.no-crm-data-notification h2,
.no-crm-data-notification p,
.no-crm-data-notification .myprofileformresult-container p,
.fullscreen-notification h1,
.fullscreen-notification p,
.fullscreen-notification a,
.no-crm-data-notification a {
  color: #fff;
  text-align: left;
}

.no-crm-data-notification p {
  font-size: 15px;
}

.fullscreen-notification a,
.no-crm-data-notification a {
  color: #99cfe9;
  text-decoration: none;
}

.fullscreen-notification a:hover,
.no-crm-data-notification a:hover {
  color: #99cfe9;
  text-decoration: underline;
}

.fullscreen-notification .portal-confirm-container {
  float: left;
  width: 100%;
}

.fullscreen-notification .portal-confirm-container .cta-btn {
  float: left;
  clear: none;
  margin-right: 20px;
}

.no-crm-data-notification .myprofileformresult-inner-container {
  padding-top: 0;
}

.no-crm-data-notification h1 {
  font-size: 38px;
  margin-bottom: 0em;
}

.no-crm-data-notification h1 span {
  font-weight: 800;
}

.no-crm-data-notification h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 30px 0 10px;
}

.no-crm-data-notification input::-webkit-input-placeholder {
  color: #99cfe9;
}

.no-crm-data-notification input::-moz-placeholder {
  color: #99cfe9;
}

.no-crm-data-notification input:-moz-placeholder {
  color: #99cfe9;
}

.no-crm-data-notification input:-ms-input-placeholder {
  color: #99cfe9;
}

.no-crm-data-notification .cta-btn {
  border: 3px solid #fff;
  color: #fff;
  margin-top: 30px;
}

.no-crm-data-notification .my-profile-field-container {
  color: #fff;
}

.no-crm-data-notification .my-profile-field-container input[type="text"],
.no-crm-data-notification .my-profile-field-container select,
.no-crm-data-notification .talktousform-container input[type="text"],
.no-crm-data-notification .talktousform-container input[type="password"],
.no-crm-data-notification .talktousform-container select,
.no-crm-data-notification .talktousform-container textarea,
.no-crm-data-notification .vehicle-history-notes-container textarea {
  border-bottom: 1px solid #fff;
  background-color: transparent;
}

.no-crm-data-notification .my-profile-field-container input[type="text"],
.no-crm-data-notification .my-profile-field-container select,
.no-crm-data-notification .talktousform-container input[type="text"],
.no-crm-data-notification .talktousform-container select,
.no-crm-data-notification .talktousform-container textarea,
.no-crm-data-notification .vehicle-history-notes-container textarea {
  background: transparent;
  color: #fff;
}

.no-crm-data-notification.compact-notification {
  width: 100%;
  float: none;
  text-align: left;
  background: #222;
  position: absolute;
  top: 74px;
  height: calc(100vh - 74px);
  z-index: 9;
}

.no-crm-data-notification.compact-notification::after {
  content: "";
  display: block;
  clear: both;
}

.no-crm-data-notification.compact-notification .port-form-container {
  max-width: 640px;
  margin: 0 auto;
}

.no-crm-data-notification .sqa-input-wrapper input {
  background: #222;
}

.no-crm-data-notification.compact-notification .notification {
  margin: 20px 0 30px;
}

.fullscreen-notification .portalbutton-logout,
.fullscreen-notification .portalbutton-logout:hover,
.no-crm-data-notification .portalbutton-logout,
.no-crm-data-notification .portalbutton-logout:hover {
  float: left;
  color: #fff;
  text-decoration: none;
}

/*===== NOTIFICATIONS ======*/
.message-container {
  float: left;
  width: 100%;
}

.semi-page-overlay-container .message-container .notification {
  margin-top: 30px;
}

.notification {
  background: #fca032;
  padding: 15px;
  position: relative;
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
  clear: both;
  max-width: 80%;
}

body.my-details .content-list+.notification {
  width: max-content;
  margin-top: 20px;
  float: left;
}

.notification a {
  color: #fff;
}

.notification h1 {
  font-size: 16px;
}

.notification strong {
  font-weight: 600;
}

.notification-icon-container,
.btn-close-notification {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 29px;
  height: 29px;
}

.btn-close-notification {
  cursor: pointer;
}

.notification-icon {
  position: absolute;
  top: 5px;
  right: 2px;
  width: 19px;
  height: 19px;
  background: #995c1f;
}

.notification-warning {
  background: #f50052;
}

.notification-warning .notification-icon {
  background: #592020;
}

.notification-good-response {
  background: #46cc62;
}

.notification-good-response .notification-icon {
  background: #25662c;
}

.notification-no-shape {
  color: #fca032;
  font-size: 13px;
  font-weight: 600;
  background: none;
  padding: 0;
}

.notification-no-shape span {
  font-weight: 600;
}

.notification-icon::before,
.notification-icon::after {
  content: "";
  display: block;
  width: 2px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%);
}

.notification-icon-container .notification-icon::before {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  height: 2px;
  margin-top: -5px;
}

.notification-icon-container .notification-icon::after {
  margin-top: -1px;
}

.close-notification-icon::before,
.close-notification-icon::after {
  width: 11px;
  height: 1px;
  left: 4px;
}

.close-notification-icon::before {
  transform: rotate(45deg);
}

.close-notification-icon::after {
  transform: rotate(-45deg);
}

.btn-close-notification:hover .close-notification-icon {
  top: 0px;
  right: 0px;
  width: 29px;
  height: 29px;
}

.btn-close-notification:hover .close-notification-icon::before {
  transform: rotate(-45deg);
  left: 9px;
}

.btn-close-notification:hover .close-notification-icon::after {
  transform: rotate(45deg);
  left: 9px;
}

.btn-close-notification.closing-notification .close-notification-icon,
.btn-close-notification.closing-notification:hover .close-notification-icon {
  top: 10px;
  right: 10px;
  width: 9px;
  height: 9px;
}

.btn-close-notification.closing-notification .close-notification-icon::before,
.btn-close-notification.closing-notification .close-notification-icon::after,
.btn-close-notification.closing-notification:hover .close-notification-icon::before,
.btn-close-notification.closing-notification:hover .close-notification-icon::after {
  width: 1px;
  left: 4px;
}

.notification-good-response .notification-icon-container .notification-icon::before {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  width: 1px;
  height: 9px;
  margin-top: -4px;
  transform: rotate(45deg);
  left: 10px;
}

.notification-good-response .notification-icon-container .notification-icon::after {
  margin-top: -1px;
  height: 5px;
  width: 1px;
  transform: rotate(-45deg);
  left: 6px;
}

.notification-warning .notification-icon-container .notification-icon::before {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  height: 5px;
  margin-top: -4px;
  left: 50%;
  transform: translate(-50%);
}

.notification-warning .notification-icon-container .notification-icon::after {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  height: 2px;
  margin-top: 2px;
  left: 50%;
  transform: translate(-50%);
}

div[data-step-index="5"] .notification {
  margin-bottom: 0;
  margin-top: 20px;
}

.system-message-templates {
  display: none;
}

.section-recommend h3 {
  text-align: center;
}

.recommend-start-screen-container {
  text-align: center;
}

.recommend-start-screen-container h3 {
  margin-bottom: 14px;
}

.recommend-btn {
  display: inline-block;
}

.recommend-btn a {
  display: inline-block;
  width: 30px;
  text-align: center;
  color: #333;
  text-decoration: underline;
  margin: 0 30px;
  /* background: -webkit-linear-gradient(45deg, #333333, #333333 100%); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent;*/
}

.recommend-btn a img {
  width: 30px;
  color: #333;
  background: -webkit-linear-gradient(45deg, #333333, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.recommend-btn a span {
  font-size: 15px;
}

.recommend-form-section {
  display: none;
}

/*=======  BANK FORM =======*/
.bank-branch-details-records {
  display: none;
}

/*=======  COVID NOTIFICATION BANNER =======*/
.notification-banner {
  height: 34px;
  background-color: #c84393;
  padding: 10px 65px;
  background-image: url(https://www.m-sure.co.za/media/2020/02/telkom-background-pattern.png);
  background-size: contain;
  background-repeat: repeat-x;
  text-align: center;
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
}

.notification-banner a {
  color: #fff;
}

.notification-banner p {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.notification-banner img {
  display: none;
  height: 30px;
  margin-left: 10px;
  border: 3px solid #fff;
}

.notification span {
  font-weight: 400;
}

#cookiebanner {
  background-color: #222 !important;
}


.my-faq .list-label {
  font-size: 14px;
}
.my-faq .list-more-content-active .list-label {
  font-weight: 500;
}
.my-faq .list-more-content-active .list-more-content {
  font-size: 15px; 
  font-weight: 500;
}

@media only screen and (max-width: 1330px) {
  :root {
    --pillar-width: calc(100% - 40px);
  }

  .notification-banner p {
    font-size: 14px;
  }

  .section.header-bar .pillar-wrapper {
    padding-inline: calc(100px + var(--half-pillar-gap));
  }

  .section-content .pillar-wrapper {
    padding-inline: 0 !important;
  }
}

@media only screen and (max-width: 1279px) {
  .section-content .pillar-wrapper {
    padding-inline: 20px !important;
  }
}

@media only screen and (max-width: 1179px) {
  .faq-categories {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1024px) {
  .notification-banner p {
    font-size: 14px;
  }

  .section-footer img.logo-footer {
    min-width: 38px;
    height: 38px;
  }

  .section-footer>.col-xxs-12:first-of-type>div a {
    line-height: 1.5em;
  }

  .search-faq-form {
    max-width: 60%;
  }

  .faq-categories {
    max-width: 90%;
  }
}

@media only screen and (max-width: 900px) {
  .notification-banner img {
    display: none;
  }

  .notification-banner {
    padding: 5px 10px;
  }

  .nav-mobile {
    display: inline-block;
  }

  .nav-desktop {
    display: none;
  }

  .section-content .pillar-wrapper {
    padding-inline: 20px;
  }

  .search-faq-form {
    max-width: 70%;
  }

  .faq-categories {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .section-footer {
    display: none;
  }

  .section-footer--mobile {
    display: block;
  }

  .section-footer img.logo-footer {
    min-width: 28px;
    height: 28px;
  }

  .section-footer>.col-xxs-12 {
    margin-bottom: 10px;
  }

  .section-footer>.col-xxs-12:first-of-type>div a {
    line-height: 1.2em;
    font-size: 10px;
  }

  .section-footer>.col-xxs-12 p {
    margin-left: 0;
  }

  .search-faq-form {
    max-width: 90%;
  }

  .section.header-bar .pillar-wrapper,
  .section-main-content>.section-content,
  .main-wrapper+.section-content {
    padding-inline: calc(70px + var(--half-pillar-gap));
  }

}


@media only screen and (max-width: 560px) {
  .port-access-lvl-notification {
    right: 75px;
    width: calc(50% - 10px);
  }

  .section.header-bar .pillar-wrapper {
    border-radius: 0 0 2.5rem 2.5rem;
  }

  .section.header-bar .pillar-wrapper,
  .section-main-content>.section-content,
  .main-wrapper+.section-content {
    padding-inline: calc(40px + var(--half-pillar-gap));
  }

  .logo-header-link,
  .logo-footer-link {
    max-width: 38px;
  }

  .logo-header-link img {
    width: 38px;
    height: 38px;
  }

  .section.header-bar.open .pillar-wrapper .logo-header-link {
    max-width: 100% !important;
    max-height: 100% !important;
  }

  .section.header-bar.open .logo-header-link>img {
    height: 60px;
    width: 60px;
    max-height: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .notification-banner p {
    font-size: 11px;
  }

  .notification-banner {
    padding: 5px 10px;
  }

  .section.header-bar .pillar-wrapper,
  .section-main-content>.section-content,
  .main-wrapper+.section-content {
    padding-inline: calc(var(--half-pillar-gap));
  }

  .section-main-content::before {
    border-radius: 0 0 3rem 0;
  }

  .section-main-content>.section-content:last-of-type {
    padding-bottom: 50px;
  }
}

/*/////////////////////////*/
/* TABLET LANDSCAPE DEVICE */
/*/////////////////////////*/
/* @media only screen and (min-width: 480px) {
  .port-access-lvl-notification {
    padding: 20px 6px 6px 6px;
  }
} */

@media only screen and (min-width: 786px) {
  .more-handle {
    right: 15px;
  }

  .port-access-lvl-notification {
    right: calc(50% - 50px);
    width: calc(50% - 170px);
  }

  .fullscreen-notification {
    padding: 160px;
  }

  .section-content .pillar-wrapper {
    padding-inline: inherit;
  }
}

@media only screen and (min-width: 1280px) {
  .more-handle {
    right: -15px;
  }

  .port-access-lvl-notification {
    right: calc(50% - 40px);
    width: 430px;
  }
}