::-moz-selection { /* Code for Firefox */
    color: black;
    background: #fedd00;
}

::selection {
    color: black;
    background: #fedd00;
}

@font-face {
    font-family: 'Raleway';
    src: url("../Raleway.ttf");
}
@font-face {
    font-family: 'Oooh Baby';
    src: url("../OoohBaby-Regular.ttf");
}

:root {
    --clr-primary: #fedd00;
    --clr-secondary: #f9423a;
    --clr-tertiary: hsl(174, 52%, 66%);

    --clr-tertiary-2: hsl(174, 27%, 51%);

    --clr-dark: #333;
    --clr-light: #fff;

    --fs-small: 12px;
    --fs-para: 14px;
    --fs-med: 20px;
    --fs-elem: 24px;
    --fs-large: 32px;
    --fs-hero: 48px;

    --fw-light: 300;
    --fw-medium: 400;
    --fw-heavy: 600;
    --fw-bold: 800;
}

body {
    font-family: Raleway;
    font-weight: 800;
    font-feature-settings: 'lnum' 1;
}

/* Utility Classes */

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-end {
    display: flex;
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 1rem;
}

.spacer-2 {
    padding: 2rem;
}

.margin-right-1 {
    margin-right: .5rem;
}

.fw-light {
    font-weight: var(--fw-light);
}

.fw-med {
    font-weight: var(--fw-medium);
}

.fw-heavy {
    font-weight: var(--fw-heavy);
}

.fw-bold {
    font-weight: var(--fw-bold);
}

/* Navbar */

.navbar-brand {
    padding: 25px;
    padding-left: 0px;
}

.navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav > li > a {
    text-shadow: none !important;
}

.nav {
    font-size: 16px;
}

.navbar-right {
    margin-right: 80px;
    margin-top: 24px;
}

















.btn {
    border: none !important;
    border-radius: 0px !important;
    background-image: none !important;
    text-shadow: none !important;
}

.btn-default {
    background-color: #fedd00 !important;
    color: black !important;
}

.btn-primary {
    /* color: #fedd00 !important; */
    /* background-color: black !important; */
}

.login-heading-section {
    display: none;
}

.nav-tabs > li > a {
    border-radius: 0px;
    color: black !important;
}

.skip-to-content a 
{
    padding: 10px 20px;
    position: absolute;
    top:-43px;
    left:0px;
    color:#FFFFFF;
    border-radius: 0px;
    background:#742774;
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 100;
    font-family: Segoe UI;
    font-size: 14px;
}

.skip-to-content a:focus 
{
    position:absolute;
    left:0px;
    top:0px;
    outline: none;
    color:#FFFFFF;
    -webkit-transition: top .1s ease-in;
    transition: top .1s ease-in;
}

.breadcrumb {
    display:none;
}

.page-header {
    margin-top: 0px;
    padding-top: 0px;
}

.validation-summary a {
    color:#f9432a!important;
    text-decoration: underline;
    font-weight: normal;
}

.description.above {
    font-weight: 500;
    font-size: 13px;
}

.termslink {
    font-size: 20px;
}
.termslink span {
    font-size: 18px;
}

/* Power Virtual Agent styles */
.pva-floating-style {
  position: fixed;
  bottom: 0px;
  right: 0px;
  margin-right: 16px;
  margin-bottom: 18px;
  z-index: 9999;
}
/* Power Virtual Agent styles ends */

.navbar-toggle .icon-bar {
    border: 1px solid #fff;
}

.navbar-right {
    margin-right:0px !important;
    margin-top:30px !important;
}

.dropdown-toggle {
    padding-right:0px !important;
}

/* Issue in preform.bundle.css causeing weird background colour */
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover {
    background-color: #fedd00 !important;
}

.button:hover > .fa {
  text-decoration: none;
}

.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #fd0;
  font-family: Raleway, sans-serif;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  font-feature-settings: 'lnum' 1;
  column-gap: 12px;
  -webkit-transition: all 400ms cubic-bezier(.25, .46, .45, .94);
  transition: all 400ms cubic-bezier(.25, .46, .45, .94);
  text-decoration: none;
}

.button.secondary {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  background-color: hsla(52, 0%, 100%, 0);
  color: #fff;
}

.button.inverse {
  border-style: solid;
  border-width: 1px;
  border-color: #333;
  background-color: hsla(52, 0%, 100%, 0);
  color: #333;
}

.button:hover {
  background-color: #c5af1e;
  text-decoration: underline;
  color: #000;
}

.button.secondary:hover {
  background-color: #fff;
  color: #333;
}

.button.inverse:hover {
  background-color: #fff;
  color: #333;
}

button {
  border: none;
}

.navbar-nav > li.weblink.active > a {
  border-radius: 1rem;
  background: #fd0;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.navbar-nav > li.weblink.active > a:hover {
  border-radius: 1rem;
  background: #fd0;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.navbar-nav > li.weblink > a {
  border-radius: 1rem;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.navbar-nav > li.weblink > a:hover {
  border-radius: 1rem;
  background: #111;
  color: #fd0;
  font-weight: bold;
  text-decoration: none;
}

.navbar-center {
    margin-left: 25%;
    margin-top: 30px;
}

.navbar-nav > li.dropdown {
    margin-left: clamp(0px,10vw,240px);
    font-weight: bold;
}

.navbar-nav > li.dropdown > a {
    font-weight: inherit;
}

.summit_pageheader {   
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-block: clamp(2rem,3vw,4rem);
    flex-wrap: wrap;
    column-gap: 2rem;
    row-gap: 1rem;
}

.summit_pagetitle {
    font-size: 32px;
}

.s-button:hover {
    text-decoration: none;
    outline: 1px solid #333;
}

.btn-large {
    font-size: 16px;
    padding: 8px 16px;
}

/* modal forms */

/* account details topup */
.account-topup > .modal-dialog {
    width: min(100vw,500px);
}

.account-topup .modal-body > iframe {
    height: 500px;
}

/* account details savings plan */
.account-savingplan > .modal-dialog {
    width: min(100vw,500px);
}

.account-savingplan .modal-body > iframe {
    height: 500px;
}

/* account details savings plan cancel */
.account-savingplan-cancel > .modal-dialog {
    width: min(100vw,500px);
}

.account-savingplan-cancel .modal-body > iframe {
    height: 500px;
}







h1 {
    font-size: 42px;
    line-height: 1;
}


/* Pension Applications */

.ppp-choice-group > .list-group-item:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.ppp-choice-group > .list-group-item:first-child {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.ppp-choice-group > .list-group-item {
    display: flex;
    width: 50%;
    box-sizing: border-box;
    padding: 2rem 3rem;
    margin: 0px;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.ppp-choice-group {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 767px) {
    .ppp-choice-group > .list-group-item:first-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 0px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 0px;
    }

    .ppp-choice-group > .list-group-item:last-child {
        border-top-right-radius: 0px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 10px;
    }

    .ppp-choice-group > .list-group-item {
        width: 100%;
        box-sizing: border-box;
    }

    .ppp-choice-group {
        display: flex;
        flex-direction: column;
    }
}


/*Spinner*/
.loader {
    position: absolute;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.8);
    z-index:9999;
    display:none;
}

.loaderText {
    text-align: center;
    display: block;
    position: absolute;
    margin: auto;
    top: max(calc(25% + 50px),200px);
    width: 100%;
    font-size: var(--fs-elem);
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

.loader::after {
    content:'';
    display:block;
    position:absolute;
    left:calc(50% - 50px);
    top:max(calc(25% - 50px),75px);
    width:100px;
    height:100px;
    border-style:solid;
    border-color:#949494;
    border-top-color:transparent;
    border-width: 7px;
    border-radius:50%;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}