@charset "UTF-8"; /*!

 */
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #da9089;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #d4ae69;
    --green: #a3ab80;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #a3ab80;
    --info: #17a2b8;
    --warning: #d4ae69;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace
}

*,*::before,*::after {
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

article,aside,figcaption,figure,footer,header,hgroup,main,nav,section {
    display: block
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}


.top-menu a{
    font-size: 15px !important;
}


.call-button {
    cursor: pointer;
    position: fixed;
    bottom: 70px;
    right: 70px;
    z-index: 999;
    margin-right: -37px;
    border-radius: 50%;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}

.floating-button {
    cursor: pointer;
    position: fixed;
    bottom: 70px;
    left: 70px;
    z-index: 999;
    margin-left: -37px;
    border-radius: 50%;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
}





  .wrapper {
  overflow: hidden;
  max-width: 390px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}
.wrapper .title-text {
  display: flex;
  width: 220%;
}
.wrapper .title {
  width: 50%;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .slide-controls {
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  margin: 30px 0 10px 0;
  justify-content: space-between;
  border: 1px solid lightgrey;
  border-radius: 15px;
}
.slide-controls .slide {
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup {
  color: #000;
}
.slide-controls .slider-tab {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 15px;
  background:linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
input[type="radio"] {
  display: none;
}
#signup:checked ~ .slider-tab {
  left: 50%;
}
#signup:checked ~ label.signup {
  color: #fff;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login {
  color: #000;
}
#login:checked ~ label.signup {
  color: #000;
}
#login:checked ~ label.login {
  cursor: default;
  user-select: none;
}
.wrapper .form-container {
  width: 100%;
  overflow: hidden;
}
.form-container .form-inner {
  display: flex;
  width: 200%;
}
.form-container .form-inner form {
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.form-inner form .field {
  height: 50px;
  width: 100%;
  /*margin-top: 20px;*/
}
.form-inner form .field input {
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 15px;
  border-radius: 10px;
  border: 1px solid lightgrey;
  border-bottom-width: 2px;
  font-size: 17px;
  transition: all 0.3s ease;
}
.form-inner form .field input:focus {
  border-color: #1a75ff;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder {
  color: #999;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder {
  color: #1a75ff;
}
.form-inner form .pass-link {
  margin-top: 5px;
}
.form-inner form .signup-link {
  text-align: end;
  margin-top: 50px;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a {
  color: #1a75ff;
  text-decoration: none;
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover {
  text-decoration: underline;
}
form .btn {
  height: 50px;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.class {
  /*height: 100%;*/
  /*width: 300%;*/
  /*position: absolute;*/
  /*left: -100%;*/
  background:-webkit-linear-gradient(right, hsl(357.13deg 71.67% 45.69%), hsl(16, 100%, 50%), hsl(0, 100%, 27%));
border-radius: 5px;
    transition: all 0.4s ease;
    padding: 10px;
    color: #fff;
}
form .btn:hover .btn-layer {
  left: 0;
}
form .btn input[type="submit"] {
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.w3layouts-head {
    /*background: url(img/m.jpg) no-repeat center;*/
    /*background-size: cover;*/
}
h1.agile-head {
    color: #fff;
    font-size: 2.5em;
    text-align: right !important;
    /*padding: 0.2em 4em 0.5em;*/
    font-weight: 600;
}


.para{
    margin-top:80px;
}
.para ul li{
        list-style: initial;
}
.cs81ContentDiv * {
    text-align: left;
    color:#44475b;
}
.cs81ContentDiv span {
    line-height: 26px;
}
.cs81ContentDiv p, .cs81ContentDiv ul {
    margin-bottom: 26px;
}
.cs81ContentDiv p {
    line-height: 28px;
}
.cs81ContentDiv a {
    color:#00b386;
}
.cs81ContentDiv h2, .cs81ContentDiv h3, .cs81ContentDiv h4, .cs81ContentDiv h5, .cs81ContentDiv h6, .cs81ContentDiv strong {
    font-weight: 500;
    font-size: 32px;
    color:#44475b;
}
.cp46RightSide {
    width: 350px;
    float: right;
    margin-top: 95px;
    top: 30px;
}


.scc87MainDiv {
    width: 350px;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e9e9eb;
}
.borderPrimary {
    border: 1px solid #e9e9eb;
}
.backgroundPrimary {
    background-color: #fff;
}
.center-align {
    text-align: center;
}
.scc87Heading {
    margin: 15px 0 20px;
}
.headingLarge {
    font-size:20px;
    line-height: 1.25rem;
}
.headingBase, .headingLarge {
    font-weight: 500;
}
.contentPrimary {
    color: #44475b;
}


.scc87SubHeading {
    margin-bottom: 20px;
}
.bodyBase, .bodyBaseHeavy {
    font-size: 14px;
    line-height: 1.25rem;
}
.bodyBase {
    font-weight: 400;
}
.contentSecondary {
    color:#7c7e8c;
}
.backgroundAccent, .backgroundPositive {
    background-color:#00b386;
    color:#fff;
}
.btn96DefaultClass {
    border-radius: 8px;
    flex-shrink: 0;
}
.btn96MediumButton {
    padding: 12px 16px;
    height: 40px;
}










.wrapper2 {
  width: 80%;
}
.container2 {
  background-color: white;
  color: black;
  border-radius: 5px;
  box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
  margin: 20px 0;
}


.question {
  font-size: 1.9rem;
  font-weight: 600;
  padding:30px 80px 30px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
     line-height: 2.0rem;
    font-size: 15px;

}

.question.active + .answercont {
}

@media screen and (max-width: 790px){

  .wrapper2 {
  width: 80%;
}
}


 #result {
      margin-top: 20px;
    }
    
    
    
    
    /* 2 */
.btn-2 {
  background: rgb(96,9,240) !important;
  background: linear-gradient(0deg, rgba(255, 43, 0, 1) 0%, rgba(251, 75, 2, 1) 100%) !important;
  border: none;
  
}
.btn-2:before {
  height: 0%;
  width: 2px;
}
.btn-2:hover {
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}


.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   /*box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),*/
   /*7px 7px 20px 0px rgba(0,0,0,.1),*/
   /*4px 4px 5px 0px rgba(0,0,0,.1);*/
  outline: none;
}






















.ban_sec {
    width: 100%;
  }
  .ban_img {
    width: 100%;
    position: relative;
  }
  .ban_img img {
    width: 100%;
  }
  .ban_text {
    position: absolute;
    top: 50%;
    left: 6%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .ban_text strong {
    font: 800 62.22px/70px "Montserrat", sans-serif;
    color: #fff;
    text-transform: uppercase;
  }
  .ban_text strong span {
    font: 400 44.44px/52px "Montserrat", sans-serif;
    letter-spacing: 3px;
  }
  .ban_text p {
    font: 400 25px/30px "Montserrat", sans-serif;
    color: #fff;
    margin: 7px 0 25px;
  }
  .ban_text a {
    display: inline-block;
    font: 800 19.39px/24px "Montserrat", sans-serif;
    background: #282828;
    border-radius: 26px;
    color: #fff;
    padding: 12px 28px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration:none;
  }
  .ban_text a:hover {
    background: #50af47;
  }
  
  @media (min-width: 1200px) and (max-width: 1399px) {
    .ban_text p {
      font-size: 21px;
    }
  }
  
  @media (min-width: 992px) and (max-width: 1199px) {
    .ban_text p {
      font-size: 17px;
    }
    .ban_text strong {
      font-size: 50px;
      line-height: 60px;
    }
    .ban_text strong span {
      font-size: 37px;
    }
    .ban_text a {
      font-size: 16px;
      line-height: 19px;
    }
  }
  
  @media only screen and (max-width: 991px) {
    .ban_text strong {
      font-size: 35px;
      line-height: 40px;
    }
    .ban_text strong span {
      font-size: 28px;
      line-height: 35px;
      letter-spacing: 2px;
    }
    .ban_text p {
      font-size: 14px;
      line-height: 20px;
    }
    .ban_text a {
      font-size: 13.39px;
      line-height: 15px;
    }
  }
  @media only screen and (max-width: 767px) {
    .ban_img img {
      min-height: 360px;
      object-fit: cover;
    }
  }
  @media only screen and (max-width: 575px) {
    .ban_text strong {
      background: rgba(0, 0, 0, 0.8);
      padding: 10px;
      width: 100%;
      display: block;
    }
  }
  @media only screen and (max-width: 480px) {
    .ban_text strong span {
      font-size: 22px;
      line-height: 31px;
      letter-spacing: 1px;
    }
    .ban_text {
      left: 2%;
    }
  }
  
  
  
  .clr h3 {
      font-size: 16px!important;
      color: #fff;
      background-color: #19503e;
      text-align: left;
      padding-left: 18px;
  }
  
  .check li {
      font-size: 14px;
      margin-bottom: 16px;
      list-style: none;
  
  }
  .check li i {
      border-radius: 100%;
      color: #fff;
      width: 35px;
      height: 35px;
      margin-right: 15px;
      font-size: 13px;
      text-align: center;
      font-weight: 400;
      line-height: 37px;
      background-color: #c82129;
  }


















footer {
    padding: 20px 0 0 0;
    color: #f8f8f8 !important;
}
footer .widgetheading {
    position: relative;
}
.widgetheading {
    width: 100%;
    padding: 0;
    font-weight: bold;
    font-size: 18px;
    color: #c82129;
    /*color:#fff ;*/

}
.style3 {
    color: #00FF00 !important;
}
.style2{
    color: #c82129;
    font-size: 1.6rem;
}
.style5 {
    color: #66FFFF;
}
ul.link-list li {
    margin: 0;
    padding: 12px 0 2px 0;
    list-style: none;
    font-size: 15px;
}
footer ul.link-list li a {
    color: rgba(255, 255, 255, 0.77) !important;
    font-size: 15px;
}
.widget {
    color: rgba(255, 255, 255, 0.77) !important;
    font-size: 15px;
}






.text-primary1 {
    color:  #c82129 !important;
}
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}
.fa-2x {
    font-size: 1.3em !important;
    color:  #c82129 !important;
}






hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title],abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 2.2rem;
    padding-bottom:20px;
}

ol,ul,dl {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,ul ul,ol ul,ul ol {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sub,sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent
}

a:hover {
    color: #0056b3;
    text-decoration: underline
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

pre,code,kbd,samp {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar
}

figure {
    margin: 0 0 1rem
}

img {
    vertical-align: middle;
    border-style: none
}

svg {
    overflow: hidden;
    vertical-align: middle
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

input,button,select,optgroup,textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[role="button"] {
    cursor: pointer
}

select {
    word-wrap: normal
}

button,[type="button"],[type="reset"],[type="submit"] {
    -webkit-appearance: button
}

button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled) {
    cursor: pointer
}

button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type="radio"],input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0
}

textarea {
    overflow: auto;
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

progress {
    vertical-align: baseline
}

[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

h1,.h1 {
    font-size: 2.5rem
}

h2,.h2 {
    font-size: 2rem
}

h3,.h3 {
    font-size: 1.75rem
}

h4,.h4 {
    font-size: 1.5rem
}

h5,.h5 {
    font-size: 1.25rem
}

h6,.h6 {
    font-size: 1rem
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1)
}

small,.small {
    font-size: .875em;
    font-weight: 400
}

mark,.mark {
    padding: .2em;
    background-color: #fcf8e3
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: .875em;
    color: #6c757d
}

.blockquote-footer::before {
    content: "— "
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

code {
    font-size: 87.5%;
    color: #da9089;
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700
}

pre {
    display: block;
    font-size: 87.5%;
    color: #212529
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media(min-width: 576px) {
    .container,.container-sm {
        max-width:540px
    }
}

@media(min-width: 768px) {
    .container,.container-sm,.container-md {
        max-width:720px
    }
}

@media(min-width: 992px) {
    .container,.container-sm,.container-md,.container-lg {
        max-width:960px
    }
}

@media(min-width: 1200px) {
    .container,.container-sm,.container-md,.container-lg,.container-xl {
        max-width:1140px
    }
}







#loading {
    background: url(assets/project/abcl/images/loading.gif) no-repeat center center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    /* background-color: #fff; */
  }
  h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.slick-nav--carousel3 {
  bottom: 0 !important;
  position: relative;
  top: -5rem;
}
.slick-slider{
  margin-bottom:0px !important;
}
#metaverseForm .By-clicking-on-Reque {
  margin-bottom: 20px;
}
.slick-nav__btn {
  background: #c7222a !important;
}

  .slick-nav__btn .icon {
    position: relative;
    top: -10px;
  }

ul li:before {
  list-style: none !important;
  content: "" !important;
}
@media (max-width: 1020px)
{
.adBannerHomeSlick {
  margin-right: -15px;
  margin-left: -15px;
  padding-top: 0 !important;
}
.banner__wrapper--v10 {
   height: 420px !important; 
}

}

.owl-nav{
  text-align-last: center;
  position:relative;
  top:-40px;
}
.owl-prev{
  border-radius: 5px;
  background-color: #19503e !important;
  padding: 21px;
  width: 20px;
  color: #ffff !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  margin-right: 15px;
}
.owl-next{
  border-radius: 5px;
  background-color: #19503e !important;
  width: 20px;
  color: #ffff !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  margin-right: 15px;
}

@media screen and (max-width: 1020px) {
.owl-drag{
  padding-top:0px !important;
}
.banner__content{
  padding-top:140px;
}
}


.fancy-title-view1 {
float: left;
width: 100%;
margin-bottom: 25px;
text-align: center;
}
.fancy-title-view1 h2 {
margin-bottom: 8px;
font-size: 40px;
font-weight: 700;
display: block;
}
.fancy-title-view1 p {
margin-bottom: 0px;
display: inline-block;
width: 65%;
}
.fancy-title-view1 i {
font-size: 22px;
}
.fancy-title-view1-color h2,
.fancy-title-view1-color p {
color: #ffffff;
}

.light-transparent {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
opacity: 0.65;
/* background-color: #000; */
}
.categories-view1-full {
padding: 6px 0px 80px 0px;
margin-top: 0;
margin-bottom: 0;
/* background: url(https://i.ibb.co/r4xf3sK/newslater.jpg); */
background-attachment: fixed;
position: relative;
/*min-height: 100vh;*/
}
.categories,
.categories-view1-wrap {
float: left;
width: 100%;
}
.categories ul li {
list-style: none;
}
.categories > ul > li {
float: none;
display: inline-block;
margin: 0px 0px 30px 0px;
vertical-align: top;
}
.categories-view1-wrap {
box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 16%);
padding: 30px 50px 30px 95px;
border-radius: 10px;
position: relative;
background-color: #ffffff;
}
.categories-view1 i {
position: absolute;
left: 0px;
top: 50%;
font-size: 30px;
/* color: #fb236a; */
width: 70px;
height: 70px;
border-radius: 0 100% 100% 0;
text-align: center;
/* padding-top: 18px; */
margin-top: -36px;
background-color: #ffffff;
border: 1px solid #eee;
border-left: none;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
.categories-view1 li:hover i {
color: #ffffff;
background-color: #c82129;
}

.categories-view1 li:hover img {
filter: brightness(0) invert(1);

}


.categories-view1 h5 {
display: block;
font-size: 19px;
  font-weight: 600;
margin-bottom: 0px;
color:#19503e;
}
.categories-view1 small {
font-size: 13px;
color: #666;
}
.categories-view1 span {
position: absolute;
right: 5px;
top: 8px;
font-size: 90px;
font-weight: 500;
color: #999;
opacity: 0.07;
line-height: 1;
}
.main-load-btn {
float: left;
width: 100%;
text-align: center;
margin: 30px 0px;
}
.main-load-btn a {
display: inline-block;
line-height: 1;
padding: 18px 45px;
color: #ffffff;
border-radius: 40px;
font-size: 16px;
font-weight: 600;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
background-color: #fb236a;
}
.main-load-btn a:hover {
background-color: #274160;
}
.more-spacer {
float: left;
width: 100%;
margin: 10px 0px;
}






.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0
}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.row-cols-1>* {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.row-cols-2>* {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.row-cols-3>* {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.row-cols-4>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.row-cols-5>* {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.row-cols-6>* {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media(min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-sm-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-sm-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-sm-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-sm-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-sm-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media(min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-md-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-md-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-md-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-md-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-md-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-md-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media(min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-lg-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-lg-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-lg-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-lg-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-lg-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media(min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size:0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .row-cols-xl-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .row-cols-xl-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .row-cols-xl-3>* {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .row-cols-xl-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%
    }

    .row-cols-xl-6>* {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529
}

.table th,.table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #353535
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #353535
}

.table tbody+tbody {
    border-top: 2px solid #353535
}

.table-sm th,.table-sm td {
    padding: .3rem
}

.table-bordered {
    border: 1px solid #353535
}

.table-bordered th,.table-bordered td {
    border: 1px solid #353535
}

.table-bordered thead th,.table-bordered thead td {
    border-bottom-width: 2px
}

.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05)
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075)
}

.table-primary,.table-primary>th,.table-primary>td {
    background-color: #b8daff
}

.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody {
    border-color: #7abaff
}

.table-hover .table-primary:hover {
    background-color: #9fcdff
}

.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th {
    background-color: #9fcdff
}

.table-secondary,.table-secondary>th,.table-secondary>td {
    background-color: #d6d8db
}

.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody {
    border-color: #b3b7bb
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf
}

.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th {
    background-color: #c8cbcf
}

.table-success,.table-success>th,.table-success>td {
    background-color: #e5e7db
}

.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody {
    border-color: #cfd3bd
}

.table-hover .table-success:hover {
    background-color: #daddcc
}

.table-hover .table-success:hover>td,.table-hover .table-success:hover>th {
    background-color: #daddcc
}

.table-info,.table-info>th,.table-info>td {
    background-color: #bee5eb
}

.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody {
    border-color: #86cfda
}

.table-hover .table-info:hover {
    background-color: #abdde5
}

.table-hover .table-info:hover>td,.table-hover .table-info:hover>th {
    background-color: #abdde5
}

.table-warning,.table-warning>th,.table-warning>td {
    background-color: #f3e8d5
}

.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody {
    border-color: #e9d5b1
}

.table-hover .table-warning:hover {
    background-color: #edddc1
}

.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th {
    background-color: #edddc1
}

.table-danger,.table-danger>th,.table-danger>td {
    background-color: #f5c6cb
}

.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody {
    border-color: #ed969e
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7
}

.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th {
    background-color: #f1b0b7
}

.table-light,.table-light>th,.table-light>td {
    background-color: #fdfdfe
}

.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody {
    border-color: #fbfcfc
}

.table-hover .table-light:hover {
    background-color: #ececf6
}

.table-hover .table-light:hover>td,.table-hover .table-light:hover>th {
    background-color: #ececf6
}

.table-dark,.table-dark>th,.table-dark>td {
    background-color: #c6c8ca
}

.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody {
    border-color: #95999c
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe
}

.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th {
    background-color: #b9bbbe
}

.table-active,.table-active>th,.table-active>td {
    background-color: rgba(0,0,0,.075)
}

.table-hover .table-active:hover {
    background-color: rgba(0,0,0,.075)
}

.table-hover .table-active:hover>td,.table-hover .table-active:hover>th {
    background-color: rgba(0,0,0,.075)
}

.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #353535
}

.table-dark {
    color: #fff;
    background-color: #343a40
}

.table-dark th,.table-dark td,.table-dark thead th {
    border-color: #454d55
}

.table-dark.table-bordered {
    border: 0
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255,255,255,.05)
}

.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: rgba(255,255,255,.075)
}

@media(max-width: 575.98px) {
    .table-responsive-sm {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-sm>.table-bordered {
        border: 0
    }
}

@media(max-width: 767.98px) {
    .table-responsive-md {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-md>.table-bordered {
        border: 0
    }
}

@media(max-width: 991.98px) {
    .table-responsive-lg {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-lg>.table-bordered {
        border: 0
    }
}

@media(max-width: 1199.98px) {
    .table-responsive-xl {
        display:block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-xl>.table-bordered {
        border: 0
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

.table-responsive>.table-bordered {
    border: 0
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control {
    appearance: none
}

select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file,.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

select.form-control[size],select.form-control[multiple] {
    height: auto
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,.form-row>[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #a3ab80
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #212529;
    background-color: rgba(163,171,128,.9);
    border-radius: .25rem
}

.form-row>.col>.valid-tooltip,.form-row>[class*="col-"]>.valid-tooltip {
    left: 5px
}

.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip {
    display: block
}

.was-validated .form-control:valid,.form-control.is-valid {
    border-color: #a3ab80;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23a3ab80' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-control:valid:focus,.form-control.is-valid:focus {
    border-color: #a3ab80;
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.25)
}

.was-validated select.form-control:valid,select.form-control.is-valid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:valid,textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .custom-select:valid,.custom-select.is-valid {
    border-color: #a3ab80;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23a3ab80' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus {
    border-color: #a3ab80;
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.25)
}

.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label {
    color: #a3ab80
}

.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip {
    display: block
}

.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label {
    color: #a3ab80
}

.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before {
    border-color: #a3ab80
}

.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before {
    border-color: #b9bf9f;
    background-color: #b9bf9f
}

.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.25)
}

.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #a3ab80
}

.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label {
    border-color: #a3ab80
}

.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label {
    border-color: #a3ab80;
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.form-row>.col>.invalid-tooltip,.form-row>[class*="col-"]>.invalid-tooltip {
    left: 5px
}

.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip {
    display: block
}

.was-validated .form-control:invalid,.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.was-validated select.form-control:invalid,select.form-control.is-invalid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.was-validated .custom-select:invalid,.custom-select.is-invalid {
    border-color: #dc3545;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat
}

.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label {
    color: #dc3545
}

.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip {
    display: block
}

.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label {
    color: #dc3545
}

.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before {
    border-color: #dc3545
}

.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before {
    border-color: #e4606d;
    background-color: #e4606d
}

.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before {
    border-color: #dc3545
}

.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label {
    border-color: #dc3545
}

.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.25)
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center
}

.form-inline .form-check {
    width: 100%
}

@media(min-width: 576px) {
    .form-inline label {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .input-group,.form-inline .custom-select {
        width: auto
    }

    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }

    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn:focus,.btn.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.btn.disabled,.btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

a.btn.disabled,fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary:focus,.btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
}

.btn-primary.disabled,.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38,143,255,.5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary:focus,.btn-secondary.focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
}

.btn-secondary.disabled,.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(130,138,145,.5)
}

.btn-success {
    color: #212529;
    background-color: #a3ab80;
    border-color: #a3ab80
}

.btn-success:hover {
    color: #fff;
    background-color: #929c69;
    border-color: #8c9563
}

.btn-success:focus,.btn-success.focus {
    color: #fff;
    background-color: #929c69;
    border-color: #8c9563;
    box-shadow: 0 0 0 .2rem rgba(144,151,115,.5)
}

.btn-success.disabled,.btn-success:disabled {
    color: #212529;
    background-color: #a3ab80;
    border-color: #a3ab80
}

.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #8c9563;
    border-color: #858e5e
}

.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(144,151,115,.5)
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info:focus,.btn-info.focus {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

.btn-info.disabled,.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
}

.btn-warning {
    color: #212529;
    background-color: #d4ae69;
    border-color: #d4ae69
}

.btn-warning:hover {
    color: #212529;
    background-color: #cb9e4b;
    border-color: #c99941
}

.btn-warning:focus,.btn-warning.focus {
    color: #212529;
    background-color: #cb9e4b;
    border-color: #c99941;
    box-shadow: 0 0 0 .2rem rgba(185,153,95,.5)
}

.btn-warning.disabled,.btn-warning:disabled {
    color: #212529;
    background-color: #d4ae69;
    border-color: #d4ae69
}

.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #c99941;
    border-color: #c59338
}

.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(185,153,95,.5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger:focus,.btn-danger.focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

.btn-danger.disabled,.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225,83,97,.5)
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5
}

.btn-light:focus,.btn-light.focus {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
    box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
}

.btn-light.disabled,.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(216,217,219,.5)
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124
}

.btn-dark:focus,.btn-dark.focus {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

.btn-dark.disabled,.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82,88,93,.5)
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:focus,.btn-outline-primary.focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

.btn-outline-primary.disabled,.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:focus,.btn-outline-secondary.focus {
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

.btn-outline-secondary.disabled,.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

.btn-outline-success {
    color: #a3ab80;
    border-color: #a3ab80
}

.btn-outline-success:hover {
    color: #212529;
    background-color: #a3ab80;
    border-color: #a3ab80
}

.btn-outline-success:focus,.btn-outline-success.focus {
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.5)
}

.btn-outline-success.disabled,.btn-outline-success:disabled {
    color: #a3ab80;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle {
    color: #212529;
    background-color: #a3ab80;
    border-color: #a3ab80
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.5)
}

.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:focus,.btn-outline-info.focus {
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.btn-outline-info.disabled,.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.btn-outline-warning {
    color: #d4ae69;
    border-color: #d4ae69
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #d4ae69;
    border-color: #d4ae69
}

.btn-outline-warning:focus,.btn-outline-warning.focus {
    box-shadow: 0 0 0 .2rem rgba(212,174,105,.5)
}

.btn-outline-warning.disabled,.btn-outline-warning:disabled {
    color: #d4ae69;
    background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #d4ae69;
    border-color: #d4ae69
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(212,174,105,.5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:focus,.btn-outline-danger.focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.btn-outline-danger.disabled,.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:focus,.btn-outline-light.focus {
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

.btn-outline-light.disabled,.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:focus,.btn-outline-dark.focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.btn-outline-dark.disabled,.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline
}

.btn-link:focus,.btn-link.focus {
    text-decoration: underline
}

.btn-link:disabled,.btn-link.disabled {
    color: #6c757d;
    pointer-events: none
}

.btn-lg,.btn-group-lg>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-sm,.btn-group-sm>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block+.btn-block {
    margin-top: .5rem
}

input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block {
    width: 100%
}

.fade {
    transition: opacity .15s linear
}

@media(prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media(prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.collapsing.width {
    width: 0;
    height: auto;
    transition: width .35s ease
}

@media(prefers-reduced-motion:reduce) {
    .collapsing.width {
        transition: none
    }
}

.dropup,.dropright,.dropdown,.dropleft {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

@media(min-width: 576px) {
    .dropdown-menu-sm-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-sm-right {
        right: 0;
        left: auto
    }
}

@media(min-width: 768px) {
    .dropdown-menu-md-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-md-right {
        right: 0;
        left: auto
    }
}

@media(min-width: 992px) {
    .dropdown-menu-lg-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-lg-right {
        right: 0;
        left: auto
    }
}

@media(min-width: 1200px) {
    .dropdown-menu-xl-left {
        right:auto;
        left: 0
    }

    .dropdown-menu-xl-right {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-toggle::after {
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: ""
}

.dropleft .dropdown-toggle::after {
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropleft .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"] {
    right: auto;
    bottom: auto
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:hover,.dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef
}

.dropdown-item.active,.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff
}

.dropdown-item.disabled,.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1.5rem;
    color: #212529
}

.btn-group,.btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group>.btn,.btn-group-vertical>.btn {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.btn-group>.btn:hover,.btn-group-vertical>.btn:hover {
    z-index: 1
}

.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active {
    z-index: 1
}

.btn-toolbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child) {
    margin-left: -1px
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after {
    margin-left: 0
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-group-vertical>.btn,.btn-group-vertical>.btn-group {
    width: 100%
}

.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn {
    margin-bottom: 0
}

.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0
}

.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file {
    margin-left: -1px
}

.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label {
    z-index: 3
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4
}

.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group>.custom-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-prepend,.input-group-append {
    display: -ms-flexbox;
    display: flex
}

.input-group-prepend .btn,.input-group-append .btn {
    position: relative;
    z-index: 2
}

.input-group-prepend .btn:focus,.input-group-append .btn:focus {
    z-index: 3
}

.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn {
    margin-left: -1px
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type="radio"],.input-group-text input[type="checkbox"] {
    margin-top: 0
}

.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-lg>.custom-select,.input-group-sm>.custom-select {
    padding-right: 1.75rem
}

.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    print-color-adjust: exact
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}

.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label {
    color: #6c757d
}

.custom-control-input[disabled]~.custom-control-label::before,.custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: 1px solid #adb5bd
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: .5rem;
    transition: transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .custom-switch .custom-control-label::after {
        transition: none
    }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff;
    -ms-transform: translateX(.75rem);
    transform: translateX(.75rem)
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    appearance: none
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.custom-select[multiple],.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef
}

.custom-select::-ms-expand {
    display: none
}

.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

.custom-select-sm {
    height: calc(1.5em + .5rem + 2px);
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    font-size: 1.25rem
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-input:focus~.custom-file-label {
    border-color: #80bdff;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label {
    background-color: #e9ecef
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse"
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse)
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    appearance: none
}

.custom-range:focus {
    outline: 0
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none
}

@media(prefers-reduced-motion:reduce) {
    .custom-range::-webkit-slider-thumb {
        transition: none
    }
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none
}

@media(prefers-reduced-motion:reduce) {
    .custom-range::-moz-range-thumb {
        transition: none
    }
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: .2rem;
    margin-left: .2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none
}

@media(prefers-reduced-motion:reduce) {
    .custom-range::-ms-thumb {
        transition: none
    }
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-ms-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
    border-radius: 1rem
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd
}

.custom-control-label::before,.custom-file-label,.custom-select {
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .custom-control-label::before,.custom-file-label,.custom-select {
        transition: none
    }
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:hover,.nav-link:focus {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus {
    isolation: isolate;
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: .25rem
}

.nav-pills .nav-link.active,.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff
}

.nav-fill>.nav-link,.nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}

.nav-justified>.nav-link,.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem
}

.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:hover,.navbar-brand:focus {
    text-decoration: none
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-text {
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

.navbar-toggler:hover,.navbar-toggler:focus {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat
}

.navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto
}

@media(max-width: 575.98px) {
    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media(min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow:row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }
}

@media(max-width: 767.98px) {
    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media(min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow:row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }
}

@media(max-width: 991.98px) {
    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media(min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow:row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media(max-width: 1199.98px) {
    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl {
        padding-right:0;
        padding-left: 0
    }
}

@media(min-width: 1200px) {
    .navbar-expand-xl {
        -ms-flex-flow:row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }
}

.navbar-expand {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl {
    padding-right: 0;
    padding-left: 0
}

.navbar-expand .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible
}

.navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5)
}

.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0,0,0,.7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0,0,0,.3)
}

.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border-color: rgba(0,0,0,.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.5)
}

.navbar-light .navbar-text a {
    color: rgba(0,0,0,.9)
}

.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus {
    color: rgba(0,0,0,.9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.5)
}

.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255,255,255,.75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255,255,255,.25)
}

.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.5);
    border-color: rgba(255,255,255,.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255,255,255,.5)
}

.navbar-dark .navbar-text a {
    color: #fff
}

.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus {
    color: #fff
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem
}

.card>hr {
    margin-right: 0;
    margin-left: 0
}

.card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.card-header+.list-group,.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(.25rem - 1px)
}

.card-img,.card-img-top,.card-img-bottom {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%
}

.card-img,.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck .card {
    margin-bottom: 15px
}

@media(min-width: 576px) {
    .card-deck {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .card-deck .card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px
    }
}

.card-group>.card {
    margin-bottom: 15px
}

@media(min-width: 576px) {
    .card-group {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

    .card-group>.card {
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-left: 0;
        border-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer {
        border-bottom-left-radius: 0
    }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media(min-width: 576px) {
    .card-columns {
        column-count:3;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }

    .card-columns .card {
        display: inline-block;
        width: 100%
    }
}

.accordion {
    overflow-anchor: none
}

.accordion>.card {
    overflow: hidden
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.accordion>.card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.accordion>.card>.card-header {
    border-radius: 0;
    margin-bottom: -1px
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: underline
}

.breadcrumb-item+.breadcrumb-item:hover::before {
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25)
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .badge {
        transition: none
    }
}

a.badge:hover,a.badge:focus {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

a.badge-primary:hover,a.badge-primary:focus {
    color: #fff;
    background-color: #0062cc
}

a.badge-primary:focus,a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.5)
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

a.badge-secondary:hover,a.badge-secondary:focus {
    color: #fff;
    background-color: #545b62
}

a.badge-secondary:focus,a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(108,117,125,.5)
}

.badge-success {
    color: #212529;
    background-color: #a3ab80
}

a.badge-success:hover,a.badge-success:focus {
    color: #212529;
    background-color: #8c9563
}

a.badge-success:focus,a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(163,171,128,.5)
}

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

a.badge-info:hover,a.badge-info:focus {
    color: #fff;
    background-color: #117a8b
}

a.badge-info:focus,a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
}

.badge-warning {
    color: #212529;
    background-color: #d4ae69
}

a.badge-warning:hover,a.badge-warning:focus {
    color: #212529;
    background-color: #c99941
}

a.badge-warning:focus,a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(212,174,105,.5)
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

a.badge-danger:hover,a.badge-danger:focus {
    color: #fff;
    background-color: #bd2130
}

a.badge-danger:focus,a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

a.badge-light:hover,a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5
}

a.badge-light:focus,a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(248,249,250,.5)
}

.badge-dark {
    color: #fff;
    background-color: #343a40
}

a.badge-dark:hover,a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124
}

a.badge-dark:focus,a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(52,58,64,.5)
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

@media(min-width: 576px) {
    .jumbotron {
        padding:4rem 2rem
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}

.alert-primary hr {
    border-top-color: #9fcdff
}

.alert-primary .alert-link {
    color: #002752
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db
}

.alert-secondary hr {
    border-top-color: #c8cbcf
}

.alert-secondary .alert-link {
    color: #202326
}

.alert-success {
    color: #555943;
    background-color: #edeee6;
    border-color: #e5e7db
}

.alert-success hr {
    border-top-color: #daddcc
}

.alert-success .alert-link {
    color: #393c2d
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb
}

.alert-info hr {
    border-top-color: #abdde5
}

.alert-info .alert-link {
    color: #062c33
}

.alert-warning {
    color: #6e5a37;
    background-color: #f6efe1;
    border-color: #f3e8d5
}

.alert-warning hr {
    border-top-color: #edddc1
}

.alert-warning .alert-link {
    color: #4c3e26
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

.alert-danger hr {
    border-top-color: #f1b0b7
}

.alert-danger .alert-link {
    color: #491217
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light hr {
    border-top-color: #ececf6
}

.alert-light .alert-link {
    color: #686868
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca
}

.alert-dark hr {
    border-top-color: #b9bbbe
}

.alert-dark .alert-link {
    color: #040505
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }

    to {
        background-position: 0 0
    }
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease
}

@media(prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes
}

@media(prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

.media-body {
    -ms-flex: 1;
    flex: 1
}

.list-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:hover,.list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,.list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.list-group-item+.list-group-item {
    border-top-width: 0
}

.list-group-item+.list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px
}

.list-group-horizontal {
    -ms-flex-direction: row;
    flex-direction: row
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item.active {
    margin-top: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px
}

@media(min-width: 576px) {
    .list-group-horizontal-sm {
        -ms-flex-direction:row;
        flex-direction: row
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media(min-width: 768px) {
    .list-group-horizontal-md {
        -ms-flex-direction:row;
        flex-direction: row
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media(min-width: 992px) {
    .list-group-horizontal-lg {
        -ms-flex-direction:row;
        flex-direction: row
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

@media(min-width: 1200px) {
    .list-group-horizontal-xl {
        -ms-flex-direction:row;
        flex-direction: row
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px;
        border-left-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px
    }
}

.list-group-flush {
    border-radius: 0
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff
}

.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus {
    color: #004085;
    background-color: #9fcdff
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db
}

.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41
}

.list-group-item-success {
    color: #555943;
    background-color: #e5e7db
}

.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus {
    color: #555943;
    background-color: #daddcc
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #555943;
    border-color: #555943
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb
}

.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460
}

.list-group-item-warning {
    color: #6e5a37;
    background-color: #f3e8d5
}

.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus {
    color: #6e5a37;
    background-color: #edddc1
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #6e5a37;
    border-color: #6e5a37
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus {
    color: #721c24;
    background-color: #f1b0b7
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe
}

.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca
}

.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5
}

.close:hover {
    color: #000;
    text-decoration: none
}

.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus {
    opacity: .75
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0
}

a.close.disabled {
    pointer-events: none
}

.toast {
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
    max-width: 350px;
    font-size: .875rem;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .25rem .75rem rgba(0,0,0,.1);
    opacity: 0;
    border-radius: .25rem
}

.toast:not(:last-child) {
    margin-bottom: .75rem
}

.toast.showing {
    opacity: 1
}

.toast.show {
    display: block;
    opacity: 1
}

.toast.hide {
    display: none
}

.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .25rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-body {
    padding: .75rem
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    -ms-transform: translate(0,-50px);
    transform: translate(0,-50px)
}

@media(prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    -ms-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -ms-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: min-content;
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media(min-width: 576px) {
    .modal-dialog {
        max-width:500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem);
        height: min-content
    }

    .modal-sm {
        max-width: 300px
    }
}

@media(min-width: 992px) {
    .modal-lg,.modal-xl {
        max-width:800px
    }
}

@media(min-width: 1200px) {
    .modal-xl {
        max-width:1140px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"] {
    padding: .4rem 0
}

.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0
}

.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 .4rem
}

.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"] {
    padding: .4rem 0
}

.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0
}

.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 .4rem
}

.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    left: 0;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    white-space: normal;
    word-spacing: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem
}

.popover .arrow::before,.popover .arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-top,.bs-popover-auto[x-placement^="top"] {
    margin-bottom: .5rem
}

.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before {
    bottom: 0;
    border-width: .5rem .5rem 0;
    border-top-color: rgba(0,0,0,.25)
}

.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after {
    bottom: 1px;
    border-width: .5rem .5rem 0;
    border-top-color: #fff
}

.bs-popover-right,.bs-popover-auto[x-placement^="right"] {
    margin-left: .5rem
}

.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before {
    left: 0;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: rgba(0,0,0,.25)
}

.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after {
    left: 1px;
    border-width: .5rem .5rem .5rem 0;
    border-right-color: #fff
}

.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"] {
    margin-top: .5rem
}

.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before {
    top: 0;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: rgba(0,0,0,.25)
}

.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after {
    top: 1px;
    border-width: 0 .5rem .5rem .5rem;
    border-bottom-color: #fff
}

.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7
}

.bs-popover-left,.bs-popover-auto[x-placement^="left"] {
    margin-right: .5rem
}

.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before {
    right: 0;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: rgba(0,0,0,.25)
}

.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after {
    right: 1px;
    border-width: .5rem 0 .5rem .5rem;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel {
    position: relative
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media(prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item.active,.carousel-item-next,.carousel-item-prev {
    display: block
}

.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right {
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left {
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    -ms-transform: none;
    transform: none
}

.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media(prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
        transition: none
    }
}

.carousel-control-prev,.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media(prefers-reduced-motion:reduce) {
    .carousel-control-prev,.carousel-control-next {
        transition: none
    }
}

.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-prev-icon,.carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50%/100% 100% no-repeat
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media(prefers-reduced-motion:reduce) {
    .carousel-indicators li {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentcolor;
    border-radius: 50%;
    opacity: 0;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media(prefers-reduced-motion:reduce) {
    .spinner-border,.spinner-grow {
        animation-duration: 1.5s
    }
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #a3ab80 !important
}

a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus {
    background-color: #8c9563 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #d4ae69 !important
}

a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus {
    background-color: #c99941 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #a3ab80 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #d4ae69 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .2rem !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-lg {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media(min-width: 576px) {
    .d-sm-none {
        display:none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media(min-width: 768px) {
    .d-md-none {
        display:none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media(min-width: 992px) {
    .d-lg-none {
        display:none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media(min-width: 1200px) {
    .d-xl-none {
        display:none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media print {
    .d-print-none {
        display: none !important
    }

    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.85714%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    -ms-grid-row-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    -ms-grid-row-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important
}

@media(min-width: 576px) {
    .flex-sm-row {
        -ms-flex-direction:row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }
}

@media(min-width: 768px) {
    .flex-md-row {
        -ms-flex-direction:row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }
}

@media(min-width: 992px) {
    .flex-lg-row {
        -ms-flex-direction:row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }
}

@media(min-width: 1200px) {
    .flex-xl-row {
        -ms-flex-direction:row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media(min-width: 576px) {
    .float-sm-left {
        float:left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media(min-width: 768px) {
    .float-md-left {
        float:left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }
}

@media(min-width: 992px) {
    .float-lg-left {
        float:left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media(min-width: 1200px) {
    .float-xl-left {
        float:left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.user-select-all {
    -webkit-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports (position: sticky) {
    .sticky-top {
        position:sticky;
        top: 0;
        z-index: 1020
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

.mt-0,.my-0 {
    margin-top: 0 !important
}

.mr-0,.mx-0 {
    margin-right: 0 !important
}

.mb-0,.my-0 {
    margin-bottom: 0 !important
}

.ml-0,.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,.my-1 {
    margin-top: .25rem !important
}

.mr-1,.mx-1 {
    margin-right: .25rem !important
}

.mb-1,.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,.my-2 {
    margin-top: .5rem !important
}

.mr-2,.mx-2 {
    margin-right: .5rem !important
}

.mb-2,.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,.my-3 {
    margin-top: 1rem !important
}

.mr-3,.mx-3 {
    margin-right: 1rem !important
}

.mb-3,.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,.my-5 {
    margin-top: 3rem !important
}

.mr-5,.mx-5 {
    margin-right: 3rem !important
}

.mb-5,.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,.py-0 {
    padding-top: 0 !important
}

.pr-0,.px-0 {
    padding-right: 0 !important
}

.pb-0,.py-0 {
    padding-bottom: 0 !important
}

.pl-0,.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,.py-1 {
    padding-top: .25rem !important
}

.pr-1,.px-1 {
    padding-right: .25rem !important
}

.pb-1,.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,.py-2 {
    padding-top: .5rem !important
}

.pr-2,.px-2 {
    padding-right: .5rem !important
}

.pb-2,.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,.py-3 {
    padding-top: 1rem !important
}

.pr-3,.px-3 {
    padding-right: 1rem !important
}

.pb-3,.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,.py-5 {
    padding-top: 3rem !important
}

.pr-5,.px-5 {
    padding-right: 3rem !important
}

.pb-5,.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,.my-auto {
    margin-top: auto !important
}

.mr-auto,.mx-auto {
    margin-right: auto !important
}

.mb-auto,.my-auto {
    margin-bottom: auto !important
}

.ml-auto,.mx-auto {
    margin-left: auto !important
}

@media(min-width: 576px) {
    .m-sm-0 {
        margin:0 !important
    }

    .mt-sm-0,.my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,.mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,.my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,.mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,.my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,.mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,.my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,.mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,.my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,.mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,.my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,.mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,.my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,.mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,.my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,.mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,.my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,.mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,.my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,.mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,.my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,.mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,.my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,.mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,.py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,.px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,.py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,.px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,.py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,.px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,.py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,.px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,.py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,.px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,.py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,.px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,.py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,.px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,.py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,.px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,.py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,.px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,.py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,.px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,.py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,.px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,.py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,.px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,.my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,.mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,.my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,.mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,.my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,.mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,.my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,.mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3,.my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,.mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,.my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,.mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4,.my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,.mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,.my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,.mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5,.my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,.mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,.my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,.mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,.my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,.mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,.my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,.mx-sm-auto {
        margin-left: auto !important
    }
}

@media(min-width: 768px) {
    .m-md-0 {
        margin:0 !important
    }

    .mt-md-0,.my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,.mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,.my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,.mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,.my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,.mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,.my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,.mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,.my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,.mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,.my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,.mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,.my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,.mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,.my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,.mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,.my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,.mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,.my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,.mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,.my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,.mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,.my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,.mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,.py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,.px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,.py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,.px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,.py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,.px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,.py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,.px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,.py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,.px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,.py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,.px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,.py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,.px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,.py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,.px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,.py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,.px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,.py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,.px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,.py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,.px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,.py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,.px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,.my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,.mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,.my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,.mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,.my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,.mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,.my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,.mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3,.my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,.mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,.my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,.mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4,.my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,.mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,.my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,.mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5,.my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,.mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,.my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,.mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,.my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,.mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,.my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,.mx-md-auto {
        margin-left: auto !important
    }
}

@media(min-width: 992px) {
    .m-lg-0 {
        margin:0 !important
    }

    .mt-lg-0,.my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,.mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,.my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,.mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,.my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,.mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,.my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,.mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,.my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,.mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,.my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,.mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,.my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,.mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,.my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,.mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,.my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,.mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,.my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,.mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,.my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,.mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,.my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,.mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,.py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,.px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,.py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,.px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,.py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,.px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,.py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,.px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,.py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,.px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,.py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,.px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,.py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,.px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,.py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,.px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,.py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,.px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,.py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,.px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,.py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,.px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,.py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,.px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,.my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,.mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,.my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,.mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,.my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,.mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,.my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,.mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3,.my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,.mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,.my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,.mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4,.my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,.mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,.my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,.mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5,.my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,.mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,.my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,.mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,.my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,.mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,.my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,.mx-lg-auto {
        margin-left: auto !important
    }
}

@media(min-width: 1200px) {
    .m-xl-0 {
        margin:0 !important
    }

    .mt-xl-0,.my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,.mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,.my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,.mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,.my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,.mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,.my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,.mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,.my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,.mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,.my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,.mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,.my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,.mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,.my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,.mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,.my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,.mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,.my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,.mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,.my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,.mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,.my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,.mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,.py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,.px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,.py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,.px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,.py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,.px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,.py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,.px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,.py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,.px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,.py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,.px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,.py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,.px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,.py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,.px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,.py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,.px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,.py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,.px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,.py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,.px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,.py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,.px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,.my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,.mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,.my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,.mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,.my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,.mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,.my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,.mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,.my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,.mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,.my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,.mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,.my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,.mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,.my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,.mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,.my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,.mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,.my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,.mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,.my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,.mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,.my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,.mx-xl-auto {
        margin-left: auto !important
    }
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0)
}

.text-monospace {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media(min-width: 576px) {
    .text-sm-left {
        text-align:left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media(min-width: 768px) {
    .text-md-left {
        text-align:left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media(min-width: 992px) {
    .text-lg-left {
        text-align:left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media(min-width: 1200px) {
    .text-xl-left {
        text-align:left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:hover,a.text-primary:focus {
    color: #0056b3 !important
}

.text-secondary {
    color: #6c757d !important
}

a.text-secondary:hover,a.text-secondary:focus {
    color: #494f54 !important
}

.text-success {
    color: #a3ab80 !important
}

a.text-success:hover,a.text-success:focus {
    color: #7d8659 !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:hover,a.text-info:focus {
    color: #0f6674 !important
}

.text-warning {
    color: #d4ae69 !important
}

a.text-warning:hover,a.text-warning:focus {
    color: #bb8c36 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:hover,a.text-danger:focus {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:hover,a.text-light:focus {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:hover,a.text-dark:focus {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media print {
    *,*::before,*::after {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    pre,blockquote {
        border: 1px solid #adb5bd;
        page-break-inside: avoid
    }

    tr,img {
        page-break-inside: avoid
    }

    p,h2,h3 {
        orphans: 3;
        widows: 3
    }

    h2,h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,.table th {
        background-color: #fff !important
    }

    .table-bordered th,.table-bordered td {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody {
        border-color: #353535
    }

    .table .thead-dark th {
        color: inherit;
        border-color: #353535
    }
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.sr-only-focusable:active,.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0)
}

.owl-carousel .owl-wrapper,.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0)
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-nav.disabled,.owl-carousel .owl-dots.disabled {
    display: none
}

.owl-carousel .owl-nav .owl-prev,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-prev,.owl-carousel .owl-nav button.owl-next,.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item .owl-lazy[src^=""],.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
    visibility: visible !important;
    background: #f2f2f2 !important;
    background: rgba(0,0,0,.06) !important;
    border: 0 none !important;
    box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: '!';
    visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

.selectize-dropdown-header {
    position: relative;
    padding: 5px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    border-radius: 3px 3px 0 0
}

.selectize-dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px !important
}

.selectize-dropdown-header-close:hover {
    color: #000
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    float: left;
    box-sizing: border-box
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none
}

.selectize-control.plugin-remove_button [data-value] {
    position: relative;
    padding-right: 24px !important
}

.selectize-control.plugin-remove_button [data-value] .remove {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 17px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 0 0 0;
    border-left: 1px solid #d0d0d0;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
    background: rgba(0,0,0,.05)
}

.selectize-control.plugin-remove_button [data-value].active .remove {
    border-left-color: #cacaca
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
    background: none
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
    border-left-color: #fff
}

.selectize-control.plugin-remove_button .remove-single {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px
}

.selectize-control {
    position: relative
}

.selectize-dropdown,.selectize-input,.selectize-input input {
    color: #303030;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    -webkit-font-smoothing: inherit
}

.selectize-input,.selectize-control.single .selectize-input.input-active {
    background: #fff;
    cursor: text;
    display: inline-block
}

.selectize-input {
    border: 1px solid #d0d0d0;
    padding: 8px 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    border-radius: 3px
}

.selectize-control.multi .selectize-input.has-items {
    padding: 6px 8px 3px
}

.selectize-input.full {
    background-color: #fff
}

.selectize-input.disabled,.selectize-input.disabled * {
    cursor: default !important
}

.selectize-input.focus {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.15)
}

.selectize-input.dropdown-active {
    border-radius: 3px 3px 0 0
}

.selectize-input>* {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom:1;*display: inline
}

.selectize-control.multi .selectize-input>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #f2f2f2;
    color: #303030;
    border: 0 solid #d0d0d0
}

.selectize-control.multi .selectize-input>div.active {
    background: #e8e8e8;
    color: #303030;
    border: 0 solid #cacaca
}

.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active {
    color: #7d7d7d;
    background: #fff;
    border: 0 solid #fff
}

.selectize-input>input {
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 2px 0 0 !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    -webkit-user-select: auto !important;
    box-shadow: none !important
}

.selectize-input>input::-ms-clear {
    display: none
}

.selectize-input>input:focus {
    outline: none !important
}

.selectize-input::after {
    content: ' ';
    display: block;
    clear: left
}

.selectize-input.dropdown-active::before {
    content: ' ';
    display: block;
    position: absolute;
    background: #f0f0f0;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0
}

.selectize-dropdown {
    position: absolute;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff;
    margin: -1px 0 0 0;
    border-top: 0 none;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    border-radius: 0 0 3px 3px
}

.selectize-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.selectize-dropdown [data-selectable] .highlight {
    background: rgba(125,168,208,.2);
    border-radius: 1px
}

.selectize-dropdown .option,.selectize-dropdown .optgroup-header {
    padding: 5px 8px
}

.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.selectize-dropdown [data-selectable].option {
    opacity: 1
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none
}

.selectize-dropdown .optgroup-header {
    color: #303030;
    background: #fff;
    cursor: default
}

.selectize-dropdown .active {
    background-color: #f5fafd;
    color: #495c68
}

.selectize-dropdown .active.create {
    color: #495c68
}

.selectize-dropdown .create {
    color: rgba(48,48,48,.5)
}

.selectize-dropdown-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch
}

.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input {
    cursor: pointer
}

.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input {
    cursor: text
}

.selectize-control.single .selectize-input:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #808080 transparent transparent transparent
}

.selectize-control.single .selectize-input.dropdown-active:after {
    margin-top: -4px;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #808080 transparent
}

.selectize-control.rtl.single .selectize-input:after {
    left: 15px;
    right: auto
}

.selectize-control.rtl .selectize-input>input {
    margin: 0 4px 0 -2px !important
}

.selectize-control .selectize-input.disabled {
    opacity: .5;
    background-color: #fafafa
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
    visibility: visible !important;
    background: #f2f2f2 !important;
    background: rgba(0,0,0,.06) !important;
    border: 0 none !important;
    box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: '!';
    visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

.selectize-dropdown-header {
    position: relative;
    padding: 5px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    border-radius: 3px 3px 0 0
}

.selectize-dropdown-header-close {
    position: absolute;
    right: 8px;
    top: 50%;
    color: #303030;
    opacity: .4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px !important
}

.selectize-dropdown-header-close:hover {
    color: #000
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-right: 1px solid #f2f2f2;
    border-top: 0 none;
    float: left;
    box-sizing: border-box
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
    border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
    display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none
}

.selectize-control.plugin-remove_button [data-value] {
    position: relative;
    padding-right: 24px !important
}

.selectize-control.plugin-remove_button [data-value] .remove {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 17px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: inherit;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 0 0 0;
    border-left: 1px solid #0073bb;
    border-radius: 0 2px 2px 0;
    box-sizing: border-box
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
    background: rgba(0,0,0,.05)
}

.selectize-control.plugin-remove_button [data-value].active .remove {
    border-left-color: #00578d
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
    background: none
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
    border-left-color: #aaa
}

.selectize-control.plugin-remove_button .remove-single {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 23px
}

.selectize-control {
    position: relative
}

.selectize-dropdown,.selectize-input,.selectize-input input {
    color: #303030;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    -webkit-font-smoothing: inherit
}

.selectize-input,.selectize-control.single .selectize-input.input-active {
    background: #fff;
    cursor: text;
    display: inline-block
}

.selectize-input {
    border: 1px solid #d0d0d0;
    padding: 8px 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
    border-radius: 3px
}

.selectize-control.multi .selectize-input.has-items {
    padding: 5px 8px 2px
}

.selectize-input.full {
    background-color: #fff
}

.selectize-input.disabled,.selectize-input.disabled * {
    cursor: default !important
}

.selectize-input.focus {
    box-shadow: inset 0 1px 2px rgba(0,0,0,.15)
}

.selectize-input.dropdown-active {
    border-radius: 3px 3px 0 0
}

.selectize-input>* {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom:1;*display: inline
}

.selectize-control.multi .selectize-input>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #1da7ee;
    color: #fff;
    border: 1px solid #0073bb
}

.selectize-control.multi .selectize-input>div.active {
    background: #92c836;
    color: #fff;
    border: 1px solid #00578d
}

.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active {
    color: #fff;
    background: #d2d2d2;
    border: 1px solid #aaa
}

.selectize-input>input {
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 1px !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    -webkit-user-select: auto !important;
    box-shadow: none !important
}

.selectize-input>input::-ms-clear {
    display: none
}

.selectize-input>input:focus {
    outline: none !important
}

.selectize-input::after {
    content: ' ';
    display: block;
    clear: left
}

.selectize-input.dropdown-active::before {
    content: ' ';
    display: block;
    position: absolute;
    background: #f0f0f0;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0
}

.selectize-dropdown {
    position: absolute;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff;
    margin: -1px 0 0 0;
    border-top: 0 none;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    border-radius: 0 0 3px 3px
}

.selectize-dropdown [data-selectable] {
    cursor: pointer;
    overflow: hidden
}

.selectize-dropdown [data-selectable] .highlight {
    background: rgba(125,168,208,.2);
    border-radius: 1px
}

.selectize-dropdown .option,.selectize-dropdown .optgroup-header {
    padding: 5px 8px
}

.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option {
    cursor: inherit;
    opacity: .5
}

.selectize-dropdown [data-selectable].option {
    opacity: 1
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
    border-top: 0 none
}

.selectize-dropdown .optgroup-header {
    color: #303030;
    background: #fff;
    cursor: default
}

.selectize-dropdown .active {
    background-color: #f5fafd;
    color: #495c68
}

.selectize-dropdown .active.create {
    color: #495c68
}

.selectize-dropdown .create {
    color: rgba(48,48,48,.5)
}

.selectize-dropdown-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch
}

.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input {
    cursor: pointer
}

.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input {
    cursor: text
}

.selectize-control.single .selectize-input:after {
    content: ' ';
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #808080 transparent transparent transparent
}

.selectize-control.single .selectize-input.dropdown-active:after {
    margin-top: -4px;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #808080 transparent
}

.selectize-control.rtl.single .selectize-input:after {
    left: 15px;
    right: auto
}

.selectize-control.rtl .selectize-input>input {
    margin: 0 4px 0 -2px !important
}

.selectize-control .selectize-input.disabled {
    opacity: .5;
    background-color: #fafafa
}

.selectize-control.multi .selectize-input.has-items {
    padding-left: 5px;
    padding-right: 5px
}

.selectize-control.multi .selectize-input.disabled [data-value] {
    color: #999;
    text-shadow: none;
    background: none;
    box-shadow: none
}

.selectize-control.multi .selectize-input.disabled [data-value],.selectize-control.multi .selectize-input.disabled [data-value] .remove {
    border-color: #e6e6e6
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
    background: none
}

.selectize-control.multi .selectize-input [data-value] {
    text-shadow: 0 1px 0 rgba(0,51,83,.3);
    border-radius: 3px;
    background-color: #1b9dec;
    background-image: linear-gradient(to bottom,#1da7ee,#178ee9);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee',endColorstr='#ff178ee9',GradientType=0);
    box-shadow: 0 1px 0 rgba(0,0,0,.2),inset 0 1px rgba(255,255,255,.03)
}

.selectize-control.multi .selectize-input [data-value].active {
    background-color: #0085d4;
    background-image: linear-gradient(to bottom,#008fd8,#0075cf);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8',endColorstr='#ff0075cf',GradientType=0)
}

.selectize-control.single .selectize-input {
    box-shadow: 0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 rgba(255,255,255,.8);
    background-color: #f9f9f9;
    background-image: linear-gradient(to bottom,#fefefe,#f2f2f2);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe',endColorstr='#fff2f2f2',GradientType=0)
}

.selectize-control.single .selectize-input,.selectize-dropdown.single {
    border-color: #b8b8b8
}

.selectize-dropdown .optgroup-header {
    padding-top: 7px;
    font-weight: bold;
    font-size: .85em
}

.selectize-dropdown .optgroup {
    border-top: 1px solid #f0f0f0
}

.selectize-dropdown .optgroup:first-child {
    border-top: 0 none
}

.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom:1;*display: inline
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.owl-stage {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.owl-item {
    display: -ms-flexbox;
    display: flex;
    height: auto !important
}

/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */
.datepicker {
    padding: 4px;
    border-radius: 4px;
    direction: ltr
}

.datepicker-inline {
    width: 220px
}

.datepicker-rtl {
    direction: rtl
}

.datepicker-rtl.dropdown-menu {
    left: auto
}

.datepicker-rtl table tr td span {
    float: right
}

.datepicker-dropdown {
    top: 0;
    left: 0
}

.datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #999;
    border-top: 0;
    border-bottom-color: rgba(0,0,0,.2);
    position: absolute
}

.datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-top: 0;
    position: absolute
}

.datepicker-dropdown.datepicker-orient-left:before {
    left: 6px
}

.datepicker-dropdown.datepicker-orient-left:after {
    left: 7px
}

.datepicker-dropdown.datepicker-orient-right:before {
    right: 6px
}

.datepicker-dropdown.datepicker-orient-right:after {
    right: 7px
}

.datepicker-dropdown.datepicker-orient-bottom:before {
    top: -7px
}

.datepicker-dropdown.datepicker-orient-bottom:after {
    top: -6px
}

.datepicker-dropdown.datepicker-orient-top:before {
    bottom: -7px;
    border-bottom: 0;
    border-top: 7px solid #999
}

.datepicker-dropdown.datepicker-orient-top:after {
    bottom: -6px;
    border-bottom: 0;
    border-top: 6px solid #fff
}

.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.datepicker td,.datepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: none
}

.table-striped .datepicker table tr td,.table-striped .datepicker table tr th {
    background-color: transparent
}

.datepicker table tr td.day:hover,.datepicker table tr td.day.focused {
    background: #eee;
    cursor: pointer
}

.datepicker table tr td.old,.datepicker table tr td.new {
    color: #999
}

.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover {
    background: none;
    color: #999;
    cursor: default
}

.datepicker table tr td.highlighted {
    background: #d9edf7;
    border-radius: 0
}

.datepicker table tr td.today,.datepicker table tr td.today:hover,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover {
    background-color: #fde19a;
    background-image: linear-gradient(to bottom,#fdd49a,#fdf59a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a',endColorstr='#fdf59a',GradientType=0);
    border-color: #fdf59a #fdf59a #fbed50;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #000
}

.datepicker table tr td.today:hover,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today[disabled],.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today.disabled:hover[disabled] {
    background-color: #fdf59a
}

.datepicker table tr td.today:active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:hover.active {
    background-color: #fbf069 \9
}

.datepicker table tr td.today:hover:hover {
    color: #000
}

.datepicker table tr td.today.active:hover {
    color: #fff
}

.datepicker table tr td.range,.datepicker table tr td.range:hover,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover {
    background: #eee;
    border-radius: 0
}

.datepicker table tr td.range.today,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover {
    background-color: #f3d17a;
    background-image: linear-gradient(to bottom,#f3c17a,#f3e97a);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a',endColorstr='#f3e97a',GradientType=0);
    border-color: #f3e97a #f3e97a #edde34;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border-radius: 0
}

.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today[disabled],.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today.disabled:hover[disabled] {
    background-color: #f3e97a
}

.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:hover.active {
    background-color: #efe24b \9
}

.datepicker table tr td.selected,.datepicker table tr td.selected:hover,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover {
    background-color: #9e9e9e;
    background-image: linear-gradient(to bottom,#b3b3b3,#808080);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3',endColorstr='#808080',GradientType=0);
    border-color: #808080 #808080 #595959;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25)
}

.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected[disabled],.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected.disabled:hover[disabled] {
    background-color: #808080
}

.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:hover.active {
    background-color: #666 \9
}

.datepicker table tr td.active,.datepicker table tr td.active:hover,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover {
    background-color: #006dcc;
    background-image: linear-gradient(to bottom,#08c,#04c);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c',endColorstr='#0044cc',GradientType=0);
    border-color: #04c #04c #002a80;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25)
}

.datepicker table tr td.active:hover,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active[disabled],.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active.disabled:hover[disabled] {
    background-color: #04c
}

.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active {
    background-color: #039 \9
}

.datepicker table tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    border-radius: 4px
}

.datepicker table tr td span:hover,.datepicker table tr td span.focused {
    background: #eee
}

.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover {
    background: none;
    color: #999;
    cursor: default
}

.datepicker table tr td span.active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover {
    background-color: #006dcc;
    background-image: linear-gradient(to bottom,#08c,#04c);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c',endColorstr='#0044cc',GradientType=0);
    border-color: #04c #04c #002a80;
    border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25)
}

.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active[disabled],.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active.disabled:hover[disabled] {
    background-color: #04c
}

.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:hover.active {
    background-color: #039 \9
}

.datepicker table tr td span.old,.datepicker table tr td span.new {
    color: #999
}

.datepicker .datepicker-switch {
    width: 145px
}

.datepicker .datepicker-switch,.datepicker .prev,.datepicker .next,.datepicker tfoot tr th {
    cursor: pointer
}

.datepicker .datepicker-switch:hover,.datepicker .prev:hover,.datepicker .next:hover,.datepicker tfoot tr th:hover {
    background: #eee
}

.datepicker .prev.disabled,.datepicker .next.disabled {
    visibility: hidden
}

.datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle
}

.input-append.date .add-on,.input-prepend.date .add-on {
    cursor: pointer
}

.input-append.date .add-on i,.input-prepend.date .add-on i {
    margin-top: 3px
}

.input-daterange input {
    text-align: center
}

.input-daterange input:first-child {
    border-radius: 3px 0 0 3px
}

.input-daterange input:last-child {
    border-radius: 0 3px 3px 0
}

.input-daterange .add-on {
    display: inline-block;
    width: auto;
    min-width: 16px;
    height: 18px;
    padding: 4px 5px;
    font-weight: normal;
    line-height: 18px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    vertical-align: middle;
    background-color: #eee;
    border: 1px solid #ccc;
    margin-left: -5px;
    margin-right: -5px
}

.datepicker {
    color: inherit;
    background: #fff;
    border-radius: 4px;
    width: 278px;
    padding: 4px;
    margin-top: 1px;
    top: 100px;
    left: 20px;
    box-shadow: 4px 4px 16px 0 rgba(0,0,0,.13);
    margin-top: 3px
}

.datepicker td,.datepicker th {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    font-family: "lato-regular",sans-serif;
    border-radius: 0;
    border: 1px solid #f4f3f3
}

.datepicker table {
    width: 100%
}

.datepicker table tr td span {
    width: 25% !important;
    border-radius: 0 !important;
    border: 1px solid #f4f3f3;
    padding: 0 !important;
    margin: 0 !important
}

.datepicker table tr td.active:hover,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active[disabled],.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active.disabled:hover[disabled] {
    background:  #19503e
}

.datepicker-dropdown {
    border: 0;
    padding: 0 !important
}

.datepicker-dropdown:before {
    all: unset
}

.datepicker-dropdown:after {
    all: unset
}

.datepicker-dropdown div:not(:first-child) table tr td span.active:hover,.datepicker-dropdown div:not(:first-child) table tr td span.active:hover:hover,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover:hover,.datepicker-dropdown div:not(:first-child) table tr td span.active:active,.datepicker-dropdown div:not(:first-child) table tr td span.active:hover:active,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:active,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover:active,.datepicker-dropdown div:not(:first-child) table tr td span.active.active,.datepicker-dropdown div:not(:first-child) table tr td span.active:hover.active,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled.active,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover.active,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled,.datepicker-dropdown div:not(:first-child) table tr td span.active:hover.disabled,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled.disabled,.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover.disabled,.datepicker-dropdown div:not(:first-child) table tr td span.active[disabled],.datepicker-dropdown div:not(:first-child) table tr td span.active:hover[disabled],.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled[disabled],.datepicker-dropdown div:not(:first-child) table tr td span.active.disabled:hover[disabled] {
    background:  #19503e
}

.datepicker-months table,.datepicker-year table {
    width: 100%;
    border-radius: 0;
    border: 1px solid #f4f3f3
}

.datepicker-dropdown {
    z-index: 10000 !important
}

.mCustomScrollbar {
    -ms-touch-action: pinch-zoom;
    touch-action: pinch-zoom
}

.mCustomScrollbar.mCS_no_scrollbar,.mCustomScrollbar.mCS_touch_action {
    -ms-touch-action: auto;
    touch-action: auto
}

.mCustomScrollBox {
    position: relative;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    outline: 0;
    direction: ltr
}

.mCSB_container {
    overflow: hidden;
    width: auto;
    height: auto
}

.mCSB_inside>.mCSB_container {
    margin-right: 30px
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-left: 30px
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-left: 0
}

.mCSB_scrollTools {
    position: absolute;
    width: 16px;
    height: auto;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_outside+.mCSB_scrollTools {
    right: -26px
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    right: auto;
    left: 0
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
    left: -26px
}

.mCSB_scrollTools .mCSB_draggerContainer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
    margin: 20px 0
}

.mCSB_scrollTools .mCSB_draggerRail {
    width: 2px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px
}

.mCSB_scrollTools .mCSB_dragger {
    cursor: pointer;
    width: 100%;
    height: 30px;
    z-index: 1
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    position: relative;
    width: 4px;
    height: 100%;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 12px
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 8px
}

.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp {
    display: block;
    position: absolute;
    height: 20px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer
}

.mCSB_scrollTools .mCSB_buttonDown {
    bottom: 0
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
    margin-right: 0;
    margin-bottom: 30px
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
    min-height: 100%
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    width: auto;
    height: 16px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0
}

.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: -26px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
    margin: 0 20px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 2px;
    margin: 7px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 30px;
    height: 100%;
    left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 4px;
    margin: 6px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 12px;
    margin: 2px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 8px;
    margin: 4px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    display: block;
    position: absolute;
    width: 20px;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    cursor: pointer
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
    left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
    right: 0
}

.mCSB_container_wrapper {
    position: absolute;
    height: auto;
    width: auto;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-right: 30px;
    margin-bottom: 30px
}

.mCSB_container_wrapper>.mCSB_container {
    padding-right: 30px;
    padding-bottom: 30px;
    box-sizing: border-box
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 20px
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 20px
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
    bottom: 0
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    right: 0
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 20px
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    left: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
    margin-right: 0;
    margin-left: 30px
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
    padding-right: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
    padding-bottom: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 0;
    margin-left: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
    margin-bottom: 0
}

.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    transition: opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
    transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
    opacity: 0;
    filter: "alpha(opacity=0)";
    -ms-filter: "alpha(opacity=0)"
}

.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag {
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.4);
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.75);
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.85);
    filter: "alpha(opacity=85)";
    -ms-filter: "alpha(opacity=85)"
}

.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.9);
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp {
    background-image: url(mCSB_buttons.png);
    background-repeat: no-repeat;
    opacity: .4;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 0
}

.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -20px
}

.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -40px
}

.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -56px
}

.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover {
    opacity: .75;
    filter: "alpha(opacity=75)";
    -ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active {
    opacity: .9;
    filter: "alpha(opacity=90)";
    -ms-filter: "alpha(opacity=90)"
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.85)
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.9)
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255,255,255,.1);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255,255,255,.75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px auto
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.85)
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.9)
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px 0
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -20px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -40px
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -56px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 1px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px 0
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -20px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -40px
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
    width: 4px;
    background-color: #fff;
    background-color: rgba(255,255,255,.1);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    background-color: #fff;
    background-color: rgba(255,255,255,.75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 4px;
    margin: 6px 0
}

.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 6px;
    margin: 5px auto
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.85)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.9)
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px 0
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -20px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -40px
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -56px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75);
    border-radius: 2px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px 0
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -20px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -40px
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -56px
}

.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255,255,255,.1)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 2px
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%
}

.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 2px;
    margin: 7px auto
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px 0
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -20px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -40px
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -56px
}

.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255,255,255,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger {
    height: 14px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 14px;
    margin: 0 1px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 14px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 14px;
    margin: 1px 0
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    width: 16px;
    height: 16px;
    margin: -1px 0
}

.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
    height: 16px;
    width: 16px;
    margin: 0 -1px
}

.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
    background-position: 0 -72px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
    background-position: 0 -92px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: 0 -112px
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
    background-position: 0 -128px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.15)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -80px -72px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -80px -92px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -80px -112px
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -80px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
    width: 4px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    background-color: transparent;
    background-position: center
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);
    background-repeat: repeat-y;
    opacity: .3;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    height: 4px;
    margin: 6px 0;
    background-repeat: repeat-x
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -16px -72px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -16px -92px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -20px -112px
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -20px -128px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=)
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -96px -72px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -96px -92px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -100px -112px
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -100px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-y;
    background-image: linear-gradient(to right,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)
}

.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 70px
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 70px
}

.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
    border-radius: 16px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
    width: 8px;
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px rgba(255,255,255,.2)
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #555
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 8px
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 8px;
    margin: 4px 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px rgba(255,255,255,.2)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    width: 100%;
    height: 8px;
    margin: 4px auto
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1);
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1)
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools {
    opacity: 1;
    filter: "alpha(opacity=30)";
    -ms-filter: "alpha(opacity=30)"
}

.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    border-radius: 7px
}

.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical {
    right: 1px
}

.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical {
    box-shadow: inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal {
    bottom: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    border-radius: 5px;
    box-shadow: inset 1px 0 0 rgba(255,255,255,.4);
    width: 12px;
    margin: 2px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    height: 12px;
    width: auto
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #555
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #000;
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-3d-thick-dark.mCSB_scrollTools {
    box-shadow: inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 1px 0 0 rgba(255,255,255,.4),inset -1px 0 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(0,0,0,.2)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #777
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
    background-color: #fff;
    background-color: rgba(0,0,0,.05);
    box-shadow: inset 1px 1px 16px rgba(0,0,0,.1)
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
    right: 0;
    margin: 12px 0
}

.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
    bottom: 0;
    margin: 0 12px
}

.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical {
    left: 0;
    right: auto
}

.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
    height: 50px
}

.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
    width: 50px
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.2);
    filter: "alpha(opacity=20)";
    -ms-filter: "alpha(opacity=20)"
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.5);
    filter: "alpha(opacity=50)";
    -ms-filter: "alpha(opacity=50)"
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
    width: 6px;
    background-color: #000;
    background-color: rgba(0,0,0,.2)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px
}

.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 6px;
    margin: 5px 0
}

.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    width: 12px
}

.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
    height: 12px;
    margin: 2px 0
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
    width: 12px;
    background-color: #000;
    background-color: rgba(0,0,0,.2)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 6px;
    margin: 3px 5px;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
    height: 6px;
    margin: 5px 3px;
    position: absolute;
    width: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
    width: 100%;
    height: 12px;
    margin: 2px 0
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -32px -72px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -32px -92px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -40px -112px
}

.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -40px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.1)
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
    background-position: -112px -72px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
    background-position: -112px -92px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
    background-position: -120px -112px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
    background-position: -120px -128px
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-color: rgba(255,255,255,.2);
    box-sizing: border-box
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
    border-color: #000;
    border-color: rgba(0,0,0,.2)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
    background-color: rgba(255,255,255,.6)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #000;
    background-color: rgba(0,0,0,.6)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.75)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.85)
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #000;
    background-color: rgba(0,0,0,.9)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.75)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.85)
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: #fff;
    background-color: rgba(255,255,255,.9)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #c7c8ca
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
    background-color: rgba(0,0,0,.6)
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,.slick-slider .slick-list {
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before,.slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir="rtl"] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: #fff url("./../images/ajax-loader.gif") center center no-repeat
}

@font-face {
    font-family: "slick";
    src: url("../fonts/slick.eot?");
    src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"),url("../fonts/slick.woff") format("woff"),url("../fonts/slick.ttf") format("truetype"),url("../fonts/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

.slick-prev,.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    margin-top: -10px\9;
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding: 0;
    border: none;
    outline: none
}

.slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent
}

.slick-prev:hover:before,.slick-prev:focus:before,.slick-next:hover:before,.slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before,.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: #fff;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "←"
}

[dir="rtl"] .slick-prev:before {
    content: "→"
}

.slick-next {
    right: -25px
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto
}

.slick-next:before {
    content: "→"
}

[dir="rtl"] .slick-next:before {
    content: "←"
}

.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer
}

.slick-dots li button:hover,.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

.slick-nav {
    text-align: center
}

.slick-nav__btn {
    display: inline-block;
    list-style: none;
    width: 2.4rem;
    height: 2.4rem;
    background: #6a4742;
    margin: 0 2rem;
    border-radius: 2px;
    cursor: pointer
}

.slick-nav__btn .icon {
    font-size: 1.2rem;
    line-height: 2.8rem;
    color: #fff
}

.slick-nav__btn.slick-disabled {
    background: #cdcece;
    pointer-events: none
}

.slick-dots li {
    width: 5px;
    margin: 3px
}

.slick-dots li.slick-active button:before {
    font-size: .8rem;
    color: #6a4742
}

.slick-dots li.next-dot button:before,.slick-dots li.prev-dot button:before {
    font-size: .6rem
}

.slick-dots li button {
    padding: 0
}

.slick-dots li button:before {
    color: #e2a7a2;
    font-size: .5rem;
    opacity: 1
}

/*! nouislider - 14.6.0 - 6/27/2020 */
.noUi-target,.noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box
}

.noUi-target {
    position: relative
}

.noUi-base,.noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-connects {
    overflow: hidden;
    z-index: 0
}

.noUi-connect,.noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    transform-style: flat
}

.noUi-connect {
    height: 100%;
    width: 100%
}

.noUi-origin {
    height: 10%;
    width: 10%
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto
}

.noUi-vertical .noUi-origin {
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

.noUi-handle {
    backface-visibility: hidden;
    position: absolute
}

.noUi-touch-area {
    height: 100%;
    width: 100%
}

.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin {
    transition: transform .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-horizontal {
    height: 18px
}

.noUi-horizontal .noUi-handle {
    width: 34px;
    height: 28px;
    right: -17px;
    top: -6px
}

.noUi-vertical {
    width: 18px
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    top: -17px
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto
}

.noUi-target {
    background: #fafafa;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    box-shadow: inset 0 1px 1px #f0f0f0,0 3px 6px -5px #bbb
}

.noUi-connects {
    border-radius: 3px
}

.noUi-connect {
    background: #3fb8af
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    cursor: default;
    box-shadow: inset 0 0 1px #fff,inset 0 1px 7px #ebebeb,0 3px 6px -3px #bbb
}

.noUi-active {
    box-shadow: inset 0 0 1px #fff,inset 0 1px 7px #ddd,0 3px 6px -3px #bbb
}

.noUi-handle:before,.noUi-handle:after {
    content: "";
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #e8e7e6;
    left: 14px;
    top: 6px
}

.noUi-handle:after {
    left: 17px
}

.noUi-vertical .noUi-handle:before,.noUi-vertical .noUi-handle:after {
    width: 14px;
    height: 1px;
    left: 6px;
    top: 14px
}

.noUi-vertical .noUi-handle:after {
    top: 17px
}

[disabled] .noUi-connect {
    background: #b8b8b8
}

[disabled].noUi-target,[disabled].noUi-handle,[disabled] .noUi-handle {
    cursor: not-allowed
}

.noUi-pips,.noUi-pips * {
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px
}

.noUi-marker {
    position: absolute;
    background: #ccc
}

.noUi-marker-sub {
    background: #aaa
}

.noUi-marker-large {
    background: #aaa
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%
}

.noUi-value-horizontal {
    -ms-transform: translate(-50%,50%);
    transform: translate(-50%,50%)
}

.noUi-rtl .noUi-value-horizontal {
    -ms-transform: translate(50%,50%);
    transform: translate(50%,50%)
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%
}

.noUi-value-vertical {
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding-left: 25px
}

.noUi-rtl .noUi-value-vertical {
    -ms-transform: translate(0,50%);
    transform: translate(0,50%)
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px
}

.noUi-tooltip {
    display: block;
    position: absolute;
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    color: #000;
    padding: 5px;
    text-align: center;
    white-space: nowrap
}

.noUi-horizontal .noUi-tooltip {
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    left: 50%;
    bottom: 120%
}

.noUi-vertical .noUi-tooltip {
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    right: 120%
}

.noUi-horizontal .noUi-origin>.noUi-tooltip {
    -ms-transform: translate(50%,0);
    transform: translate(50%,0);
    left: auto;
    bottom: 10px
}

.noUi-vertical .noUi-origin>.noUi-tooltip {
    -ms-transform: translate(0,-18px);
    transform: translate(0,-18px);
    top: auto;
    right: 28px
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    transition-property: transform,height
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto
}

.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto
}

.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s;
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -ms-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -ms-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-pagination-progress {
    background: rgba(0,0,0,.25);
    position: absolute
}

.swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-transform: scale(0);
    transform: scale(0);
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-vertical>.swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255,255,255,.5)
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000
}

.swiper-container-3d {
    -o-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-cube,.swiper-container-flip {
    overflow: visible
}

.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-slide {
    visibility: hidden;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    filter: blur(50px);
    z-index: 0
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s steps(12,end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.container-fluid,.container-sm,.container-md,.container-lg,.container-xl {
    max-width: 1400px
}

@media screen and (max-width: 1200px) {
    .container-fluid,.container-sm,.container-md,.container-lg,.container-xl {
        max-width:1200px
    }
}

.fixed-post-login-container {
    max-width: 992px;
    padding-right: 18px;
    padding-left: 18px;
    margin-right: auto;
    margin-left: auto
}

@media screen and (max-width: 991px) {
    .fixed-post-login-container {
        padding-right:0;
        padding-left: 0
    }
}

.pull-right {
    float: right !important
}

.outerpadding {
    padding-left: 33px;
    padding-right: 33px
}

@media screen and (max-width: 1200px) {
    .outerpadding {
        padding-left:25px;
        padding-right: 25px
    }
}

@media screen and (max-width: 1020px) {
    .outerpadding {
        padding-left:0;
        padding-right: 0
    }
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute
}

.main-content {
    width: 100%;
    clear: both
}

@media screen and (max-width: 1020px) {
    .main-content {
        overflow-x:unset
    }
}

.float100 {
    float: left;
    width: 100%
}

.hide {
    display: none !important
}

img.pull-right {
    margin-left: 15px;
    margin-bottom: 15px
}

img {
    margin-bottom: 11px;
    max-width: 100%
}

:focus {
    outline: none
}

a:hover,a:focus,a:active {
    color:  #19503e;
    text-decoration: none;
    border-bottom: 1px solid  #19503e
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.padding48 {
    padding-left: 48px;
    padding-right: 48px
}

.category-cta {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    padding: 13px 22px;
    margin-bottom: 30px;
    outline: none;
    background-color: #fff;
    border: solid 1px  #19503e;
    color:  #19503e;
    text-transform: uppercase;
    border-left: 9px solid;
    display: inline-block
}

.category-cta:hover,.category-cta:focus,.category-cta:active {
    background-color:  #19503e;
    color: #fff;
    text-decoration: none;
    border-left: 9px solid  #19503e
}

@media screen and (max-width: 1020px) {
    .category-cta {
        font-size:1.6rem;
        line-height: 20px;
        padding: 7px 15px;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 768px) {
    .category-cta {
        font-size:1.2rem;
        line-height: 14px;
        padding: 8px 15px;
        margin-bottom: 20px
    }
}

.read-more {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    padding: 9px 22px;
    outline: none;
    background-color: #fff;
    border: solid 1px  #19503e;
    color:  #19503e;
    text-transform: uppercase;
    display: inline-block
}

.read-more:hover,.read-more:active,.read-more:focus {
    background-color:  #19503e;
    color: #fff;
    text-decoration: none
}

.red-link-btn {
    color:  #19503e
}

.red-link-btn:hover {
    color:  #19503e
}

.red-link-btn:focus {
    color:  #19503e
}

.pink-link-btn {
    color: #da9089
}

.pink-link-btn:hover {
    color: #da9089;
    border-bottom: 1px solid #da9089
}

.pink-link-btn:focus {
    color: #da9089
}

.green-link-btn {
    color: #969f6e
}

.green-link-btn:focus {
    color: #969f6e
}

.green-link-btn:hover {
    color: #969f6e;
    border-bottom: 1px solid #969f6e
}

.yellow-link-btn {
    color: #d4ae69
}

.yellow-link-btn:focus {
    color: #d4ae69
}

.yellow-link-btn:hover {
    color: #d4ae69;
    border-bottom: 1px solid #d4ae69
}

ul {
    list-style: none;
    font-size: 1.6rem;
    padding-left: 18px
}

ul li {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #6c7174 !important;
    padding-bottom: 10px;
    padding-top: 10px
}

ul li::before {
    content: "•";
    color:  #19503e;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em
}

ul li:last-child {
    padding-bottom: 0
}

ul ul {
    padding-top: 10px
}

ol {
    font-size: 1.6rem;
    padding-left: 18px
}

ol li {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #6c7174 !important;
    padding-bottom: 10px;
    padding-top: 10px
}

ol ol {
    padding-top: 10px
}

.table.border-colr td {
    border: solid 1px #353535
}

.table-heading {
    border-radius: 2px;
    background-color: #999;
    height: 44px
}

.heading-style {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    text-align: left;
    padding-left: 23px !important
}

.table-header {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #353535;
    border-radius: 2px;
    background-color: #fff;
    border: solid 1px #353535;
    height: 43px;
    width: 295px;
    padding-left: 27px !important
}

.table-xl-border {
    border-radius: 2px;
    background-color: #fff;
    border: solid 1px #e5e5e5
}

.table-img-tp {
    margin-top: -4px
}

.link-btn {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center
}

.table-link-btn {
    color: #3e593c
}

.input-btn-pd {
    padding-top: 15px
}

.equality-td {
    height: 96px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.29;
    letter-spacing: normal;
    color: #353535;
    padding-left: 25px !important
}

.border-colr {
    border-radius: 2px;
    background-color: #fff;
    border: solid 1px #353535
}

.pd-lft {
    padding-left: 26px !important
}

.equity-diversified {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #a5a5a5
}

.table-txt-pd {
    padding-top: 22px !important
}

.disabled {
    cursor: not-allowed
}

.primary-btn {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    border-radius: 2px;
    padding: 8px 22px;
    border: none;
    outline: none
}

.primary-red {
    background-color:  #19503e
}

.primary-red:hover,.primary-red:focus {
    background-color:  #19503e
}

.primary-red:active {
    background-color: #660d0a
}

.primary-red:focus {
    background-color: #660d0a;
    color: #fff
}

.primary-pink {
    background-color: #6a4742
}

.primary-pink:hover,.primary-pink:focus {
    background-color: #6a4742
}

.primary-pink:active {
    background-color: #52332e
}

.primary-pink:focus {
    background-color: #52332e;
    color: #fff
}

.primary-green {
    background-color: #3e593c
}

.primary-green:hover,.primary-green:focus {
    background-color: #3e593c
}

.primary-green:active {
    background-color: #1d311c
}

.primary-green:focus {
    color: #fff
}

.primary-yellow {
    background-color: #695934
}

.primary-yellow:hover,.primary-yellow:focus {
    background-color: #695934
}

.primary-yellow:active {
    background-color: #46391b
}

.primary-yellow:focus {
    background-color: #46391b;
    color: #fff
}

.btn-disabled-state {
    opacity: .5;
    color: #fff;
    background-color: #cdcece
}

.btn-disabled-state:hover,.btn-disabled-state:focus {
    color: #fff !important
}

.btn-disabled-state:disabled {
    color: #fff;
    text-decoration: none
}

.secondary-btn {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    border-radius: 2px;
    padding: 7px 22px;
    outline: none;
    background-color: #fff;
    border: solid 1px  #19503e
}

.secondary-red {
    color:  #19503e
}

.secondary-red:hover {
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 1px  #19503e
}

.secondary-red:active,.secondary-red:focus {
    color: #660d0a;
    border: solid 1px #660d0a
}

.secondary-pink {
    color: #6a4742;
    border: solid 1px #da9089
}

.secondary-pink:hover {
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 1px #da9089;
    color: #6a4742
}

.secondary-pink:active,.secondary-pink:focus {
    border: solid 1px #da9089
}

.secondary-green {
    color: #3e593c;
    border: solid 1px #969f6e
}

.secondary-green:hover {
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 1px #969f6e
}

.secondary-green:active,.secondary-green:focus {
    border: solid 1px #3e593c
}

.secondary-yellow {
    color: #695934;
    border: solid 1px #d4ae69
}

.secondary-yellow:hover {
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 1px #d4ae69
}

.secondary-yellow:active,.secondary-yellow:focus {
    border: solid 1px #695934
}

.btn-disabled-secondarystate {
    opacity: .5;
    color: #cdcece;
    background-color: #fff;
    border: solid 1px #cdcece
}

.btn-disabled-secondarystate:hover,.btn-disabled-secondarystate:focus {
    color: #cdcece
}

.btn-disabled-state {
    opacity: .5;
    color: #fff;
    background-color: #cdcece
}

.bg-color,.brown-bg,.bg-green,.bg-yellow {
    padding-top: 28px;
    padding-bottom: 28px;
    margin-top: 20px;
    margin-left: 0
}

.bg-color {
    background-color: #660d0a
}

.brown-bg {
    background-color: #6a4742
}

.bg-green {
    background-color: #3e593c
}

.bg-yellow {
    background-color: #695934
}

.btn-bgred-primary {
    color: #8b151b;
    background-color: #e0cece
}

.btn-bgred-primary:hover,.btn-bgred-primary:focus {
    background-color: #fff
}

.btn-bgred-primary:active {
    background-color: #e0cece
}

.btn-bgred-secondary {
    color: #fff;
    background-color: #660d0a;
    border: solid 1px #fff
}

.btn-bgred-secondary:hover,.btn-bgred-secondary:focus {
    box-shadow: 0 0 6px 0  #19503e;
    background-color: #660d0a;
    border: solid 1px rgba(255,255,255,.5)
}

.btn-bgred-secondary:active {
    background-color: #660d0a;
    border: solid 1px rgba(255,255,255,.5)
}

.bgred-disable-btn {
    opacity: 1;
    color: #8b151b;
    background-color: #fff
}

.bgred-secdisable-btn {
    opacity: .3;
    color: #fff;
    background-color: #660d0a;
    border: solid 1px #fff
}

.bgred-secdisable-btn:hover {
    color: #fff
}

.btn-bgbrown-primary {
    color: #6a4742;
    opacity: .8;
    background-color: #e1dad9
}

.btn-bgbrown-primary:hover,.btn-bgbrown-primary:focus {
    opacity: 1;
    background-color: #fff
}

.btn-bgbrown-primary:active {
    opacity: .8;
    background-color: #e1dad9
}

.btn-bgbrown-secondary {
    color: #fff;
    background-color: #6a4742;
    border: solid 1px #fff
}

.btn-bgbrown-secondary:hover,.btn-bgbrown-secondary:focus {
    box-shadow: 0 0 6px 0 #da9089;
    background-color: #6a4742;
    border: solid 1px rgba(255,255,255,.5)
}

.btn-bgbrown-secondary:active {
    border: solid 1px rgba(255,255,255,.5)
}

.bgbrown-disable-btn {
    opacity: .5 !important;
    color: #6a4742 !important;
    background-color: #fff;
    border-radius: 2px
}

.bgbrown-secdisable-btn {
    opacity: .3 !important;
    color: #fff !important;
    background-color: #6a4742;
    border: solid 1px #fff
}

.bgbrown-secdisable-btn:hover {
    color: #fff !important
}

.btn-bggreen-default {
    color: #3e593c;
    opacity: .8;
    background-color: #d8ddd8
}

.btn-bggreen-default:hover,.btn-bggreen-default:focus {
    background-color: #fff;
    opacity: 1
}

.btn-bggreen-default:active {
    background-color: #d8ddd8
}

.btn-bggreen-secondary {
    color: #fff;
    opacity: .5;
    background-color: #3e593c;
    border: solid 1px #fff
}

.btn-bggreen-secondary:hover,.btn-bggreen-secondary:focus {
    box-shadow: 0 0 6px 0 #969f6e;
    background-color: #3e593c;
    border: solid 1px rgba(255,255,255,.5)
}

.btn-bggreen-secondary:active {
    border: solid 1px rgba(255,255,255,.5)
}

.bggreen-disable-btn {
    opacity: .5;
    color: #3e593c;
    background-color: #fff
}

.bggreen-secdisable-btn {
    opacity: .3;
    color: #fff;
    background-color: #3e593c;
    border: solid 1px #fff
}

.bggreen-secdisable-btn:hover {
    color: #fff
}

.btn-bgyellow-default {
    color: #695934;
    opacity: .8;
    background-color: #e1ddd6
}

.btn-bgyellow-default:hover,.btn-bgyellow-default:focus {
    background-color: #fff;
    opacity: 1
}

.btn-bgyellow-default:active {
    opacity: .8;
    background-color: #e1ddd6
}

.btn-bgyellow-secondary {
    color: #fff;
    opacity: .5;
    background-color: #695934;
    border: solid 1px #fff
}

.btn-bgyellow-secondary:hover,.btn-bgyellow-secondary:focus {
    box-shadow: 0 0 6px 0 #d4ae69;
    background-color: #695934;
    border: solid 1px rgba(255,255,255,.5)
}

.btn-bgyellow-secondary:active {
    background-color: #695934;
    border: solid 1px rgba(255,255,255,.5)
}

.bgyellow-disable-btn {
    opacity: .5;
    color: #695934;
    background-color: #fff
}

.bgyellow-secdisable-btn {
    opacity: .3;
    color: #fff;
    background-color: #695934;
    border: solid 1px #fff
}

.bgyellow-secdisable-btn:hover {
    color: #fff
}

.label-text {
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    padding-top: 40px;
    padding-bottom: 5px
}

.placeholder-text {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    height: 44px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 1px #cdcece;
    color: #000;
    box-shadow: none
}

.placeholder-text:focus {
    box-shadow: 0 0 6px 0 #cdcece;
    border: solid 1px #6c7174
}

.error-lbl {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #bd2b2b
}

.validate-icon {
    background: url("../images/Tick.svg") no-repeat right center
}

.note-input {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px
}

.error,.selectized.error+.selectize-control>.selectize-input {
    border: solid 1px #bd2b2b !important;
    background: #bd2b2b1f !important
}

.glyphi-drop-down-style {
    top: 4px;
    font-size: 13px
}

.btn-drop-down-width {
    width: 100%;
    text-align: left;
    height: 44px
}

.btn-drop-down-width:hover,.btn-drop-down-width:focus {
    color: #c7c8ca;
    background-color: #fff
}

.dropdown-menu-width {
    min-width: 100%;
    padding: 0 0;
    top: auto
}

.dropdown-menu-item {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    padding: 8px 20px !important;
    border-bottom: 1px solid #efefef
}

.error-lbl {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #bd2b2b
}

.dropdown-placeholder-txt {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: #000
}

.pad-l-r-0 {
    padding-left: 0;
    padding-right: 0
}

.btn-drop-down-width {
    width: 100%;
    text-align: left;
    height: 44px
}

.btn-default {
    color: #c7c8ca;
    background-color: #fff;
    border-color: #cdcece
}

.dropdown-toggle:after {
    display: none
}

.container-new {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    padding-top: 3px;
    cursor: pointer;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.container-new input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 2px #cdcece
}

.checkmark:focus {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 2px #cdcece;
    outline: none
}

.container-new input:checked~.checkmark {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: solid 2px #cdcece;
    outline: none
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.container-new input:checked~.checkmark:after {
    display: block
}

.container-new .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid  #19503e;
    border-width: 0 2px 2px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.radio-wrapper {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    color: #000;
    display: block;
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
    cursor: pointer;
    width: 14px;
    height: 14px
}

.radio-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.radio {
    position: absolute;
    top: 3;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px #979797
}

.radio-wrapper input:checked~.radio {
    background-color: #fff;
    border: solid 1px #979797
}

.radio:after {
    content: "";
    position: absolute;
    display: none
}

.radio-wrapper input:checked~.radio:after {
    display: block
}

.radio-wrapper .radio:after {
    top: 1px;
    left: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:  #19503e
}

.field-slider-question {
    float: right
}

.tooltip-text-style {
    padding-top: 40px;
    padding-bottom: 10px
}

.ui-helper-hidden-accessible {
    display: none
}

.ui-menu {
    min-width: 140px !important;
    z-index: 99999 !important;
    background: #fff;
    border-radius: 0 !important;
    position: absolute;
    margin-top: 2px;
    padding: 10px 14px;
    box-shadow: 1px -2px 8px rgba(0,0,0,.08)
}

.ui-menu li a {
    background-color: #fff;
    height: 23px;
    width: 160px;
    position: relative;
    top: 0;
    border-bottom: 1px solid transparent;
    color: #000;
    cursor: pointer
}

.ui-menu li a:hover {
    color: #000;
    border-color: #000;
    position: relative;
    top: 0
}

.ui-menu li:before {
    display: none
}

.ui-menu .ui-menu-item {
    padding: 5px 0 5px 0 !important;
    width: 100% !important
}

.ui-menu .ui-menu-item a {
    width: auto;
    height: auto;
    display: inline-block
}

.ui-corner-all span:first-child {
    text-align: left;
    width: 100%
}

.abc-typography h1,.abc-typography h2,.abc-typography h3,.abc-typography h4,.abc-typography h5,.abc-typography h6 {
    margin-bottom: 0
}

.abc-typography span {
    color:  #19503e;
    display: block;
    margin-top: 10px
}

.heading-1 {
    font-family: "pfhandbookpro-regular",sans-serif;
    letter-spacing: -1.2px;
    font-size: 90px;
    line-height: 72px
}

.heading-1.mobile {
    font-size: 64px;
    line-height: 56px;
    letter-spacing: normal
}

.heading-2 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 64px;
    line-height: 72px
}

.heading-2.mobile {
    font-size: 44px;
    line-height: 48px
}

.heading-3 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 44px;
    line-height: 48px
}

.heading-3.mobile {
    font-size: 36px;
    line-height: 40px
}

.heading-4 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 32px;
    line-height: 40px
}

.heading-4.mobile {
    font-size: 28px;
    line-height: 32px
}

.heading-5 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 24px;
    line-height: 28px
}

.heading-5.mobile {
    font-size: 22px;
    line-height: 28px
}

.heading-6 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    line-height: 20px
}

.heading-6.mobile {
    font-size: 18px;
    line-height: 20px
}

.small-label {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    line-height: 20px
}

.caption {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    line-height: 24px
}

.small {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 12px;
    line-height: 16px
}

.body {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    line-height: 24px
}

.bold {
    font-family: "pfhandbookpro-bold",sans-serif
}

.on-page-editor header {
    position: relative;
    z-index: 1 !important
}

.on-page-editor .banner__content {
    z-index: 1
}

.on-page-editor .banner-wrapper {
    position: relative;
    z-index: 1
}

.brand-capital-red {
    color:  #19503e
}

.brand-capital-red:hover {
    color:  #19503e
}

.brand-support-red {
    color: #8b151b
}

.brand-support-red:hover {
    color: #8b151b
}

.brand-support-yellow {
    color: #f7a500
}

.brand-support-yellow:hover {
    color: #f7a500
}

.brand-financing {
    color: #d4ae69
}

.brand-financing:hover {
    color: #d4ae69
}

.brand-invensting {
    color: #969f6e
}

.brand-invensting:hover {
    color: #969f6e
}

.brand-protecting {
    color: #da9089
}

.brand-protecting:hover {
    color: #da9089
}

.brand-advising {
    color:  #19503e
}

.brand-advising:hover {
    color:  #19503e
}

.btn:focus,button:focus {
    outline: none !important;
    box-shadow: none !important
}

.capital-btn {
    background:  #19503e;
    color: #fff;
    padding: 9px 12px
}

.capital-btn:hover {
    color: #fff
}

.capital-checkbox:after {
    border: solid  #19503e
}

.capital-radio:after {
    background:  #19503e
}

.li-checkbox:after {
    border: solid #da9089
}

.mf-radio:after {
    background: #969f6e
}

.brand-capital-red-bg {
    background:  #19503e
}

.brand-dark-grey {
    background: #6c7174
}

.brand-capital-red-container {
    position: relative
}

.brand-capital-red-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background:  #19503e;
    z-index: -1
}

.brand-supporting-red-container {
    position: relative
}

.brand-supporting-red-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #8b151b;
    z-index: -1
}

.brand-white-grey-container {
    position: relative
}

.brand-white-grey-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6;
    z-index: -1
}

.brand-protecting-border-bottom-4 {
    border-bottom: 4px solid #da9089
}

.brand-investing-border-bottom-4 {
    border-bottom: 4px solid #969f6e
}

.brand-financing-border-bottom-4 {
    border-bottom: 4px solid #d4ae69
}

.border-none * {
    border: none !important
}

.top-black * {
    color: #000 !important
}

.top-black *:before {
    color: #000 !important;
    border-color: #000 !important
}

.top-black *:after {
    color: #000 !important;
    border-color: #000 !important
}

.top-black *:hover {
    color: #000 !important;
    border-color: #000 !important
}

.top-white * {
    color: #fff !important
}

.top-white *:before {
    color: #fff !important;
    border: #fff !important
}

.top-white *:after {
    color: #fff !important;
    border-color: #fff !important
}

.top-white *:hover {
    border-color: #fff !important
}

.black {
    color: #000
}

.advicing-bg {
    background:  #19503e
}

.protecting-bg {
    background: #da9089
}

.investing-bg {
    background: #969f6e
}

.financing-bg {
    background: #d4ae69
}

.advicing-bg-full {
    position: relative;
    background:  #19503e
}

.advicing-bg-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background:  #19503e;
    z-index: -1
}

.protecting-bg-full {
    position: relative;
    background: #da9089
}

.protecting-bg-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #da9089;
    z-index: -1
}

.investing-bg-full {
    position: relative;
    background: #969f6e
}

.investing-bg-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #969f6e;
    z-index: -1
}

.financing-bg-full {
    position: relative;
    background: #d4ae69
}

.financing-bg-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #d4ae69;
    z-index: -1
}

.light-grey-full {
    position: relative;
    background: #fdf7f7
}

.light-grey-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #fdf7f7;
    z-index: -1
}

.grey-full {
    position: relative;
    background: #f1f3f6
}

.grey-full::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6;
    z-index: -1
}

.protecting-pallete-01 {
    background: #edc9c6
}

.protecting-pallete-02 {
    background: #e2a7a2
}

.protecting-pallete-03 {
    background: #da9089
}

.protecting-pallete-04 {
    background: #b37671
}

.protecting-pallete-05 {
    background: #6a4742
}

.investing-pallete-01 {
    background: #d9dccb
}

.investing-pallete-02 {
    background: #c0c5a8
}

.investing-pallete-03 {
    background: #969f6e
}

.investing-pallete-04 {
    background: #6a7c55
}

.investing-pallete-05 {
    background: #3e593c
}

.financing-pallete-01 {
    background: #ecddc0
}

.financing-pallete-02 {
    background: #e0c696
}

.financing-pallete-03 {
    background: #d4ae69
}

.financing-pallete-04 {
    background: #9e834e
}

.financing-pallete-05 {
    background: #695934
}

.advising-pallete-01 {
    background: #ebafb2
}

.advising-pallete-02 {
    background: #dd7a7f
}

.advising-pallete-03 {
    background:  #19503e
}

.advising-pallete-04 {
    background: #95181a
}

.advising-pallete-05 {
    background: #8b151b
}

.website-brown-bg {
    background: #694743
}

.wb-protecting-shade-bg {
    background-color: #6a4742
}

.wb-lighest-red-bg {
    background-color: rgba(237,201,198,.15)
}

.wb-tab-grey-bg {
    background-color: #fdf7f7
}

.wb-light-grey-bg {
    background-color: #cdcece
}

.wb-protecting-pallete-04-bg {
    background-color: #b37671
}

.wb-brand-support-yellow-bg {
    background-color: #f7a500
}

.wb-header-pink-bg {
    background-color: #d9908a
}

.wb-lead-from-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #b37671
}

.wb-lead-from-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #b37671
}

.wb-video-blog2-bg {
    background: #fdf7f7;
    position: relative
}

.wb-video-blog2-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-video-blog2-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-text-bg {
    background: #fdf7f7;
    position: relative
}

.wb-info-text-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-text-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-banner-bg {
    background: #fdf7f7;
    position: relative
}

.wb-info-banner-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-banner-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-cta-banner-bg {
    background: #f7f8fa;
    position: relative
}

@media(max-width: 767px) {
    .wb-info-cta-banner-bg {
        background:#fff
    }
}

.wb-info-cta-banner-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #f7f8fa
}

@media(max-width: 767px) {
    .wb-info-cta-banner-bg:before {
        background:#fff
    }
}

.wb-info-cta-banner-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #f7f8fa
}

@media(max-width: 767px) {
    .wb-info-cta-banner-bg:after {
        background:#fff
    }
}

.wb-info-cta-banner-bg-grey {
    background: #f7f8fa;
    position: relative
}

.wb-info-cta-banner-bg-grey:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #f7f8fa
}

.wb-info-cta-banner-bg-grey:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #f7f8fa
}

.wb-info-card1-bg {
    background: #fdf7f7;
    position: relative
}

.wb-info-card1-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-info-card1-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-start-journey-bg {
    background: #fdf7f7;
    position: relative
}

.wb-start-journey-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-start-journey-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-data-value-bg {
    background: #fdf7f7;
    position: relative
}

.wb-data-value-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-data-value-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-contact-bg {
    background: #fdf7f7;
    position: relative
}

.wb-contact-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-contact-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7;
    z-index: -1
}

.wb-download-form-bg {
    background: #fdf7f7;
    position: relative
}

.wb-download-form-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-download-form-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

@media(max-width: 1020px) {
    .wb-download-form-bg:before,.wb-download-form-bg:after {
        display:none
    }
}

.wb-sme-bg {
    background: #fdf7f7;
    position: relative
}

.wb-sme-bg:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7;
    display: block
}

.wb-sme-bg:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #fdf7f7
}

.wb-protecting-shade-clr {
    color: #6a4742 !important
}

.wb-protecting-pallete-02-clr {
    color: #e2a7a2
}

.wb-light-brown-clr {
    color: #b37671
}

.wb-light-brand-clr {
    color:  #19503e
}

.wb-brand-dark-grey-clr {
    color: #6c7174
}

.wb-light-brown-pallete-03 {
    color: #da9089
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: "pfhandbookpro-regular",sans-serif
}

h1,.h1,.font34 {
    font-size: 3.4rem;
    line-height: 40px;
    margin-bottom: 30px
}

@media screen and (max-width: 1200px) {
    h1,.h1,.font34 {
        font-size:3.4rem;
        line-height: 40px
    }
}

@media screen and (max-width: 768px) {
    h1,.h1,.font34 {
        font-size:2.8rem;
        line-height: 34px;
        margin-bottom: 15px
    }
}

h2,.h2,.font30 {
    font-size: 3rem;
    line-height: 34px
}

@media screen and (max-width: 768px) {
    h2,.h2,.font30 {
        font-size:2.4rem;
        line-height: 30px
    }
}

h3,.h3,.font26 {
    font-size: 2.8rem;
    line-height: 34px
}

@media screen and (max-width: 768px) {
    h3,.h3,.font26 {
        font-size:2.2rem;
        line-height: 28px
    }
}

h4,.h4,.font28 {
    font-size: 2.6rem;
    line-height: 32px
}

h5,.h5,.font24 {
    font-size: 2.4rem;
    line-height: 32px
}

.font32 {
    font-size: 3.2rem;
    line-height: 36px
}

@media screen and (max-width: 1200px) {
    .font32 {
        font-size:2.2rem;
        line-height: 22px
    }
}

p,.font18 {
    font-size: 1.8rem;
    line-height: 20px;
    margin-bottom: 10px;
    color: #6c7174
}

.small,.font16 {
    font-size: 1.6rem;
    line-height: 1.8rem
}

small,.font14 {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
    display: block
}

a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    line-height: 20px;
    color:  #19503e
}

.loader {
    background: url("../images/loading.gif") no-repeat center center;
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #fff
}

.w-10 {
    width: 10%
}

.w-11 {
    width: 11%
}

.w-12 {
    width: 12%
}

.w-13 {
    width: 13%
}

.w-14 {
    width: 14%
}

.w-15 {
    width: 15%
}

.w-16 {
    width: 16%
}

.w-17 {
    width: 17%
}

.w-18 {
    width: 18%
}

.w-19 {
    width: 19%
}

.w-20 {
    width: 20%
}

.m-b-0 {
    padding-bottom: 0
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-0 {
        padding-bottom:0 !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-0 {
        padding-bottom:0 !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-0 {
        padding-bottom:0 !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-0 {
        padding-bottom:0 !important
    }
}

.m-b-1 {
    padding-bottom: 1px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-1 {
        padding-bottom:1px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-1 {
        padding-bottom:1px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-1 {
        padding-bottom:1px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-1 {
        padding-bottom:1px !important
    }
}

.m-b-2 {
    padding-bottom: 2px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-2 {
        padding-bottom:2px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-2 {
        padding-bottom:2px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-2 {
        padding-bottom:2px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-2 {
        padding-bottom:2px !important
    }
}

.m-b-3 {
    padding-bottom: 3px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-3 {
        padding-bottom:3px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-3 {
        padding-bottom:3px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-3 {
        padding-bottom:3px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-3 {
        padding-bottom:3px !important
    }
}

.m-b-4 {
    padding-bottom: 4px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-4 {
        padding-bottom:4px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-4 {
        padding-bottom:4px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-4 {
        padding-bottom:4px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-4 {
        padding-bottom:4px !important
    }
}

.m-b-5 {
    padding-bottom: 5px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-5 {
        padding-bottom:5px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-5 {
        padding-bottom:5px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-5 {
        padding-bottom:5px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-5 {
        padding-bottom:5px !important
    }
}

.m-b-6 {
    padding-bottom: 6px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-6 {
        padding-bottom:6px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-6 {
        padding-bottom:6px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-6 {
        padding-bottom:6px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-6 {
        padding-bottom:6px !important
    }
}

.m-b-7 {
    padding-bottom: 7px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-7 {
        padding-bottom:7px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-7 {
        padding-bottom:7px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-7 {
        padding-bottom:7px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-7 {
        padding-bottom:7px !important
    }
}

.m-b-8 {
    padding-bottom: 8px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-8 {
        padding-bottom:8px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-8 {
        padding-bottom:8px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-8 {
        padding-bottom:8px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-8 {
        padding-bottom:8px !important
    }
}

.m-b-9 {
    padding-bottom: 9px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-9 {
        padding-bottom:9px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-9 {
        padding-bottom:9px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-9 {
        padding-bottom:9px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-9 {
        padding-bottom:9px !important
    }
}

.m-b-10 {
    padding-bottom: 10px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-10 {
        padding-bottom:10px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-10 {
        padding-bottom:10px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-10 {
        padding-bottom:10px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-10 {
        padding-bottom:10px !important
    }
}

.m-b-11 {
    padding-bottom: 11px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-11 {
        padding-bottom:11px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-11 {
        padding-bottom:11px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-11 {
        padding-bottom:11px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-11 {
        padding-bottom:11px !important
    }
}

.m-b-12 {
    padding-bottom: 12px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-12 {
        padding-bottom:12px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-12 {
        padding-bottom:12px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-12 {
        padding-bottom:12px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-12 {
        padding-bottom:12px !important
    }
}

.m-b-13 {
    padding-bottom: 13px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-13 {
        padding-bottom:13px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-13 {
        padding-bottom:13px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-13 {
        padding-bottom:13px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-13 {
        padding-bottom:13px !important
    }
}

.m-b-14 {
    padding-bottom: 14px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-14 {
        padding-bottom:14px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-14 {
        padding-bottom:14px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-14 {
        padding-bottom:14px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-14 {
        padding-bottom:14px !important
    }
}

.m-b-15 {
    padding-bottom: 15px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-15 {
        padding-bottom:15px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-15 {
        padding-bottom:15px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-15 {
        padding-bottom:15px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-15 {
        padding-bottom:15px !important
    }
}

.m-b-16 {
    padding-bottom: 16px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-16 {
        padding-bottom:16px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-16 {
        padding-bottom:16px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-16 {
        padding-bottom:16px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-16 {
        padding-bottom:16px !important
    }
}

.m-b-17 {
    padding-bottom: 17px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-17 {
        padding-bottom:17px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-17 {
        padding-bottom:17px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-17 {
        padding-bottom:17px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-17 {
        padding-bottom:17px !important
    }
}

.m-b-18 {
    padding-bottom: 18px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-18 {
        padding-bottom:18px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-18 {
        padding-bottom:18px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-18 {
        padding-bottom:18px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-18 {
        padding-bottom:18px !important
    }
}

.m-b-19 {
    padding-bottom: 19px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-19 {
        padding-bottom:19px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-19 {
        padding-bottom:19px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-19 {
        padding-bottom:19px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-19 {
        padding-bottom:19px !important
    }
}

.m-b-20 {
    padding-bottom: 20px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-20 {
        padding-bottom:20px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-20 {
        padding-bottom:20px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-20 {
        padding-bottom:20px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-20 {
        padding-bottom:20px !important
    }
}

.m-b-21 {
    padding-bottom: 21px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-21 {
        padding-bottom:21px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-21 {
        padding-bottom:21px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-21 {
        padding-bottom:21px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-21 {
        padding-bottom:21px !important
    }
}

.m-b-22 {
    padding-bottom: 22px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-22 {
        padding-bottom:22px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-22 {
        padding-bottom:22px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-22 {
        padding-bottom:22px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-22 {
        padding-bottom:22px !important
    }
}

.m-b-23 {
    padding-bottom: 23px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-23 {
        padding-bottom:23px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-23 {
        padding-bottom:23px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-23 {
        padding-bottom:23px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-23 {
        padding-bottom:23px !important
    }
}

.m-b-24 {
    padding-bottom: 24px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-24 {
        padding-bottom:24px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-24 {
        padding-bottom:24px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-24 {
        padding-bottom:24px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-24 {
        padding-bottom:24px !important
    }
}

.m-b-25 {
    padding-bottom: 25px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-25 {
        padding-bottom:25px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-25 {
        padding-bottom:25px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-25 {
        padding-bottom:25px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-25 {
        padding-bottom:25px !important
    }
}

.m-b-26 {
    padding-bottom: 26px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-26 {
        padding-bottom:26px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-26 {
        padding-bottom:26px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-26 {
        padding-bottom:26px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-26 {
        padding-bottom:26px !important
    }
}

.m-b-27 {
    padding-bottom: 27px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-27 {
        padding-bottom:27px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-27 {
        padding-bottom:27px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-27 {
        padding-bottom:27px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-27 {
        padding-bottom:27px !important
    }
}

.m-b-28 {
    padding-bottom: 28px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-28 {
        padding-bottom:28px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-28 {
        padding-bottom:28px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-28 {
        padding-bottom:28px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-28 {
        padding-bottom:28px !important
    }
}

.m-b-29 {
    padding-bottom: 29px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-29 {
        padding-bottom:29px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-29 {
        padding-bottom:29px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-29 {
        padding-bottom:29px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-29 {
        padding-bottom:29px !important
    }
}

.m-b-30 {
    padding-bottom: 30px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-30 {
        padding-bottom:30px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-30 {
        padding-bottom:30px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-30 {
        padding-bottom:30px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-30 {
        padding-bottom:30px !important
    }
}

.m-b-31 {
    padding-bottom: 31px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-31 {
        padding-bottom:31px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-31 {
        padding-bottom:31px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-31 {
        padding-bottom:31px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-31 {
        padding-bottom:31px !important
    }
}

.m-b-32 {
    padding-bottom: 32px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-32 {
        padding-bottom:32px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-32 {
        padding-bottom:32px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-32 {
        padding-bottom:32px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-32 {
        padding-bottom:32px !important
    }
}

.m-b-33 {
    padding-bottom: 33px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-33 {
        padding-bottom:33px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-33 {
        padding-bottom:33px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-33 {
        padding-bottom:33px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-33 {
        padding-bottom:33px !important
    }
}

.m-b-34 {
    padding-bottom: 34px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-34 {
        padding-bottom:34px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-34 {
        padding-bottom:34px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-34 {
        padding-bottom:34px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-34 {
        padding-bottom:34px !important
    }
}

.m-b-35 {
    padding-bottom: 35px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-35 {
        padding-bottom:35px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-35 {
        padding-bottom:35px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-35 {
        padding-bottom:35px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-35 {
        padding-bottom:35px !important
    }
}

.m-b-36 {
    padding-bottom: 36px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-36 {
        padding-bottom:36px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-36 {
        padding-bottom:36px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-36 {
        padding-bottom:36px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-36 {
        padding-bottom:36px !important
    }
}

.m-b-37 {
    padding-bottom: 37px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-37 {
        padding-bottom:37px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-37 {
        padding-bottom:37px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-37 {
        padding-bottom:37px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-37 {
        padding-bottom:37px !important
    }
}

.m-b-38 {
    padding-bottom: 38px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-38 {
        padding-bottom:38px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-38 {
        padding-bottom:38px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-38 {
        padding-bottom:38px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-38 {
        padding-bottom:38px !important
    }
}

.m-b-39 {
    padding-bottom: 39px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-39 {
        padding-bottom:39px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-39 {
        padding-bottom:39px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-39 {
        padding-bottom:39px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-39 {
        padding-bottom:39px !important
    }
}

.m-b-40 {
    padding-bottom: 40px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-40 {
        padding-bottom:40px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-40 {
        padding-bottom:40px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-40 {
        padding-bottom:40px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-40 {
        padding-bottom:40px !important
    }
}

.m-b-41 {
    padding-bottom: 41px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-41 {
        padding-bottom:41px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-41 {
        padding-bottom:41px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-41 {
        padding-bottom:41px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-41 {
        padding-bottom:41px !important
    }
}

.m-b-42 {
    padding-bottom: 42px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-42 {
        padding-bottom:42px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-42 {
        padding-bottom:42px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-42 {
        padding-bottom:42px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-42 {
        padding-bottom:42px !important
    }
}

.m-b-43 {
    padding-bottom: 43px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-43 {
        padding-bottom:43px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-43 {
        padding-bottom:43px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-43 {
        padding-bottom:43px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-43 {
        padding-bottom:43px !important
    }
}

.m-b-44 {
    padding-bottom: 44px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-44 {
        padding-bottom:44px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-44 {
        padding-bottom:44px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-44 {
        padding-bottom:44px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-44 {
        padding-bottom:44px !important
    }
}

.m-b-45 {
    padding-bottom: 45px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-45 {
        padding-bottom:45px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-45 {
        padding-bottom:45px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-45 {
        padding-bottom:45px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-45 {
        padding-bottom:45px !important
    }
}

.m-b-46 {
    padding-bottom: 46px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-46 {
        padding-bottom:46px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-46 {
        padding-bottom:46px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-46 {
        padding-bottom:46px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-46 {
        padding-bottom:46px !important
    }
}

.m-b-47 {
    padding-bottom: 47px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-47 {
        padding-bottom:47px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-47 {
        padding-bottom:47px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-47 {
        padding-bottom:47px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-47 {
        padding-bottom:47px !important
    }
}

.m-b-48 {
    padding-bottom: 48px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-48 {
        padding-bottom:48px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-48 {
        padding-bottom:48px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-48 {
        padding-bottom:48px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-48 {
        padding-bottom:48px !important
    }
}

.m-b-49 {
    padding-bottom: 49px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-49 {
        padding-bottom:49px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-49 {
        padding-bottom:49px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-49 {
        padding-bottom:49px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-49 {
        padding-bottom:49px !important
    }
}

.m-b-50 {
    padding-bottom: 50px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-50 {
        padding-bottom:50px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-50 {
        padding-bottom:50px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-50 {
        padding-bottom:50px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-50 {
        padding-bottom:50px !important
    }
}

.m-b-51 {
    padding-bottom: 51px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-51 {
        padding-bottom:51px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-51 {
        padding-bottom:51px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-51 {
        padding-bottom:51px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-51 {
        padding-bottom:51px !important
    }
}

.m-b-52 {
    padding-bottom: 52px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-52 {
        padding-bottom:52px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-52 {
        padding-bottom:52px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-52 {
        padding-bottom:52px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-52 {
        padding-bottom:52px !important
    }
}

.m-b-53 {
    padding-bottom: 53px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-53 {
        padding-bottom:53px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-53 {
        padding-bottom:53px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-53 {
        padding-bottom:53px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-53 {
        padding-bottom:53px !important
    }
}

.m-b-54 {
    padding-bottom: 54px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-54 {
        padding-bottom:54px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-54 {
        padding-bottom:54px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-54 {
        padding-bottom:54px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-54 {
        padding-bottom:54px !important
    }
}

.m-b-55 {
    padding-bottom: 55px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-55 {
        padding-bottom:55px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-55 {
        padding-bottom:55px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-55 {
        padding-bottom:55px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-55 {
        padding-bottom:55px !important
    }
}

.m-b-56 {
    padding-bottom: 56px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-56 {
        padding-bottom:56px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-56 {
        padding-bottom:56px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-56 {
        padding-bottom:56px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-56 {
        padding-bottom:56px !important
    }
}

.m-b-57 {
    padding-bottom: 57px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-57 {
        padding-bottom:57px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-57 {
        padding-bottom:57px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-57 {
        padding-bottom:57px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-57 {
        padding-bottom:57px !important
    }
}

.m-b-58 {
    padding-bottom: 58px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-58 {
        padding-bottom:58px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-58 {
        padding-bottom:58px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-58 {
        padding-bottom:58px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-58 {
        padding-bottom:58px !important
    }
}

.m-b-59 {
    padding-bottom: 59px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-59 {
        padding-bottom:59px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-59 {
        padding-bottom:59px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-59 {
        padding-bottom:59px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-59 {
        padding-bottom:59px !important
    }
}

.m-b-60 {
    padding-bottom: 60px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-60 {
        padding-bottom:60px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-60 {
        padding-bottom:60px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-60 {
        padding-bottom:60px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-60 {
        padding-bottom:60px !important
    }
}

.m-b-61 {
    padding-bottom: 61px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-61 {
        padding-bottom:61px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-61 {
        padding-bottom:61px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-61 {
        padding-bottom:61px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-61 {
        padding-bottom:61px !important
    }
}

.m-b-62 {
    padding-bottom: 62px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-62 {
        padding-bottom:62px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-62 {
        padding-bottom:62px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-62 {
        padding-bottom:62px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-62 {
        padding-bottom:62px !important
    }
}

.m-b-63 {
    padding-bottom: 63px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-63 {
        padding-bottom:63px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-63 {
        padding-bottom:63px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-63 {
        padding-bottom:63px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-63 {
        padding-bottom:63px !important
    }
}

.m-b-64 {
    padding-bottom: 64px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-64 {
        padding-bottom:64px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-64 {
        padding-bottom:64px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-64 {
        padding-bottom:64px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-64 {
        padding-bottom:64px !important
    }
}

.m-b-65 {
    padding-bottom: 65px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-65 {
        padding-bottom:65px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-65 {
        padding-bottom:65px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-65 {
        padding-bottom:65px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-65 {
        padding-bottom:65px !important
    }
}

.m-b-66 {
    padding-bottom: 66px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-66 {
        padding-bottom:66px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-66 {
        padding-bottom:66px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-66 {
        padding-bottom:66px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-66 {
        padding-bottom:66px !important
    }
}

.m-b-67 {
    padding-bottom: 67px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-67 {
        padding-bottom:67px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-67 {
        padding-bottom:67px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-67 {
        padding-bottom:67px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-67 {
        padding-bottom:67px !important
    }
}

.m-b-68 {
    padding-bottom: 68px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-68 {
        padding-bottom:68px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-68 {
        padding-bottom:68px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-68 {
        padding-bottom:68px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-68 {
        padding-bottom:68px !important
    }
}

.m-b-69 {
    padding-bottom: 69px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-69 {
        padding-bottom:69px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-69 {
        padding-bottom:69px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-69 {
        padding-bottom:69px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-69 {
        padding-bottom:69px !important
    }
}

.m-b-70 {
    padding-bottom: 70px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-70 {
        padding-bottom:70px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-70 {
        padding-bottom:70px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-70 {
        padding-bottom:70px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-70 {
        padding-bottom:70px !important
    }
}

.m-b-71 {
    padding-bottom: 71px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-71 {
        padding-bottom:71px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-71 {
        padding-bottom:71px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-71 {
        padding-bottom:71px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-71 {
        padding-bottom:71px !important
    }
}

.m-b-72 {
    padding-bottom: 72px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-72 {
        padding-bottom:72px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-72 {
        padding-bottom:72px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-72 {
        padding-bottom:72px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-72 {
        padding-bottom:72px !important
    }
}

.m-b-73 {
    padding-bottom: 73px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-73 {
        padding-bottom:73px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-73 {
        padding-bottom:73px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-73 {
        padding-bottom:73px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-73 {
        padding-bottom:73px !important
    }
}

.m-b-74 {
    padding-bottom: 74px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-74 {
        padding-bottom:74px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-74 {
        padding-bottom:74px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-74 {
        padding-bottom:74px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-74 {
        padding-bottom:74px !important
    }
}

.m-b-75 {
    padding-bottom: 75px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-75 {
        padding-bottom:75px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-75 {
        padding-bottom:75px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-75 {
        padding-bottom:75px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-75 {
        padding-bottom:75px !important
    }
}

.m-b-76 {
    padding-bottom: 76px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-76 {
        padding-bottom:76px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-76 {
        padding-bottom:76px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-76 {
        padding-bottom:76px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-76 {
        padding-bottom:76px !important
    }
}

.m-b-77 {
    padding-bottom: 77px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-77 {
        padding-bottom:77px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-77 {
        padding-bottom:77px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-77 {
        padding-bottom:77px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-77 {
        padding-bottom:77px !important
    }
}

.m-b-78 {
    padding-bottom: 78px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-78 {
        padding-bottom:78px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-78 {
        padding-bottom:78px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-78 {
        padding-bottom:78px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-78 {
        padding-bottom:78px !important
    }
}

.m-b-79 {
    padding-bottom: 79px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-79 {
        padding-bottom:79px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-79 {
        padding-bottom:79px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-79 {
        padding-bottom:79px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-79 {
        padding-bottom:79px !important
    }
}

.m-b-80 {
    padding-bottom: 80px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-80 {
        padding-bottom:80px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-80 {
        padding-bottom:80px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-80 {
        padding-bottom:80px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-80 {
        padding-bottom:80px !important
    }
}

.m-b-81 {
    padding-bottom: 81px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-81 {
        padding-bottom:81px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-81 {
        padding-bottom:81px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-81 {
        padding-bottom:81px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-81 {
        padding-bottom:81px !important
    }
}

.m-b-82 {
    padding-bottom: 82px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-82 {
        padding-bottom:82px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-82 {
        padding-bottom:82px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-82 {
        padding-bottom:82px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-82 {
        padding-bottom:82px !important
    }
}

.m-b-83 {
    padding-bottom: 83px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-83 {
        padding-bottom:83px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-83 {
        padding-bottom:83px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-83 {
        padding-bottom:83px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-83 {
        padding-bottom:83px !important
    }
}

.m-b-84 {
    padding-bottom: 84px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-84 {
        padding-bottom:84px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-84 {
        padding-bottom:84px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-84 {
        padding-bottom:84px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-84 {
        padding-bottom:84px !important
    }
}

.m-b-85 {
    padding-bottom: 85px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-85 {
        padding-bottom:85px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-85 {
        padding-bottom:85px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-85 {
        padding-bottom:85px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-85 {
        padding-bottom:85px !important
    }
}

.m-b-86 {
    padding-bottom: 86px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-86 {
        padding-bottom:86px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-86 {
        padding-bottom:86px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-86 {
        padding-bottom:86px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-86 {
        padding-bottom:86px !important
    }
}

.m-b-87 {
    padding-bottom: 87px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-87 {
        padding-bottom:87px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-87 {
        padding-bottom:87px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-87 {
        padding-bottom:87px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-87 {
        padding-bottom:87px !important
    }
}

.m-b-88 {
    padding-bottom: 88px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-88 {
        padding-bottom:88px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-88 {
        padding-bottom:88px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-88 {
        padding-bottom:88px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-88 {
        padding-bottom:88px !important
    }
}

.m-b-89 {
    padding-bottom: 89px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-89 {
        padding-bottom:89px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-89 {
        padding-bottom:89px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-89 {
        padding-bottom:89px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-89 {
        padding-bottom:89px !important
    }
}

.m-b-90 {
    padding-bottom: 90px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-90 {
        padding-bottom:90px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-90 {
        padding-bottom:90px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-90 {
        padding-bottom:90px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-90 {
        padding-bottom:90px !important
    }
}

.m-b-91 {
    padding-bottom: 91px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-91 {
        padding-bottom:91px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-91 {
        padding-bottom:91px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-91 {
        padding-bottom:91px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-91 {
        padding-bottom:91px !important
    }
}

.m-b-92 {
    padding-bottom: 92px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-92 {
        padding-bottom:92px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-92 {
        padding-bottom:92px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-92 {
        padding-bottom:92px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-92 {
        padding-bottom:92px !important
    }
}

.m-b-93 {
    padding-bottom: 93px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-93 {
        padding-bottom:93px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-93 {
        padding-bottom:93px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-93 {
        padding-bottom:93px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-93 {
        padding-bottom:93px !important
    }
}

.m-b-94 {
    padding-bottom: 94px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-94 {
        padding-bottom:94px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-94 {
        padding-bottom:94px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-94 {
        padding-bottom:94px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-94 {
        padding-bottom:94px !important
    }
}

.m-b-95 {
    padding-bottom: 95px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-95 {
        padding-bottom:95px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-95 {
        padding-bottom:95px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-95 {
        padding-bottom:95px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-95 {
        padding-bottom:95px !important
    }
}

.m-b-96 {
    padding-bottom: 96px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-96 {
        padding-bottom:96px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-96 {
        padding-bottom:96px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-96 {
        padding-bottom:96px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-96 {
        padding-bottom:96px !important
    }
}

.m-b-97 {
    padding-bottom: 97px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-97 {
        padding-bottom:97px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-97 {
        padding-bottom:97px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-97 {
        padding-bottom:97px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-97 {
        padding-bottom:97px !important
    }
}

.m-b-98 {
    padding-bottom: 98px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-98 {
        padding-bottom:98px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-98 {
        padding-bottom:98px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-98 {
        padding-bottom:98px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-98 {
        padding-bottom:98px !important
    }
}

.m-b-99 {
    padding-bottom: 99px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-99 {
        padding-bottom:99px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-99 {
        padding-bottom:99px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-99 {
        padding-bottom:99px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-99 {
        padding-bottom:99px !important
    }
}

.m-b-100 {
    padding-bottom: 100px
}

@media screen and (max-width: 1400px) and (min-width:1200px) {
    .m-b-lg-100 {
        padding-bottom:100px !important
    }
}

@media screen and (max-width: 1200px) and (min-width:1020px) {
    .m-b-md-100 {
        padding-bottom:100px !important
    }
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .m-b-sm-100 {
        padding-bottom:100px !important
    }
}

@media(max-width: 767px) {
    .m-b-xs-100 {
        padding-bottom:100px !important
    }
}

select::-ms-value {
    background: none;
    color: inherit
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    line-height: 20px;
    overflow-x: hidden;
    color: #000
}

html {
    font-size: 10px;
    overflow-x: hidden
}

.social-icons a,.social-icons a:hover {
    text-decoration: none
}

.icon {
    font-size: 32px;
    margin: 4px
}

.icon.icon-instagram {
    color: #6c7174
}

.icon.icon-facebook {
    color: #3b5998
}

.icon.icon-twitter {
    color: #4099ff
}

.icon .screenreader {
    display: none
}

.sprite {
    display: inline-block;
    fill: currentColor;
    margin: 8px;
    width: 32px
}

.sprite.sprite-instagram {
    fill: #6c7174
}

.sprite.sprite-facebook {
    fill: #3b5998
}

.sprite.sprite-twitter {
    fill: #4099ff
}

@font-face {
    font-family: font-icons;
    src: url("../fonts/font-icons.eot?");
    src: url("../fonts/font-icons.eot?#iefix") format("embedded-opentype"),url("../fonts/font-icons.woff2") format("woff2"),url("../fonts/font-icons.woff") format("woff"),url("../fonts/font-icons.svg#font-icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: fallback
}

.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none
}

.button {
    line-height: 2.8rem;
    text-align: left;
    border: none;
    border-radius: 4px;
    padding: 0;
    white-space: normal;
    text-transform: uppercase;
    opacity: 1;
    min-width: 184px;
    display: inline-block
}

.button-primary {
    background:  #19503e;
    color: #fff;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 18px 45px 18px 16px;
    position: relative
}

.button-primary:hover,.button-primary:active,.button-primary:focus {
    background: #8b151b;
    color: #fff;
    border: none
}

.button-primary:after {
    content: "";
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    opacity: .6;
    vertical-align: baseline;
    right: 8px
}

.button-secondary {
    color: #fff;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2.4rem;
    transition: background-color .2s ease;
    border-radius: 2px;
    border: 2px solid #fff !important;
    font-weight: 500;
    padding: 18px 45px 18px 16px;
    position: relative
}

.button-secondary:hover,.button-secondary:active,.button-secondary:focus {
    background:  #19503e;
    color: #fff;
    border: 2px solid  #19503e !important
}



.button-secondary--capital-red {
    background:  #19503e;
    border: 0;
    border-radius: 0;
    padding: 7px 16px !important
}

.button-secondary--capital-red:hover,.button-secondary--capital-red:active,.button-secondary--capital-red:focus {
    background: #8b151b;
    border: none
}

.qsbutton {
    min-width: 109px;
    padding: 15px 27px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 2rem;
    border-radius: 2px;
    border-color: transparent;
    border: none;
    outline: none;
    background-color: transparent
}

.qsbutton__mf {
    background-color: #969f6e;
    color: #fff
}

.qsbutton__mf--inverse {
    color: #969f6e;
    border: 1px solid #969f6e
}

.qsbutton__mf:hover,.qsbutton__mf:active,.qsbutton__mf:focus {
    background: #969f6e;
    color: #fff;
    border: none;
    outline: none
}

.qsbutton__li {
    background-color: #da9089;
    color: #fff
}

.qsbutton__li--inverse {
    color: #da9089;
    border: 1px solid #da9089
}

.qsbutton__li:hover,.qsbutton__li:active,.qsbutton__li:focus {
    background: #da9089;
    color: #fff;
    border: none;
    outline: none
}

.qsbutton__fin {
    background-color: #d4ae69;
    color: #fff
}

.qsbutton__fin:hover,.qsbutton__fin:active,.qsbutton__fin:focus {
    background: #d4ae69;
    color: #fff;
    border: none;
    outline: none
}

.promotion-cta {
    cursor: pointer;
    border-radius: 2px;
    padding: 10px 48px 10px 18px;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    color: #fff;
    display: inline-block;
    position: relative;
    text-transform: uppercase
}

.promotion-cta:after {
    content: "";
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.5rem;
    vertical-align: baseline;
    right: 8px
}

.promotion-cta:hover,.promotion-cta:active,.promotion-cta:focus {
    color: #fff;
    border: none
}

.big-cta {
    display: inline-block;
    padding: 10px 59px 6px 10px;
    position: relative
}

.big-cta__small-text {
    font-size: 1.4rem;
    line-height: 2rem;
    text-transform: uppercase
}

.big-cta__big-text {
    font-size: 2rem;
    line-height: 2rem
}

.big-cta span {
    color: #fff;
    display: block
}

.big-cta:after {
    color: #fff;
    font-family: "font-icons";
    content: "";
    font-size: .9rem;
    position: absolute;
    right: 15px;
    top: 6px
}

.big-cta:hover,.big-cta:active,.big-cta:focus {
    border: none
}

.button-brown {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    text-transform: capitalize;
    padding: 1.2rem;
    min-width: 15.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-radius: 2px
}

.button-brown:hover,.button-brown:active,.button-brown:focus {
    color: #fff;
    box-shadow: 0 0 6px 0 #cdcece;
    border: none
}

.button-cta-banner {
    background-image: url(../images/Icon-Click.png);
    background-repeat: no-repeat;
    background-position: 35px 15px;
    color: #fff;
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    text-transform: capitalize;
    padding: 1.8rem;
    min-width: 24.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-radius: 8px
}

.button-cta-banner:hover,.button-cta-banner:active,.button-cta-banner:focus {
    color: #fff;
    box-shadow: 0 0 6px 0 #cdcece;
    border: none
}

.button-link {
    text-align: center;
    min-width: 0;
    padding: 0 2rem;
    color: #da9089;
    font-size: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    background: transparent;
    text-decoration: underline;
    text-transform: capitalize
}

.button-link--icon {
    text-decoration: none
}

.button-link .icon {
    font-size: 1.8rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle
}

.button-link:hover,.button-link:active,.button-link:focus {
    border: none;
    text-decoration: underline
}

.button-border {
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    background: transparent;
    border: 1px solid #b37671;
    padding: 1.1rem 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    text-transform: capitalize
}

.button-border:hover,.button-border:active,.button-border:focus {
    border: 1px solid #b37671;
    background: transparent
}

.hfl-btn {
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    border-radius: 3px;
    font-family: "pfhandbookpro-regular",sans-serif;
    min-width: 120px;
    padding: 12px 24px;
    font-size: 1.8rem;
    display: inline-block
}

.hfl-btn.btn-primary {
    background:  #19503e;
    color: #fff;
    border: 1px solid  #19503e
}

.hfl-btn.btn-primary:active,.hfl-btn.btn-primary:focus {
    background: #8b151b !important;
    color: #fff !important;
    border: 1px solid  #19503e !important
}

.hfl-btn.btn-secondary {
    color: #fff;
    background: transparent;
    border: 1px solid
}

.hfl-btn.btn-secondary:active,.hfl-btn.btn-secondary:focus {
    background: transparent !important;
    color: #fff !important
}

.hfl-btn.cta {
    font-family: "pfhandbookpro-bold",sans-serif
}

.hfl-btn.cta-big {
    font-size: 2rem;
    padding: 14px 26px;
    border-radius: 8px
}

.hfl-btn.icon-btn {
    padding-right: 50px;
    position: relative
}

.hfl-btn.icon-btn:after {
    content: "";
    top: 45%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    vertical-align: baseline;
    right: 8px
}

.hfl-btn.btn-forward {
    position: relative;
    text-align: left
}

.hfl-btn.btn-forward:active,.hfl-btn.btn-forward:focus {
    background: #8b151b !important;
    color: #fff !important;
    border: 1px solid  #19503e !important
}

.hfl-btn.btn-forward:after {
    content: "";
    top: 45%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    vertical-align: baseline;
    right: 0
}

.hfl-btn.btn-disabled {
    background: #cdcece;
    color: #fff;
    border: 1px solid #cdcece
}

.hfl-btn.btn-disabled:after {
    color: #fff
}

.hfl-btn.clear-btn {
    color: #fff;
    padding: 0;
    min-width: 5px;
    display: block
}

.hfl-btn.clear-btn:hover {
    color: #fff
}

.hfl-btn.whitebg-btn {
    background: #fff;
    color: #000;
    box-shadow: 0 3px 6px rgba(0,0,0,.3)
}

.buttonGoBack {
    line-height: 2.8rem;
    text-align: left;
    border: none;
    border-radius: 4px;
    padding: 0;
    white-space: normal;
    opacity: 1;
    min-width: 184px;
    display: inline-block
}

.button-buttonGoBack {
    color:  #19503e;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 18px 45px 18px 16px;
    position: relative
}

.button-buttonGoBack:hover,.button-buttonGoBack:active,.button-buttonGoBack:focus {
    color:  #19503e;
    border: none;
    opacity: .6
}

.button-buttonGoBack:before {
    content: "";
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color:  #19503e;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    vertical-align: baseline;
    left: 5px
}

.selectize-control.single .selectize-input {
    background: none;
    box-shadow: none;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #cdcece
}

.selectize-input>input {
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    padding-bottom: 8px
}

.selectize-dropdown .active {
    color: #000;
    background: #f1f3f6
}

.selectize-dropdown,.selectize-input,.selectize-input input {
    font-size: 1.8rem
}

.selectize-input {
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    height: 44px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #cdcece;
    color: #000
}

.selectize-input:after {
    content: "" !important;
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1.5;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem !important;
    right: 10px !important;
    top: 50% !important;
    -ms-transform: translate(-50%,-50%) !important;
    transform: translate(-50%,-50%) !important;
    width: 12px !important;
    height: 12px !important;
    border: 0 !important;
    -ms-transform-origin: 50% 50% 0;
    transform-origin: 50% 50% 0
}

.selectize-control.single .selectize-input.dropdown-active:after {
    content: "" !important;
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem !important;
    right: 10px !important;
    top: 50% !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
    width: 12px !important;
    height: 12px !important;
    border: 0 !important;
    -ms-transform-origin: 25% 25%;
    transform-origin: 25% 25%
}

.selectize-dropdown .option,.selectize-dropdown .optgroup-header {
    padding: 14px 16px;
    border-color: #cdcece
}

.selectize-dropdown .option:hover,.selectize-dropdown .optgroup-header:hover {
    cursor: pointer
}

.selectize-input>* {
    vertical-align: middle
}

.selectize-control.single .selectize-input,.selectize-dropdown.single {
    border-color: #cdcece
}

.dropdown-active,.selectize-dropdown {
    border-radius: 0 !important
}

.revamp-digicls.homepage-container.revised-homepage-container .select--website.selectize-control.single .selectize-input {
    border-bottom: unset !important
}

.revamp-digicls.homepage-container.revised-homepage-container .select--website .selectize-input.dropdown-active::before {
    background: unset
}

.revamp-digicls.homepage-container.revised-homepage-container .select--website .selectize-dropdown.single {
    width: 100% !important;
    top: 5.2rem !important;
    left: 0 !important;
    height: auto !important
}

.revamp-digicls.homepage-container.revised-homepage-container .select--website .selectize-dropdown.single .selectize-dropdown-content {
    max-height: unset
}

.revamp-digicls.homepage-container.revised-homepage-container .select--website .selectize-dropdown.single .selectize-dropdown-content .option {
    padding: 14px 16px !important
}

.select--website.selectize-control.single .selectize-input {
    border: 0;
    border-bottom: 1px solid #f1f3f6;
    border-radius: 0;
    font-size: 3.2rem;
    height: 4.4rem;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0
}

.select--website .selectize-dropdown.single {
    text-align: left
}

.selectize-control.single .item {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 30px;
    white-space: nowrap;
    max-width: 95vw;
    width: 95%;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    padding: 0
}

.selectize-input,.selectize-control.single .selectize-input.input-active {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.pipe-style .selectize-control.single .selectize-input::after {
    border-left: 1px solid #cdcece !important;
    height: 100% !important;
    margin: 0 !important;
    min-width: 46px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: -24px !important;
    color: #6d7278;
    background-color: #fff
}

.pipe-style .selectize-control.single .selectize-input.dropdown-active::after {
    border-left: 0 !important;
    border-right: 1px solid #cdcece !important;
    color: #6d7278;
    background-color: #fff
}

.capital-red-bg {
    background-color:  #19503e
}

.dark-red-bg {
    background-color: #8b151b
}

.abc-website header {
    position: relative
}

header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999
}

@media(max-width: 1020px) {
    header {
        position:relative
    }
}

header * {
    color: #fff
}

header a:hover,header a:focus {
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px
}

@media screen and (max-width: 1020px) {
    header .container-fluid,header .container-sm,header .container-md,header .container-lg,header .container-xl {
        margin-left:0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0
    }

    header .container-fluid .outerpadding .row,header .container-sm .outerpadding .row,header .container-md .outerpadding .row,header .container-lg .outerpadding .row,header .container-xl .outerpadding .row {
        margin-right: 0;
        margin-left: 0
    }

    header .container-fluid .outerpadding .row .col-xs-12,header .container-sm .outerpadding .row .col-xs-12,header .container-md .outerpadding .row .col-xs-12,header .container-lg .outerpadding .row .col-xs-12,header .container-xl .outerpadding .row .col-xs-12 {
        padding-left: 0;
        padding-right: 0
    }

    header .container-fluid .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-sm .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-md .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-lg .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-xl .outerpadding .row .col-xs-12 .mobile-menu-wrapper {
        display: block;
        position: absolute;
        top: 28px;
        right: 46px
    }
}

@media screen and (max-width: 1020px) and (max-width:767px) {
    header .container-fluid .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-sm .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-md .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-lg .outerpadding .row .col-xs-12 .mobile-menu-wrapper,header .container-xl .outerpadding .row .col-xs-12 .mobile-menu-wrapper {
        right:25px
    }
}

header .mobile-menu-wrapper {
    display: none
}

.top-navigation {
    padding-right: 47px
}

@media screen and (max-width: 1199px) {
    .top-navigation {
        padding-right:33px
    }
}

.top-navigation ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0
}

.top-navigation ul li {
    margin: 0 12px 0 9px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 6px;
    padding-top: 10px
}

.top-navigation ul li::before {
    display: none
}

.top-navigation ul li a {
    font-size: 1.8rem;
    line-height: 16px;
    padding-bottom: 0
}

.top-navigation ul li:after {
    content: "";
    height: 13px;
    border-right: 2px solid #fff;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    margin-top: 3px;
    margin-left: 10px;
    right: -12px
}

.top-navigation ul li:last-child {
    margin-right: 0
}

.top-navigation ul li:last-child:after {
    display: none
}

@media screen and (max-width: 1020px) {
    .top-navigation {
        display:none !important
    }
}

body {
    overflow: hidden
}

.nps-outer-header {
    background-color:  #19503e
}

.top-header-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-left: 47px;
    padding-right: 23px;
    padding-top: 23px;
    padding-bottom: 13px
}

.top-header-wrapper.nps-header {
    padding: 0;
    position: relative;
    padding: 0 25px;
    max-width: 1360px;
    margin: auto
}

.top-header-wrapper.nps-header .logo {
    padding: 17px 0 13px 0;
    margin-bottom: 0
}

@media(max-width: 1020px) {
    .top-header-wrapper.nps-header .logo {
        padding:17px 0 13px 0
    }
}

.top-header-wrapper.nps-header .logo img {
    max-width: 140px
}

.top-header-wrapper.nps-header .headerlogo-right {
    position: absolute;
    right: 25px;
    top: 0;
    background: rgba(139,21,27,.32);
    border-radius: 12px;
    height: 44px;
    width: 44px;
    text-align: center;
    margin: 11px 0
}

@media(max-width: 1020px) {
    .top-header-wrapper.nps-header .headerlogo-right {
        height:40px;
        width: 40px;
        margin: 11px 0
    }
}

.top-header-wrapper.nps-header .headerlogo-right a:hover,.top-header-wrapper.nps-header .headerlogo-right a:focus,.top-header-wrapper.nps-header .headerlogo-right a:active {
    color: unset;
    border-bottom: unset;
    border: none
}

.top-header-wrapper.nps-header .headerlogo-right img {
    position: relative;
    top: 15%;
    width: 24px;
    height: 24px
}

.top-header-wrapper::after {
    display: block;
    content: "";
    clear: both
}

@media screen and (max-width: 1199px) {
    .top-header-wrapper {
        padding-left:33px;
        padding-right: 33px
    }
}

@media screen and (max-width: 1020px) {
    .top-header-wrapper {
        display:block;
        padding-top: 14px;
        padding-bottom: 3px;
        padding-left: 8px;
        position: relative
    }
}

.top-header-wrapper .language {
    visibility: hidden
}

@media(max-width: 767px) {
    .top-header-wrapper .language {
        visibility:visible
    }
}

@media(max-width: 1020px) {
    .top-header-wrapper .language {
        visibility:visible
    }
}

.logo {
    margin-bottom: 20px;
    
}

.logo a {
    border-bottom: none !important
}

.logo img {
    margin-bottom: 0;
    /* max-width: 190px; */
    width: 100%;
    height: 100%
}

@media screen and (max-width: 1020px) {
    .logo img {
        max-width:230px
    }
}

@media screen and (max-width: 767px) {
    .logo img {
        max-width:200px
    }
}

.header-wrapper {
    padding-left: 108px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 47px;
    padding-top: 15px;
    padding-bottom: 15px
}

@media screen and (max-width: 1200px) {
    .header-wrapper {
        padding-left:108px
    }
}

@media screen and (max-width: 1199px) {
    .header-wrapper {
        padding-right:33px;
        padding-left: 94px
    }
}

@media screen and (max-width: 1020px) {
    .header-wrapper {
        padding-right:42px;
        padding-left: 7px;
        padding-top: 9px;
        padding-bottom: 9px;
        position: relative
    }
}

@media screen and (max-width: 767px) {
    .header-wrapper {
        padding-right:16px;
        padding-top: 4px;
        padding-bottom: 4px
    }
}

.header-wrapper .header-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    padding-left: 14px
}

.header-wrapper .header-title a {
    font-family: "pfhandbookpro-bold",sans-serif
}

.header-wrapper .header-title a:hover,.header-wrapper .header-title a:active,.header-wrapper .header-title a:focus {
    border-bottom: none;
    padding-bottom: 0
}

.header-wrapper .search-wrapper {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.header-wrapper .search-wrapper input[type="text"] {
    width: 356px;
    height: 40px;
    line-height: 40px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
    margin-right: 0;
    padding: 0 44px 0 14px;
    font-family: "pfhandbookpro-regular",sans-serif
}

.header-wrapper .search-wrapper input[type="text"]:-ms-input-placeholder {
    color: #fff
}

.header-wrapper .search-wrapper input[type="text"]::placeholder {
    color: #fff
}

@media screen and (max-width: 1020px) {
    .header-wrapper .search-wrapper input[type="text"] {
        height:37px;
        width: 232px
    }
}

.header-wrapper .search-wrapper .search-button {
    position: absolute;
    font-size: 1.8rem;
    right: 0;
    top: 0;
    margin: 0
}

.header-wrapper .search-wrapper .search-button:before {
    position: absolute;
    top: 11px;
    right: 17px
}

.header-wrapper .search-wrapper .search-button input[type="submit"],.header-wrapper .search-wrapper .search-button .search-submit {
    position: relative;
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: block
}

@media screen and (max-width: 1020px) {
    .header-wrapper .search-wrapper .search-button {
        font-size:1.5rem
    }

    .header-wrapper .search-wrapper .search-button:before {
        top: 11px;
        right: 21px
    }

    .header-wrapper .search-wrapper .search-button input[type="submit"],.header-wrapper .search-wrapper .search-button .search-submit {
        height: 37px
    }
}

@media screen and (max-width: 767px) {
    .header-wrapper .search-wrapper {
        display:none;
        position: absolute;
        top: 100%;
        z-index: 99;
        background-color:  #19503e;
        left: 0;
        right: 0;
        width: 100%
    }

    .header-wrapper .search-wrapper input[type="text"] {
        width: calc(100% - 42px);
        margin: 11px 21px 12px 21px
    }

    .header-wrapper .search-wrapper .search-button {
        right: 21px
    }

    .header-wrapper .search-wrapper .search-button:before {
        top: 22px;
        right: 14px
    }
}

.header-wrapper .subscribe-wrapper {
    text-transform: uppercase;
    padding-left: 40px
}

@media screen and (max-width: 767px) {
    .header-wrapper .subscribe-wrapper {
        padding-left:20px;
        text-transform: none
    }

    .header-wrapper .subscribe-wrapper a {
        font-family: "pfhandbookpro-bold",sans-serif;
        font-size: 1.6rem
    }
}

nav,.top-menu {
    width: 100%
}

nav>ul,.top-menu>ul {
    display: -ms-flexbox;
    display: flex;
    padding-left: 45px;
    margin-bottom: 14px
}

@media screen and (max-width: 1199px) and (min-width:1020px) {
    nav>ul,.top-menu>ul {
        padding-left:25px
    }
}

nav>ul>li>span:first-child,.top-menu>ul>li>span:first-child {
    font-size: 1.8rem;
    line-height: 20px;
    color: #fff
}

@media screen and (max-width: 1280px) and (min-width:1201px) {
    nav>ul>li>span:first-child,.top-menu>ul>li>span:first-child {
        font-size:1.6rem;
        line-height: 20px
    }
}

@media screen and (max-width: 1200px) and (min-width:1021px) {
    nav>ul>li>span:first-child,.top-menu>ul>li>span:first-child {
        font-size:1.6rem;
        line-height: 20px
    }
}

nav>ul li span.icon-arrow:hover,.top-menu>ul li span.icon-arrow:hover {
    padding-bottom: 7px
}

nav>ul li,.top-menu>ul li {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 15px;
    padding-right: 15px;
    position: relative
}

nav>ul li a,nav>ul li span,.top-menu>ul li a,.top-menu>ul li span {
    padding-bottom: 7px;
    padding-top: 6px;
    display: inline-block;
    font-family: "pfhandbookpro-regular",sans-serif;
    float: left
}

nav>ul li a:hover,nav>ul li a:focus,nav>ul li a:active,nav>ul li span:hover,nav>ul li span:focus,nav>ul li span:active,.top-menu>ul li a:hover,.top-menu>ul li a:focus,.top-menu>ul li a:active,.top-menu>ul li span:hover,.top-menu>ul li span:focus,.top-menu>ul li span:active {
    border-bottom: 1px solid transparent;
    /* padding-bottom: 0 */
}

@media screen and (max-width: 1020px) {
    nav>ul li a:hover,nav>ul li a:focus,nav>ul li a:active,nav>ul li span:hover,nav>ul li span:focus,nav>ul li span:active,.top-menu>ul li a:hover,.top-menu>ul li a:focus,.top-menu>ul li a:active,.top-menu>ul li span:hover,.top-menu>ul li span:focus,.top-menu>ul li span:active {
        border-bottom:none
    }
}

@media screen and (max-width: 1200px) {
    nav>ul li a,nav>ul li span,.top-menu>ul li a,.top-menu>ul li span {
        font-size:1.6rem
    }
}

nav>ul li ul,.top-menu>ul li ul {
    margin-left: 0;
    visibility: hidden;
    max-height: 0;
    height: auto;
    position: absolute;
    left: 0;
    opacity: 0;
    width: 100%
}

nav>ul li ul li:hover a,nav>ul li ul li.active a,.top-menu>ul li ul li:hover a,.top-menu>ul li ul li.active a {
    background-color: #f1f3f6
}

nav>ul li ul li a,.top-menu>ul li ul li a {
    font-size: 1.6rem;
    width: 100%
}

nav>ul li::before,.top-menu>ul li::before {
    display: none
}

nav>ul li:hover,.top-menu>ul li:hover {
    background-color: #c82129
}

nav>ul li:hover a,nav>ul li:hover span,.top-menu>ul li:hover a,.top-menu>ul li:hover span {
    color: #fff;
    border-bottom: none
}

nav>ul li:hover ul,.top-menu>ul li:hover ul {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    transition: max-height .8s linear .2s;
    top: 100%;
    left: 0;
    min-width: 262px;
    padding-top: 0;
    padding-left: 0;
    z-index: 9099;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,.18);
    overflow: hidden
}

@media screen and (max-width: 1020px) {
    nav>ul li:hover,.top-menu>ul li:hover {
        background-color:transparent
    }
}

nav>ul li.active,.top-menu>ul li.active {
    color: #000;
    background-color: #f1f3f6
}

nav>ul li.active a,.top-menu>ul li.active a {
    color: #000;
    border-bottom: none
}

nav>ul li.active .icon-arrow,.top-menu>ul li.active .icon-arrow {
    color:  #19503e
}

nav>ul li.has-children .icon-arrow,.top-menu>ul li.has-children .icon-arrow {
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 2px;
    margin-bottom: 0
}

@media screen and (max-width: 1200px) {
    nav>ul li.has-children .icon-arrow,.top-menu>ul li.has-children .icon-arrow {
        margin-left:6px
    }
}

@media screen and (max-width: 1020px) {
    nav>ul li.has-children .icon-arrow,.top-menu>ul li.has-children .icon-arrow {
        display:none
    }
}

nav>ul li.has-children:hover,.top-menu>ul li.has-children:hover {
    background-color: #c82129;
    color:#fff !important;
    border-radius: 3px;
}

nav>ul li.has-children:hover a,.top-menu>ul li.has-children:hover a {
    color: #000;
    border-bottom: none
}

nav>ul li.has-children:hover .icon-arrow,.top-menu>ul li.has-children:hover .icon-arrow {
    transition: .4s;
    color:  #19503e
}

nav>ul li.has-children:hover .icon-arrow::before,.top-menu>ul li.has-children:hover .icon-arrow::before {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    display: inline-block
}

nav>ul li.has-children:hover li,.top-menu>ul li.has-children:hover li {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0
}

nav>ul li.has-children:hover li a,.top-menu>ul li.has-children:hover li a {
    border-bottom: transparent;
    padding-bottom: 7px;
    padding-top: 9px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%
}

@media screen and (max-width: 1020px) {
    nav>ul li.has-children:hover,.top-menu>ul li.has-children:hover {
        background-color:transparent
    }
}

nav ul {
    padding-left: 0;
    margin-left: 73px
}

@media screen and (max-width: 1271px) {
    nav ul {
        margin-left:81px
    }
}

@media screen and (max-width: 1199px) {
    nav ul {
        margin-left:93px
    }
}

nav ul li {
    margin-left: 34px;
    margin-right: 14px;
    padding-right: 35px;
    cursor: pointer
}

@media screen and (max-width: 1271px) {
    nav ul li {
        margin-left:26px;
        margin-right: 0;
        padding-right: 30px
    }
}

@media screen and (max-width: 1199px) {
    nav ul li {
        margin-left:0
    }
}

@media screen and (max-width: 1020px) {
    nav {
        display:none !important
    }
}

.top-menu {
    -ms-flex: 1;
    flex: 1;
    margin-right: 16px
}

@media screen and (max-width: 1199px) and (min-width:1020px) {
    .top-menu {
        margin-right:15px
    }
}

@media screen and (max-width: 1020px) {
    .top-menu {
        display:none
    }
}

.top-menu>ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 14px
}

.top-menu>ul li {
    margin: 0;
    text-transform: uppercase;
    padding-left: 18px;
    padding-right: 24px;
    cursor: pointer;
    align-self: center;
}

@media screen and (max-width: 1199px) and (min-width:1020px) {
    .top-menu>ul li {
        padding-left:3px;
        padding-right: 30px
    }
}

@media screen and (max-width: 1020px) {
    .top-menu>ul li {
        padding-left:0;
        padding-right: 10px
    }
}

@media screen and (max-width: 1020px) {
    .top-menu>ul li>a {
        padding-bottom:6px;
        padding-top: 5px;
        font-size: 1.4rem
    }
}

@media screen and (max-width: 767px) {
    .top-menu>ul li>a {
        font-size:1.2rem
    }
}

.top-menu>ul li .icon-arrow {
    margin-left: 10px !important
}

@media screen and (max-width: 1200px) {
    .top-menu>ul li .icon-arrow {
        margin-top:0 !important
    }
}

.top-menu>ul li ul li {
    margin: 0;
    text-transform: none
}

@media screen and (max-width: 1020px) {
    .top-menu>ul li ul {
        display:none !important
    }
}

@media screen and (max-width: 1020px) {
    .top-menu>ul {
        -ms-flex-pack:start;
        justify-content: flex-start;
        padding-left: 0
    }
}

.mobi-nav-wrapper {
    padding-bottom: 0
}

.mobi-nav-wrapper ul {
    padding-left: 0
}

.mobi-nav-wrapper ul li {
    position: relative
}

.mobi-nav-wrapper ul li::before {
    display: none
}

.mobi-nav-wrapper ul li.level1 {
    padding: 8px 0 0 0;
    margin-bottom: 32px;
    clear: both;
    float: left;
    width: 100%
}

.mobi-nav-wrapper ul li.level1:last-child {
    margin-bottom: 22px
}

.mobi-nav-wrapper ul li.level1::after {
    content: "";
    width: 8px;
    height: 100%;
    position: absolute;
    left: -30px;
    top: 0;
    display: block
}

.mobi-nav-wrapper ul li a,.mobi-nav-wrapper ul li span {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2.8rem;
    line-height: 32px;
    text-transform: uppercase
}

.mobi-nav-wrapper ul li ul {
    padding-top: 3px;
    width: 100%;
    float: left
}

.mobi-nav-wrapper ul li ul li {
    padding: 10px 0 0 0;
    display: inline-block;
    width: 50%;
    float: left
}

.mobi-nav-wrapper ul li ul li a,.mobi-nav-wrapper ul li ul li span {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    line-height: 20px;
    text-transform: none;
    color: #444749
}

.mobi-nav-wrapper ul li ul li a:hover,.mobi-nav-wrapper ul li ul li span:hover {
    padding-bottom: 0
}

.mobi-nav-wrapper .icon-arrow {
    display: none
}

.mobi-nav-wrapper .red-link.level1::after {
    background-color:  #19503e
}

.mobi-nav-wrapper .red-link>a,.mobi-nav-wrapper .red-link span {
    color:  #19503e !important
}

.mobi-nav-wrapper .pink-link.level1::after {
    background-color: #da9089
}

.mobi-nav-wrapper .pink-link>a,.mobi-nav-wrapper .pink-link span {
    color: #da9089 !important
}

.mobi-nav-wrapper .green-link.level1::after {
    background-color: #969f6e
}

.mobi-nav-wrapper .green-link>a,.mobi-nav-wrapper .green-link span {
    color: #969f6e !important
}

.mobi-nav-wrapper .yellow-link.level1::after {
    background-color: #d4ae69
}

.mobi-nav-wrapper .yellow-link>a,.mobi-nav-wrapper .yellow-link span {
    color: #d4ae69 !important
}

@media screen and (max-width: 1020px) {
    .phone-link,.home-link,.dashboard-link {
        display:none !important
    }
}

@media screen and (max-width: 1020px) {
    .login-link .iconText {
        display:none
    }

    .login-link a:hover,.login-link a:active,.login-link a:focus {
        border-bottom: none
    }

    .login-link .icon-login::before {
        font-size: 2.2rem
    }
}

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent
}

.hamburger .hamburger-box {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 18px
}

.hamburger.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
    transition-duration: .275s
}

.hamburger.hamburger--elastic .hamburger-inner:before {
    top: 8px;
    transition: opacity .125s ease .275s
}

.hamburger.hamburger--elastic .hamburger-inner:after {
    top: 16px;
    transition: transform .275s cubic-bezier(.68,-.55,.265,1.55)
}

.hamburger.hamburger--elastic.is-active .hamburger-inner {
    transition-delay: 75ms;
    transform: translate3d(0,8px,0) rotate(135deg)
}

.hamburger.hamburger--elastic.is-active .hamburger-inner:before {
    transition-delay: 0s;
    opacity: 0
}

.hamburger.hamburger--elastic.is-active .hamburger-inner:after {
    transition-delay: 75ms;
    transform: translate3d(0,-16px,0) rotate(-270deg)
}

.hamburger .hamburger-inner,.hamburger .hamburger-inner:after,.hamburger .hamburger-inner:before {
    position: absolute;
    width: 24px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 1px;
    background-color: #fff
}

.hamburger .hamburger-inner:before {
    top: -10px
}

.hamburger .hamburger-inner::after {
    bottom: -10px
}

.hamburger .hamburger-inner:after,.hamburger .hamburger-inner:before {
    display: block;
    content: ""
}

#mobi-navigation,#mobi-navigation-primary {
    display: none
}

@media screen and (max-width: 1020px) {
    #mobi-navigation,#mobi-navigation-primary {
        display:block;
        height: 100%;
        width: 412px;
        background-color: #fff;
        z-index: 999;
        position: fixed;
        right: 0;
        top: 0;
        -ms-transform: translateX(412px);
        transform: translateX(412px);
        transition: transform .6s
    }
}

@media screen and (max-width: 1020px) and (max-width:767px) {
    #mobi-navigation,#mobi-navigation-primary {
        width:100%;
        -ms-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@media screen and (max-width: 1020px) {
    #mobi-navigation.active,#mobi-navigation-primary.active {
        -ms-transform:translateX(0);
        transform: translateX(0);
        transition: transform .6s;
        overflow-y: scroll
    }

    #mobi-navigation .menu-content,#mobi-navigation-primary .menu-content {
        margin: 19px 30px 0
    }

    #mobi-navigation .menu-content *,#mobi-navigation-primary .menu-content * {
        color: #444749
    }

    #mobi-navigation.main-nav-active,#mobi-navigation-primary.main-nav-active {
        background-color: #fff;
        padding-top: 0
    }

    #mobi-navigation.main-nav-active .utility-links,#mobi-navigation-primary.main-nav-active .utility-links {
        display: none
    }

    #mobi-navigation.main-nav-active .menu-content-wrapper,#mobi-navigation-primary.main-nav-active .menu-content-wrapper {
        height: auto
    }

    #mobi-navigation.main-nav-active .mobi-top-navigation,#mobi-navigation.main-nav-active .mobi-footer-links,#mobi-navigation-primary.main-nav-active .mobi-top-navigation,#mobi-navigation-primary.main-nav-active .mobi-footer-links {
        display: none
    }
}

@media screen and (max-width: 1020px) and (max-width:767px) {
    #mobi-navigation.main-nav-active .menu-header,#mobi-navigation-primary.main-nav-active .menu-header {
        padding-bottom:5px
    }

    #mobi-navigation.main-nav-active .menu-header .utility-links-global-nav,#mobi-navigation-primary.main-nav-active .menu-header .utility-links-global-nav {
        display: none !important
    }

    #mobi-navigation.main-nav-active .menu-header .utility-links,#mobi-navigation-primary.main-nav-active .menu-header .utility-links {
        display: none
    }
}

@media screen and (max-width: 1020px) {
    .close-menu {
        color: #19503e;
        cursor: pointer;
        position: absolute;
        right: 44px;
        top: 28px
    }

    .menu-header {
        background-color:  #19503e;
        padding-top: 16px;
        padding-left: 21px;
        padding-bottom: 5px
    }

    .main-nav-active .menu-footer {
        display: none
    }

    .menu-footer {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 14px;
        padding-top: 26px;
        margin-top: 18px;
        margin-bottom: 0
    }

    .menu-footer p {
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 1.7rem;
        line-height: 24px;
        color: #000
    }

    .menu-footer p span {
        color: #000
    }

    .menu-content-wrapper {
        float: left;
        width: 100%;
        height: calc(100% - 85px);
        background-color: #fff
    }

    .mobi-top-navigation {
        padding-top: 15px;
        padding-bottom: 15px
    }

    .mobi-footer-links,.mobi-top-navigation {
        border-top: 2px solid #ddd;
        clear: both
    }

    .mobi-footer-links ul,.mobi-top-navigation ul {
        padding-left: 0;
        margin-bottom: 8px
    }

    .mobi-footer-links ul li,.mobi-top-navigation ul li {
        padding-bottom: 2px;
        padding-top: 5px
    }

    .mobi-footer-links ul li::before,.mobi-top-navigation ul li::before {
        display: none
    }

    .mobi-footer-links a,.mobi-top-navigation a {
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 2rem;
        line-height: 25.4px
    }

    .mobi-footer-links {
        padding-top: 10px
    }

    .mobi-footer-links .icon-arrow {
        font-size: 1.4rem
    }

    .mobi-footer-links ul li ul {
        margin-left: 20px;
        display: none;
        padding-top: 7px
    }

    .mobi-footer-links ul li ul li a {
        font-size: 1.8rem;
        line-height: 22.86px
    }

    .mobi-footer-links ul li.active .icon-arrow::before {
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        display: inline-block
    }

    .header-title {
        cursor: pointer;
        position: relative;
        padding-right: 30px;
        min-width: 195px
    }

    .header-title .header-title-arrow {
        right: 15px;
        top: 50%;
        position: absolute;
        margin-top: -10px
    }

    .header-title .header-title-arrow:before {
        content: "";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: "font-icons";
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        font-size: .9rem
    }
}

.mobile-menu-active {
    overflow-y: hidden;
    position: fixed;
    width: 100%
}

.mobile-menu-active:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.8);
    width: 100%;
    height: 100%;
    content: "";
    z-index: 9
}

.mobi-search-icon {
    display: none
}

@media screen and (max-width: 767px) {
    .mobi-search-icon {
        display:-ms-flexbox;
        display: flex;
        cursor: pointer;
        top: 50%;
        position: relative;
        right: 0;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-right: 5px;
        margin-top: 3px
    }

    .mobi-search-icon .icon {
        font-size: 1.8rem
    }
}

#loading {
    background: url("../images/loading.svg") no-repeat center center !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #fff !important;
    background-size: 300px 200px !important
}

a[href^="tel:"].mobile-tel-link {
    color: inherit !important;
    cursor: pointer !important
}

a[href^="tel:"] {
    color: inherit !important;
    text-decoration: none;
    cursor: default
}

a[href^="tel:"]:hover,a[href^="tel:"]:active,a[href^="tel:"]:focus {
    border-bottom: none
}

.icon-radio-circle-header {
    text-align: center
}

.icon-radio-circle-header h4 {
    margin: 0;
    padding: 0;
    color: #6c7174;
    font-size: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif
}

.accordion-form-header-wrapper {
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid #cdcece
}

.accordion-form-header-wrapper .header-text {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    display: inline-block;
    color: #000
}

.accordion-form-header-wrapper .support-text {
    font-size: 1.6rem;
    padding: 0 8px;
    display: inline-block;
    color: #6c7174
}

.form-card-header {
    text-align: left
}

.form-card-header__text {
    font-size: 1.8rem
}

.form-card-iconheader {
    text-align: left
}

.form-card-iconheader__text {
    font-size: 1.8rem
}

.form-card-iconheader--icon {
    font-size: 2rem;
    transition: all .3s ease;
    margin-right: 8px
}

footer .footer-bottom-wrapper {
    width: 100%;
    float: left
}

footer .footer-logo {
    float: left;
    margin-right: 10px
}

footer .footer-logo img {
    max-width: 130px;
    height: auto
}

footer .footer-logo a {
    border-bottom: none
}

footer .upper-div {
    float: left;
    width: 100%;
    padding: 40px 0;
    border-bottom: 1px solid #cdcece
}

footer .upper-div:hover {
    border-bottom: 1px solid #cdcece !important
}

@media screen and (max-width: 1020px) {
    footer .upper-div {
        border-bottom:none
    }
}

footer .upper-div .lcol:nth-child(n+6) {
    margin-top: 12px
}

@media(max-width: 1400px) {
    footer .upper-div .lcol:nth-child(n+7) {
        margin-top:12px
    }
}

@media(max-width: 1200px) {
    footer .upper-div .lcol:nth-child(n+6) {
        margin-top:12px
    }
}

footer .upper-div .lcol {
    -ms-flex-direction: row;
    flex-direction: row;
    display: block;
    width: 17%;
    padding-left: 0
}

@media screen and (max-width: 1300px) {
    footer .upper-div .lcol ul li a {
        font-size:1.3rem
    }
}

footer .upper-div .lcol ul li a:hover {
    border: none
}

footer .upper-div ul {
    padding-left: 0;
    margin-bottom: 0
}

footer .upper-div ul li {
    margin-top: 12px;
    padding: 0
}

footer .upper-div ul li:first-child {
    margin-top: 0
}

footer .upper-div ul li:before {
    display: none
}

footer .upper-div ul li a {
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    line-height: 24px
}

footer .upper-div ul li a:hover,footer .upper-div ul li a:active,footer .upper-div ul li a:focus {
    border-bottom-color: #fff
}

footer .upper-div ul+ul {
    margin-top: 12px
}

@media screen and (max-width: 767px) {
    footer .upper-div {
        padding:32px 0 0 0
    }
}

footer .lower-div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    clear: both;
    padding: 32px 0 22px 0
}

@media screen and (max-width: 767px) {
    footer .lower-div {
        display:block;
        float: left
    }
}

footer .lower-div .copyright p {
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    line-height: 24px
}

@media screen and (max-width: 1020px) and (min-width:768px) {
    footer .lower-div .copyright p {
        margin-bottom:0
    }
}

footer .lower-div .socialicons ul {
    padding-left: 0;
    margin-bottom: 0;
    float: right
}

footer .lower-div .socialicons ul li {
    display: inline-block;
    padding: 0 8px
}

footer .lower-div .socialicons ul li:before {
    display: none
}

footer .lower-div .socialicons ul li a {
    color: #fff
}

footer .lower-div .socialicons ul li a:hover,footer .lower-div .socialicons ul li a:active,footer .lower-div .socialicons ul li a:focus {
    border-bottom: none
}

footer .lower-div .socialicons ul li a .icon {
    color: #fff;
    font-size: 2.2rem
}

@media screen and (max-width: 767px) {
    footer .lower-div .socialicons ul {
        display:none
    }
}

@media screen and (max-width: 1020px) {
    footer .lower-div .socialicons {
        display:none
    }
}

@media screen and (max-width: 767px) {
    footer .lower-div .socialicons {
        display:block
    }
}

@media screen and (max-width: 1020px) and (min-width:768px) {
    footer .lower-div {
        -ms-flex-pack:center;
        justify-content: center;
        padding: 38px 0 33px 0
    }
}

@media screen and (max-width: 767px) {
    footer .lower-div {
        padding:20px 0 20px 0
    }
}

footer .contacttext {
    float: left;
    margin-right: 32px;
    color: #fff;
    display: -ms-flexbox;
    display: flex
}

footer .contacttext .caption {
    color: #fff;
    font-size: 1.6rem;
    line-height: 24px;
    font-family: "pfhandbookpro-regular",sans-serif
}

footer .contacttext .icon {
    font-size: 2.2rem;
    margin: 0 8px
}

.dark-grey-bg {
    background-color: #6c7174
}

@media screen and (max-width: 1020px) {
    footer .lcol {
        display:none
    }
}

@media screen and (max-width: 1020px) and (min-width:768px) {
    footer .upper-div {
        width:25%
    }

    footer .lower-div {
        width: 75%;
        display: block;
        clear: none;
        float: left
    }

    footer .lower-div .socialicons {
        display: block;
        margin-top: 10px
    }

    footer .lower-div .socialicons ul {
        display: none
    }
}

.footer-container {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row
}

.footer-container__links {
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-left: 65px
}

@media screen and (max-width: 1300px) {
    .footer-container__links {
        margin-left:30px
    }
}

@media(max-width: 1020px) {
    .footer-container__links {
        display:none
    }
}

.light-white-grey-bg {
    background-color: #f9fbfc
}

.footer-category-wrapper {
    float: left;
    width: 100%
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper {
        background-color:#fff;
        border-top: 1px solid #ddd
    }
}

.footer-category-wrapper .category-title {
    font-size: 2.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color:  #19503e
}

@media screen and (max-width: 1399px) {
    .footer-category-wrapper .category-title {
        font-size:2rem
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-title {
        padding-top:16px;
        padding-bottom: 15px
    }

    .footer-category-wrapper .category-title:after {
        content: "";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: "font-icons";
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        font-size: 1.8rem;
        position: absolute;
        right: 32px
    }
}

.footer-category-wrapper .category-title-link {
    display: inline-block;
    margin-bottom: 38px
}

@media screen and (max-width: 1399px) {
    .footer-category-wrapper .category-title-link {
        margin-bottom:18px
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-title-link {
        margin-bottom:0;
        display: block
    }

    .footer-category-wrapper .category-title-link.active .category-title:after {
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .footer-category-wrapper .category-title-link.active .category-title:before {
        content: none
    }
}

.footer-category-wrapper .category-title-link:hover,.footer-category-wrapper .category-title-link:active,.footer-category-wrapper .category-title-link:focus {
    border-bottom: none
}

.footer-category-wrapper .category-subtitle {
    margin-bottom: 17px
}

.footer-category-wrapper .category-subtitle a {
    font-size: 1.8rem;
    line-height: 20px;
    font-family: "pfhandbookpro-bold",sans-serif;
    color:  #19503e
}

@media screen and (max-width: 1399px) {
    .footer-category-wrapper .category-subtitle {
        margin-bottom:13px
    }

    .footer-category-wrapper .category-subtitle a {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-subtitle {
        margin-bottom:10px
    }
}

.footer-category-wrapper .category-content-item ul {
    padding-left: 0
}

.footer-category-wrapper .category-content-item ul li {
    margin-bottom: 20px;
    padding-bottom: 0;
    padding-top: 0;
    margin-right: 24px
}

.footer-category-wrapper .category-content-item ul li a {
    font-size: 1.6rem;
    line-height: 20px;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000
}

.footer-category-wrapper .category-content-item ul li a:hover,.footer-category-wrapper .category-content-item ul li a:active,.footer-category-wrapper .category-content-item ul li a:focus {
    color: #000;
    border-bottom-color: #000
}

.footer-category-wrapper .category-content-item ul li::before {
    display: none
}

@media screen and (max-width: 1399px) {
    .footer-category-wrapper .category-content-item ul li {
        margin-bottom:10px
    }

    .footer-category-wrapper .category-content-item ul li a {
        font-size: 1.3rem;
        line-height: 17px
    }
}

.footer-category-wrapper .category-content-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 37px 0 33px 0
}

@media screen and (max-width: 1399px) {
    .footer-category-wrapper .category-content-wrapper {
        margin:32px 0 30px 0
    }
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-content-wrapper {
        margin:17px 0 15px 0
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-content-wrapper {
        display:block;
        margin: 0
    }
}

.footer-category-wrapper .category-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-content {
        display:block
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-content {
        display:none;
        margin-top: 12px
    }
}

.footer-category-wrapper .category-wrapper {
    border-left: 1px solid #d8d8d8;
    padding-left: 41px;
    margin-left: 71px
}

.footer-category-wrapper .category-wrapper.no-archive-section {
    border-left: none;
    padding-left: 0;
    margin-left: 0
}

.footer-category-wrapper .category-wrapper .category-content-item {
    margin-right: 54px;
    max-width: 195px
}

.footer-category-wrapper .category-wrapper .category-content-item:last-child {
    margin-right: 0
}

.footer-category-wrapper .category-wrapper .category-content-item ul li {
    margin-right: 0
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-wrapper .category-content-item ul {
        display:none
    }
}

@media screen and (max-width: 1199px) {
    .footer-category-wrapper .category-wrapper {
        padding-left:31px;
        margin-left: 11px
    }

    .footer-category-wrapper .category-wrapper .category-content-item {
        margin-right: 22px
    }
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-wrapper {
        width:55%
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-wrapper {
        width:100%;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        margin-bottom: 25px
    }

    .footer-category-wrapper .category-wrapper .category-title-link:before {
        content: "";
        background-color: #ddd;
        height: 1px;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0
    }
}

.footer-category-wrapper .category-archive-wrapper .category-content-item ul {
    columns: 2
}

@media screen and (max-width: 1020px) {
    .footer-category-wrapper .category-archive-wrapper {
        -ms-flex:1 0 45%;
        flex: 1 0 45%
    }
}

@media screen and (max-width: 767px) {
    .footer-category-wrapper .category-archive-wrapper .category-title:before {
        background-color:#ddd;
        height: 1px;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        margin-top: 35px
    }
}

.show-older-link {
    font-family: "pfhandbookpro-bold",sans-serif !important;
    border-bottom: 1px solid !important
}

.three-col-list.link-list__container {
    position: relative;
    width: 100%
}

.three-col-list.link-list__container ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.three-col-list.link-list__container ul li {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-right: 15px;
    padding-left: 15px
}

@media(max-width: 1200px) {
    .three-col-list.link-list__container ul li {
        -ms-flex:0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(max-width: 1020px) {
    .three-col-list.link-list__container ul li {
        -ms-flex:0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(max-width: 767px) {
    .three-col-list.link-list__container ul li {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0
    }
}

.three-col-list.link-list__container ul li:before {
    all: unset
}

.three-col-list.link-list__container ul li a {
    font-size: 2.4rem;
    line-height: 2.8rem;
    border-color: #f1f3f6
}

@media(max-width: 767px) {
    .three-col-list.link-list__container ul li a {
        font-size:2.2rem;
        line-height: 2.8rem
    }
}

@media(max-width: 767px) {
    .three-col-list.link-list__container ul li:last-child a {
        border:none
    }
}

.three-col-list.link-list__container .link-list__list--icon .icon {
    font-size: 2.4rem;
    display: inline-block;
    vertical-align: middle;
    color: #b37671;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.three-col-list.link-list__container .link-list__list--icon .icon--img {
    margin: 0;
    max-width: 2.4rem
}

@media(max-width: 1020px) {
    .three-col-list.link-list__container .link-list__list--icon .icon {
        -ms-transform:none;
        transform: none;
        top: 20px
    }
}

.three-col-list.link-list__container .link-list__list--icon li a {
    padding: 18px 20px 18px 40px
}

.three-col-list.link-list__container--tab ul li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.three-col-list.link-list__container--tab ul li a {
    padding: 8px 20px 8px 0
}

.three-col-list.link-list__container--tab ul li:last-child a {
    border-bottom: 0
}

@media(max-width: 767px) {
    .three-col-list.link-list__container--tab ul li {
        padding-right:15px;
        padding-left: 15px
    }

    .three-col-list.link-list__container--tab ul li a {
        padding: 8px 20px 8px 0;
        font-size: 2rem;
        line-height: 2.4rem
    }
}

.three-col-list.link-list__container ul.link-list__list--download li {
    padding-left: 0;
    padding-right: 0
}

.on-page-editor .three-col-list.link-list__container ul .scLooseFrameZone.scEnabledChrome {
    width: 33.33333%
}

.on-page-editor .three-col-list.link-list__container ul .scLooseFrameZone.scEnabledChrome li {
    width: 100%;
    max-width: 100%
}

.two-col-list.link-list__container {
    position: relative;
    width: 100%
}

.two-col-list.link-list__container ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 14.666667%;
    margin-right: 14.666667%
}

@media(max-width: 767px) {
    .two-col-list.link-list__container ul {
        margin:0
    }
}

.two-col-list.link-list__container ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px
}

@media(max-width: 1200px) {
    .two-col-list.link-list__container ul li {
        -ms-flex:0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(max-width: 1020px) {
    .two-col-list.link-list__container ul li {
        -ms-flex:0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(max-width: 767px) {
    .two-col-list.link-list__container ul li {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0
    }
}

.two-col-list.link-list__container ul li:before {
    all: unset
}

.two-col-list.link-list__container ul li a {
    font-size: 2.4rem;
    line-height: 2.8rem
}

@media(max-width: 767px) {
    .two-col-list.link-list__container ul li a {
        font-size:2.4rem;
        line-height: 2.8rem
    }
}

@media(max-width: 767px) {
    .two-col-list.link-list__container ul li:last-child a {
        border:none
    }
}

.two-col-list.link-list__container .link-list__list--column {
    margin-left: -15px;
    margin-right: -15px
}

.link-list {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.link-list__container {
    width: 100%;
    display: block
}

.link-list__brand-title {
    padding: 2px 12px 6px 12px;
    font-size: 3.2rem;
    line-height: 4rem
}

@media(max-width: 767px) {
    .link-list__brand-title {
        font-size:2.8rem;
        line-height: 3.2rem
    }
}

.link-list__brand-title-container {
    text-align: center;
    margin: 48px 0 32px 0;
    height: 100%
}

@media(max-width: 767px) {
    .link-list__brand-title-container {
        text-align:left;
        margin: 32px 0 16px 0;
        height: auto !important
    }
}

.link-list__brand-title {
    color: #fff
}

.link-list__title {
    font-size: 6.4rem;
    line-height: 7.2rem;
    padding: 0 15px;
    padding-bottom: 64px;
    text-align: center
}

@media(max-width: 767px) {
    .link-list__title {
        font-size:4.4rem;
        line-height: 4.8rem
    }
}

@media(max-width: 767px) {
    .link-list__title {
        text-align:left;
        padding-bottom: 40px
    }
}

.link-list__list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0
}

.link-list__list li {
    padding: 0;
    display: -ms-flexbox;
    display: flex
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .link-list__list li {
        display: table
    }
}

.link-list__list li a {
    width: 100%;
    padding: 18px 20px 18px 0
}

.link-list__list li a:after {
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #6a4742
}

.link-list__list li a {
    color: #000;
    display: block;
    position: relative
}

.link-list__list li a:visited {
    color: #000;
    border: none
}

.link-list__list li a:hover {
    color: #000;
    border: none
}

.link-list__list li a:hover:after {
    color:  #19503e
}

.link-list__list li a:active {
    color: #000;
    border: none
}

.link-list__list li a:after {
    content: "";
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem
}

.link-list__list li:nth-child(n) a {
    border-bottom: 1px solid #c7c8ca
}

.link-list__list li:before {
    content: ""
}

.link-list__list--column li a {
    color: #000;
    display: block;
    position: relative
}

.link-list__list--column li a:visited {
    color: #000;
    border: none
}

.link-list__list--column li a:hover {
    color: #000;
    border: none
}

.link-list__list--column li a:hover:after {
    color:  #19503e
}

.link-list__list--column li a:active {
    color: #000;
    border: none
}

.link-list__list--column li a:after {
    content: "";
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem
}

.link-list__list--column li:nth-child(n) a {
    border-bottom: 1px solid #c7c8ca
}

.link-list__list--column li a {
    font-size: 2.4rem;
    line-height: 2.8rem
}

.link-list__list--column li:last-child a {
    border: none
}

.link-list__list--download li a {
    color: #000;
    display: block;
    position: relative
}

.link-list__list--download li a:visited {
    color: #000;
    border: none
}

.link-list__list--download li a:hover {
    color: #000;
    border: none
}

.link-list__list--download li a:hover:after {
    color:  #19503e
}

.link-list__list--download li a:active {
    color: #000;
    border: none
}

.link-list__list--download li a:after {
    content: "";
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem
}

.link-list__list--download li a {
    padding: 18px 20px 18px 15px;
    margin-right: 3rem
}

@media(max-width: 1020px) {
    .link-list__list--download li a {
        margin-right:1.4rem
    }
}

@media(max-width: 767px) {
    .link-list__list--download li a {
        padding:18px 20px 18px 0;
        margin-right: 0
    }
}

.link-list__list--download li a:after {
    right: 1.5rem
}

@media(max-width: 767px) {
    .link-list__list--download li a:after {
        right:0
    }
}

.link-list__list--download li a:hover {
    border-bottom: 1px solid #c7c8ca
}

.pillar-tile {
    position: relative
}

.pillar-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6
}

@media(max-width: 1020px) {
    .pillar-tile::before {
        background:none
    }
}

.pillar-tile__wrapper {
    background: #fff;
    height: 100%
}

@media(max-width: 1020px) {
    .pillar-tile__wrapper {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        flex-direction: row;
        padding: 24px 0
    }
}

@media(max-width: 767px) {
    .pillar-tile__wrapper {
        -ms-flex-direction:column;
        flex-direction: column;
        padding: 0
    }
}

.pillar-tile__media-wrapper {
    position: relative
}

@media(max-width: 1020px) {
    .pillar-tile__media-wrapper {
        -ms-flex:1;
        flex: 1;
        margin: 0
    }
}

@media(max-width: 767px) {
    .pillar-tile__media-wrapper {
        -ms-flex:unset;
        flex: unset;
        margin: 0
    }
}

.pillar-tile__img img {
    margin: 0
}

@media(max-width: 767px) {
    .pillar-tile__img {
        display:none
    }
}

.pillar-tile__title {
    position: absolute;
    top: 16px;
    left: 16px;
    float: left;
    opacity: .9;
    width: 65%;
    color: #fff;
    padding: 8px;
    font-size: 3.2rem;
    line-height: 3.2rem
}

@media(max-width: 1020px) {
    .pillar-tile__title {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

@media(max-width: 767px) {
    .pillar-tile__title {
        font-size:2.8rem;
        line-height: 3.2rem;
        width: 100%;
        margin: 0;
        position: relative;
        left: 0;
        top: 0
    }
}

.pillar-tile__content-wrapper {
    padding: 16px;
}

.pillar-tile__content-wrapper .caption p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1020px) {
    .pillar-tile__content-wrapper {
        -ms-flex:1;
        flex: 1;
        padding: 0 0 0 24px
    }

    .pillar-tile__content-wrapper .caption {
        margin-bottom: 16px
    }

    .pillar-tile__content-wrapper .caption p {
        font-size: 1.6rem;
        line-height: 2.4rem
    }
}

@media(max-width: 767px) {
    .pillar-tile__content-wrapper {
        -ms-flex:unset;
        flex: unset;
        padding: 24px 0
    }
}

.pillar-tile__list .link-list__list {
    margin: 0
}

.pillar-tile__list .link-list__list li a {
    padding: 10px 30px 10px 0;
    font-size: 2.2rem;
    line-height: 2.8rem
}

.pillar-tile__list .link-list__list li a {
    color: #000;
    display: block;
    position: relative
}

.pillar-tile__list .link-list__list li a:visited {
    color: #000;
    border: none
}

.pillar-tile__list .link-list__list li a:hover {
    color: #000;
    border: none
}

.pillar-tile__list .link-list__list li a:hover:after {
    color:  #19503e
}

.pillar-tile__list .link-list__list li a:active {
    color: #000;
    border: none
}

.pillar-tile__list .link-list__list li a:after {
    content: "";
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem
}

.pillar-tile__list .link-list__list li:nth-child(n) a {
    border-bottom: 1px solid #c7c8ca
}

.pillar-tile__list .link-list__list li:last-child a {
    border: none
}

.pillar-tile--link-wrapper {
    position: relative
}

.pillar-tile--link {
    padding: 0
}

.pillar-tile--link span {
    display: block
}

.pillar-tile--link .brand-name {
    margin: 8px;
    text-transform: uppercase
}

@media(max-width: 1200px) {
    .pillar-tile--link .brand-name {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

@media(max-width: 1020px) {
    .pillar-tile--link .brand-name {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

@media(max-width: 767px) {
    .pillar-tile--link .brand-name {
        margin:16px;
        font-size: 2.8rem;
        line-height: 3.2rem
    }
}

.pillar-tile--link .click {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 16px 16px 8px 8px;
    position: relative
}

@media(max-width: 767px) {
    .pillar-tile--link .click {
        font-size:2rem;
        line-height: 2.4rem;
        margin: 24px 16px 16px 16px
    }
}

.pillar-tile--link .click::after {
    content: "";
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    line-height: 1;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.pillar-tile--link-list-container .link-list__list {
    margin: 0
}

@media(max-width: 1020px) {
    .pillar-tile--link-list-container .link-list__list li a {
        font-size:2.2rem;
        line-height: 2.8rem
    }
}

.pillar-tile__link-container a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.pillar-tile__link-container a:hover {
    border: none;
    text-decoration: none
}

.top-right-wrapper {
    margin-bottom: 40px
}

@media screen and (max-width: 1020px) {
    .top-right-wrapper {
        position:absolute;
        right: 95px;
        top: 26px
    }
}

@media screen and (max-width: 767px) {
    .top-right-wrapper {
        right:65px
    }
}

.loggedin-user {
    position: relative;
    vertical-align: middle
}

.loggedin-user:before {
    content: none
}

.loggedin-user .divicon {
    border-radius: 50px;
    padding: 3px 5px;
    border: 1px solid #fff;
    margin-left: 0;
    margin-top: 2px;
    background-color: #8b151b;
    line-height: .89;
    font-size: 15px;
    width: 25px;
    height: 25px;
    text-transform: uppercase;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-left: 2px
}

.loggedin-user .divicon:hover {
    border: 1px solid #f7a500
}

.dashboard-list {
    position: relative;
    display: inline-block;
    padding-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: top;
    top: 2px
}

@media screen and (max-width: 1020px) {
    .dashboard-list {
        top:0
    }
}

.dashboard-list .divicon {
    border-radius: 50px;
    border: 1px solid #fff;
    position: relative;
    background-color: #8b151b;
    line-height: 18px;
    font-size: 9.8px;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center
}

@media screen and (max-width: 767px) {
    .dashboard-list .divicon {
        height:31px;
        width: 31px;
        font-size: 18.6px;
        line-height: 29px
    }
}

.dashboard-list .divicon:hover {
    border: 1px solid #f7a500
}

.dashboard-list .icon {
    font-size: 1.2rem;
    line-height: 23px
}

@media screen and (max-width: 1020px) {
    .dashboard-list .icon {
        display:none
    }
}

.dashboard-list .loggedin-item {
    padding-top: 0
}

.dashboard-list .loggedin-item a:hover,.dashboard-list .loggedin-item a:focus {
    border-bottom: none
}

.dashboard-list .loggedin-item.show .login-dropdowm {
    display: block;
    width: 204px !important;
    margin-top: 15px !important;
    right: -32px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important
}

.dashboard-list li:before {
    content: none
}

.dashboard-list .login-dropdowm {
    float: right;
    margin-top: 15px;
    height: auto;
    min-width: 204px;
    background-color: #fff;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.18);
    right: -32px;
    position: absolute;
    z-index: 999;
    padding: 0;
    display: none;
    padding-top: 5px;
    padding-bottom: 5px
}

.dashboard-list .login-dropdowm li {
    padding-bottom: 5px;
    margin-left: 6px;
    margin-right: 6px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px
}

.dashboard-list .login-dropdowm li a {
    font-size: 16px;
    line-height: 20px;
    color: #000
}

.dashboard-list .login-dropdowm li.last_child {
    border-top: 1px solid #cdcece;
    margin-top: 10px
}

.dashboard-list .arrow_up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    right: 35px;
    top: -10px
}

@media screen and (max-width: 1020px) {
    .dashboard-list .arrow_up {
        margin-right:15px
    }
}

.top-right-item {
    margin-left: 15px;
    text-transform: uppercase;
    display: inline-block
}

.top-right-item a:hover {
    border-color: #fff
}

.top-right-item .iconText {
    color: #fff;
}

@media screen and (max-width: 1280px) and (min-width:1201px) {
    .top-right-item .iconText {
        font-size:14px;
    }
}

.top-right-item .icon {
    color: #fff;
}

.top-right-item.login-link {
    position: relative;
    margin-left: 5px;
    padding-left: 5px;
    padding-right: 5px
}

.top-right-item.dashboard-link {
    margin-right: 10px
}

.top-right-item.dashboard-link a {
    background-color: #fff;
    padding: 0 6px;
    border-radius: 10px
}

.top-right-item.dashboard-link a .iconText {
    vertical-align: top;
    color: #8b151b;
    line-height: 20px
}

@media screen and (max-width: 1350px) and (min-width:1020px) {
    .top-right-item.phone-link {
        margin-left:0
    }
}

@media screen and (max-width: 1199px) {
    .top-right-item {
        margin-left:5px
    }
}

.top-right-item span::before {
    font-size: 1.3rem
}

@media screen and (max-width: 1200px) {
    .top-right-item span::before {
        font-size:1.1rem
    }
}

.top-right-item .icon {
    margin-right: 0;
    margin-left: 2px
}

@media screen and (max-width: 1200px) {
    .top-right-item a {
        font-size:1.6rem
    }
}

@media(max-width: 1020px) {
    .utility-links {
        padding-top:17px;
        padding-bottom: 19px;
        display: table;
        width: 100%
    }

    .utility-links .icon,.utility-links .loggedin-name {
        font-size: 2.5rem;
        display: table-cell;
        color: #fff;
        text-decoration: none;
        border-bottom: none !important;
        padding-bottom: 0;
        text-align: center
    }

    .utility-links .icon-phone {
        text-align: center;
        border-left: 1px solid rgba(255,255,255,.2);
        border-right: 1px solid rgba(255,255,255,.2);
        padding-right: 6px;
        padding-left: 6px
    }
}

@media(max-width: 1020px) {
    #mobi-navigation .dashboard-list,#mobi-navigation .loggedin-name {
        padding:0;
        vertical-align: text-top
    }
}

#mobi-navigation.active .menu-header .logo {
    margin-bottom: 7px;
    margin-left: 27px
}

@media screen and (max-width: 768px) {
    #mobi-navigation.active .menu-header .logo {
        margin-bottom:7px;
        margin-left: 20px
    }
}

@media screen and (max-width: 576px) {
    #mobi-navigation.active .menu-header .logo {
        margin-bottom:7px;
        margin-left: 27px
    }
}

@media screen and (max-width: 360px) {
    #mobi-navigation.active .menu-header .logo {
        margin-left:17px
    }
}

@media screen and (max-width: 360px) {
    #mobi-navigation.active .menu-header .logo img {
        max-width:178px
    }
}

#mobi-navigation.active .dashboard-link {
    display: block !important;
    margin-top: 4px;
    line-height: 17px;
    margin-bottom: 4px;
    text-align: center
}

@media screen and (max-width: 768px) {
    #mobi-navigation.active .dashboard-link {
        text-align:center;
        position: relative;
        bottom: 10px;
        right: 10px;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        margin: 0;
        padding: 5px;
        display: block !important
    }
}

@media screen and (max-width: 767px) {
    #mobi-navigation.active .dashboard-link {
        text-align:center;
        padding: 15px 20px;
        position: relative;
        bottom: 0;
        display: block !important;
        border-left: 1px solid rgba(255,255,255,.2);
        border-right: 1px solid rgba(255,255,255,.2)
    }
}

@media screen and (max-width: 576px) {
    #mobi-navigation.active .dashboard-link {
        right:20px !important;
        display: block !important
    }
}

@media screen and (max-width: 375px) {
    #mobi-navigation.active .dashboard-link {
        padding:15px 5px;
        display: block !important;
        right: 5px !important
    }
}

@media screen and (max-width: 360px) {
    #mobi-navigation.active .dashboard-link {
        padding:15px 3px;
        display: block !important;
        bottom: -4px !important;
        right: 5px !important
    }
}

@media screen and (max-width: 375px) {
    #mobi-navigation.active .dashboard-link a {
        font-size:17px
    }
}

@media screen and (max-width: 360px) {
    #mobi-navigation.active .dashboard-link a {
        font-size:19px
    }
}

@media screen and (max-width: 320px) {
    #mobi-navigation.active .dashboard-link a {
        font-size:15px
    }
}

@media screen and (max-width: 576px) {
    #mobi-navigation.active .divicon {
        bottom:1px !important;
        left: -5px !important
    }
}

@media screen and (max-width: 767px) {
    #mobi-navigation.active .dashboard-list .divicon {
        height:43px;
        width: 43px;
        font-size: 24px;
        line-height: 23px;
        padding: 22%;
        bottom: 0
    }
}

@media screen and (max-width: 375px) {
    #mobi-navigation.active .dashboard-list .divicon {
        height:40px !important;
        width: 40px !important;
        font-size: 21px !important;
        line-height: 18px;
        padding: 7%;
        right: 0;
        left: 5px !important;
        bottom: 1px !important
    }
}

@media screen and (max-width: 360px) {
    #mobi-navigation.active .dashboard-list .divicon {
        height:28px !important;
        width: 28px !important;
        font-size: 15px !important;
        line-height: 23px;
        padding: 7%;
        right: 0;
        left: 5px !important;
        bottom: 1px !important
    }
}

.banner {
    width: 100%;
    display: block
}

.banner__wrapper {
    width: 100%;
    min-height: auto;
    z-index: -999;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right
}

@media(max-width: 767px) {
    .banner__wrapper {
        min-height:487px
    }
}

@media(max-width: 767px) {
    .banner__wrapper--v2 {
        min-height:calc(100vh - 94px);
        height: 80vh
    }
}

.banner__wrapper--v3 {
    height: 350px;
    min-height: auto
}

@media(max-width: 1020px) {
    .banner__wrapper--v3 {
        height:262px
    }
}

.banner__wrapper--v10 {
    height: 400px;
    min-height: auto
}

@media(max-width: 1020px) {
    .banner__wrapper--v10 {
        height:262px
    }
}

.banner__wrapper--v9 {
    min-height: 262px
}

@media(max-width: 1020px) {
    .banner__wrapper--v9 {
        height:262px
    }
}

@media(max-width: 767px) {
    .banner__wrapper--v9 {
        height:0;
        min-height: 0
    }
}

.banner__wrapper--v6 {
    min-height: 375px;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    padding-top: 124px;
    -ms-flex-align: end;
    align-items: flex-end
}

@media(max-width: 1020px) {
    .banner__wrapper--v6 {
        padding-top:48px;
        min-height: auto
    }
}

@media(max-width: 767px) {
    .banner__wrapper--v6 {
        padding-top:0
    }
}

.banner__wrapper--iframe {
    max-height: 600px;
    -ms-overflow-style: none
}

.banner__wrapper--iframe::-webkit-scrollbar {
    display: none
}

.banner__wrapper--iframe iframe {
    width: 100%;
    min-height: 600px;
    z-index: -9999;
    border: none
}

@media(max-width: 767px) {
    .banner__wrapper--iframe iframe {
        min-height:487px
    }
}

@media(max-width: 767px) {
    .banner__wrapper--iframe {
        max-height:487px
    }
}

.banner__content {
    padding-left: 46px;
    display: block
}

@media(max-width: 1020px) {
    .banner__content {
        padding:0 15px
    }
}

@media(max-width: 767px) {
    .banner__content {
        padding:0
    }
}

.banner__content .button-primary {
    min-width: 250px;
    margin-top: 40px
}

@media(max-width: 1020px) {
    .banner__content .button-primary {
        margin:40px 0 128px 0
    }
}

@media(max-width: 767px) {
    .banner__content .button-primary {
        width:100%;
        margin: 24px 0
    }
}

.banner__content--v2 {
    padding-top: 196px;
    padding-bottom: 100px;
    position: relative
}

.banner__content--v2 .button-primary {
    margin: 0;
    min-width: 184px
}

@media(max-width: 767px) {
    .banner__content--v2 .button-primary {
        width:100%;
        position: absolute;
        bottom: 24px;
        left: 0
    }
}

@media(max-width: 1200px) {
    .banner__content--v2 {
        padding-left:15px;
        padding-right: 15px
    }
}

@media(max-width: 1020px) {
    .banner__content--v2 {
        padding-top:126px
    }
}

@media(max-width: 767px) {
    .banner__content--v2 {
        padding:40px 0 0 0;
        height: 76.5vh
    }
}

.banner__content--v3 {
    padding-top: 145px;
    padding-left: 0
}

.banner__content--v3 .button-secondary {
    width: 230px;
    padding: 5px 14px;
    font-size: 2rem;
    margin: 15px 0 0 0
}

.banner__content--v3 .button-secondary:hover {
    padding: 5px 14px;
    font-size: 2rem
}

@media(max-width: 1020px) {
    .banner__content--v3 {
        padding-top:24px
    }
}

.banner__content--v10 {
    padding-top: 145px;
    padding-left: 0
}

.banner__content--v10 .button-secondary {
    width: 230px;
    padding: 5px 14px;
    font-size: 2rem;
    margin: 15px 0 0 0
}

.banner__content--v10 .button-secondary:hover {
    padding: 5px 14px;
    font-size: 2rem
}

@media(max-width: 1020px) {
    .banner__content--v10 {
        padding-top:24px
    }
}

.banner__content--v6 {
    width: 100%;
    max-width: 1400px;
    padding-right: 48px;
    padding-left: 48px;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

@media(max-width: 767px) {
    .banner__content--v6 {
        padding-bottom:32px;
        padding-top: 32px;
        padding-left: 15px;
        padding-right: 0;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.banner__content--v6 h2 {
    color: #fff
}

.banner__content--v6 h2 span {
    color: #000 !important
}

.banner__content--v6 p {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #fff;
    margin-top: 10px
}

.banner__content--v6 p span {
    color: #000 !important
}

.banner__label {
    padding: 18px 8px;
    text-transform: uppercase;
    color: #fff;
    font-weight:700;
}

.banner__label--v3 {
    text-transform: none;
    display: block;
    padding: 0
}

@media(max-width: 1020px) {
    .banner__label--v3 {
        font-size:1.4rem;
        line-height: normal
    }
}

@media(max-width: 767px) {
    .banner__label--v3 {
        font-size:1.8rem
    }
}

.banner__title {
    padding-top: 246px;
    color: #fff;
    font-family: "pfhandbookpro-light",sans-serif;
    letter-spacing: -1.2px;
    font-size: 9rem;
    line-height: 7.2rem
}

@media(max-width: 1020px) {
    .banner__title {
        padding-top:126px
    }
}

@media(max-width: 767px) {
    .banner__title {
        padding-top:207px;
        font-size: 6.4rem;
        line-height: 5.6rem;
        letter-spacing: normal
    }
}

.banner__title--bold {
    padding: 8px 0 40px 0;
    font-family: "pfhandbookpro-bold",sans-serif;
    width: 65%;
    line-height: 82px
}

@media(max-width: 1200px) {
    .banner__title--bold {
        width:75%
    }
}

@media(max-width: 1020px) {
    .banner__title--bold {
        width:100%
    }
}

@media(max-width: 767px) {
    .banner__title--bold {
        font-size:6.4rem;
        line-height: 5.6rem;
        letter-spacing: normal
    }
}

.banner__title--v3 {
    font-size: 4rem;
    line-height: 1.1;
    padding: 0;
    width: 444px;
    letter-spacing: 1.5px
}

@media(max-width: 1020px) {
    .banner__title--v3 {
        width:365px;
        margin-top: 14px;
        font-size: 2.8rem;
        line-height: 2.8rem
    }
}

@media(max-width: 767px) {
    .banner__title--v3 {
        width:290px;
        margin-top: 22px;
        font-size: 1.9rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-weight: bold;
        line-height: 1.1
    }
}

.banner__title--v10 {
    font-size: 22px;
    line-height: 1.1;
    padding: 0;
    width: 444px;
    letter-spacing: 1.5px
}

@media(max-width: 1020px) {
    .banner__title--v10 {
        width:365px;
        margin-top: 14px;
        font-size: 18px;
        line-height: 2.8rem
    }
}

@media(max-width: 767px) {
    .banner__title--v10 {
        width:290px;
        margin-top: 22px;
        font-size: 1.9rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-weight: bold;
        line-height: 1.1
    }
}

.banner {
    position: relative
}

.banner__intro-tile-wrapper-bg {
    background-color: #f1f3f6
}

@media(max-width: 1020px) {
    .banner__intro-tile-wrapper-bg {
        background-color:#fff
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-wrapper-bg {
        background-color:#fff
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-wrapper {
        padding-bottom:10px
    }
}

.banner__intro-tile-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6;
    z-index: -1
}

@media(max-width: 1020px) {
    .banner__intro-tile-wrapper::before {
        background:none
    }
}

.banner__intro-tile-wrapper--v2 {
    padding-bottom: 0
}

.banner__intro-tile-container {
    background: #fff;
    padding: 48px 0;
    margin-top: -88px
}

@media(max-width: 1020px) {
    .banner__intro-tile-container {
        margin-top:0
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-container {
        padding-bottom:0;
        padding-top: 32px
    }
}

.banner__intro-tile-title {
    color: #000;
    font-size: 3.1rem;
    line-height: 4.8rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

@media(max-width: 767px) {
    .banner__intro-tile-title {
        font-size:3.6rem;
        line-height: 4rem;
        text-align: left
    }
}

.banner__intro-tile-desc {
    color: #6c7174;
    text-align: center
}

@media(max-width: 767px) {
    .banner__intro-tile-desc {
        text-align:left
    }
}

.jumbotron {
    position: relative;
    background: transparent;
    width: 100%;
    height: 100%;
    background-size: cover;
    color: #fff;
    text-align: left;
    box-shadow: 0 5.14286px 10.2857px -1.71429px rgba(0,0,0,.105927);
    border-radius: 13.7143px;
    padding: 18px
}

.jumbotron__body {
    width: 400px;
    max-width: 100%;
    padding: 20px;
    background: rgba(255,255,255,.2);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 13.7143px
}

.jumbotron__body p {
    font-size: 1.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #fff;
    line-height: 2rem;
    margin-bottom: 14px
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .jumbotron__body p {
        font-size:1.5rem;
        line-height: 1.7rem
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .jumbotron__body p {
        font-size:10px;
        line-height: 1.2rem
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .jumbotron__body p {
        font-size:.7rem;
        line-height: .9rem
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .jumbotron__body p {
        font-size:1.8rem
    }
}

.jumbotron__body .btn {
    font-weight: 500;
    font-size: 15.4286px;
    line-height: 19px;
    width: 173px;
    padding: 13px 57px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    text-transform: uppercase
}

.jumbotron__title {
    width: 100%;
    display: block
}

.jumbotron__title h4 {
    font-size: 2.6rem;
    line-height: 2rem !important;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    margin-bottom: -18px
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .jumbotron__title h4 {
        font-size:13px;
        line-height: 2rem !important
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .jumbotron__title h4 {
        font-size:1.5rem;
        line-height: 2rem !important
    }
}

@media screen and (max-width: 749px) and (min-width:601px) {
    .jumbotron__title h4 {
        font-size:1.1rem;
        line-height: 1.4rem !important
    }
}

.jumbotron__bg {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 13.7143px;
    object-fit: cover
}

#metaverseForm .modal-content {
    background-color: transparent
}

#metaverseForm .blog-radio span:first-child {
    width: auto;
    margin: 20px 0 0
}

#metaverseForm .blog-radio ul.radio-group-plan li:last-child {
    margin-top: 0
}

@media screen and (max-width: 600px) {
    #metaverseForm .otp_btn {
        width:108px !important
    }
}

@media screen and (max-width: 600px) {
    #metaverseForm .otp_btn .sendOTP {
        width:100% !important
    }
}

@media screen and (max-width: 600px) {
    #metaverseForm .Rectangle-copy {
        width:100% !important;
        margin: 0
    }
}

@media screen and (max-width: 600px) {
    #metaverseForm .Rectangle-copy .REQUEST-CALLBACK {
        width:100% !important
    }
}

#metaverseForm .close-btn-lead button {
    background-color: transparent;
    height: 40px;
    color:  #19503e;
    width: 40px;
    border: 1px solid transparent;
    font-size: 40px;
    cursor: pointer
}

#metaverseForm .modalContainer {
    padding-left: 0;
    padding-bottom: 0;
    border-radius: 16px
}

#metaverseForm .modalContainer form {
    padding: 18px
}

#metaverseForm .modalContainer .banner {
    padding: 0 20px
}

#metaverseForm .modalContainer .banner img {
    margin-bottom: 0
}

@media screen and (max-width: 600px) {
    #metaverseForm .modalContainer {
        max-height:100%
    }
}

@media screen and (min-width: 600px) {
    #metaverseForm .modalContainer {
        max-height:100%
    }
}

#metaverseForm .Field-BG {
    margin-left: 0;
    margin-right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

#metaverseForm .Field-BG .name,#metaverseForm .pincode {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 42px;
    height: 23px
}

#metaverseForm .Field-BG .name_email_input {
    width: 100%;
    height: 40px;
    padding: 11.2px 14.4px 10.4px 14.4px;
    border-radius: 4.6px;
    border: solid 1.2px #cdcece;
    background-color: #fff;
    box-sizing: border-box
}

#metaverseForm .Field-BG .email {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 42px;
    height: 23px
}

#metaverseForm .Field-BG .mobile_number {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 23px
}

@media only screen and (max-width: 600px) {
    #metaverseForm .modalContainer {
        min-height:auto
    }

    #metaverseForm .By-clicking-on-Reque {
        width: 100%;
        margin: 0
    }
}

@media only screen and (min-width: 600px) {
    #metaverseForm .modalContainer {
        width:418px;
        min-height: 100%;
        border-radius: 16px;
        box-shadow: 0 6px 19px 0 rgba(0,0,0,.16);
        margin-top: 0;
        object-fit: contain
    }

    #metaverseForm .modalContainer .title {
        width: 70%;
        margin: 0;
        font-size: 32px;
        font-weight: normal;
        padding: 20px;
        text-align: left
    }

    #metaverseForm .subtitle {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        width: 305px;
        height: 33.6px;
        margin: 0
    }

    #metaverseForm .subtitle span {
        font-size: 13px;
        line-height: 1.29
    }

    #metaverseForm .Field-BG {
        margin-left: 0;
        margin-right: 0
    }

    #metaverseForm .name {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 34px;
        height: 19px
    }

    #metaverseForm .Field-BG .name_email_input {
        width: 100%;
        height: 40px;
        padding: 11.2px 14.4px 10.4px 14.4px;
        border-radius: 3.7px
    }

    #metaverseForm .email {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 33px;
        height: 19px
    }

    #metaverseForm .Field-BG .mobile_number {
        margin-bottom: 8px;
        margin-top: 8px;
        height: 19px
    }

    #metaverseForm .btn_input_div {
        width: 100%;
        height: 40px
    }

    #metaverseForm .mobile_input {
        width: 100%;
        height: 40px;
        padding: 13px 0 13px 40px;
        border-top-left-radius: 3.7px;
        border-bottom-left-radius: 3.7px
    }

    #metaverseForm .otp_btn {
        border-radius: 0 2.3px 2.3px 0;
        height: 40px;
        width: 97px;
        font-size: 25px
    }

    #metaverseForm .Rectangle-copy {
        width: 100%;
        height: 35px;
        margin: 0
    }

    #metaverseForm .REQUEST-CALLBACK {
        width: 100%;
        height: 16px;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: normal;
        text-align: center;
        color: #fff
    }

    #metaverseForm .By-clicking-on-Reque {
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 22px;
        margin: 0;
        opacity: .7;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 14px
    }

    #metaverseForm .sendOTP {
        width: 97px;
        height: 40px;
        font-size: 12px
    }

    #metaverseForm #addeddiv {
        margin-top: 8px;
        margin-bottom: 8px
    }

    #metaverseForm #addedinput {
        width: 304px;
        height: 40px;
        padding: 7px 19px 7px 18px;
        border-radius: 3.7px;
        border: solid 1.2px #cdcece;
        background-color: #fff;
        box-sizing: border-box
    }
}

#metaverseForm .modal-dialog-custom {
    max-width: none;
    width: unset !important;
    margin: 48px auto 0
}

#metaverseForm .Rectangle-copy.disabled {
    background-color: #d7d7d7;
    border: 1px solid #d7d7d7
}

#metaverseForm .Rectangle-copy.disabled .REQUEST-CALLBACK {
    color: #000;
    mix-blend-mode: normal;
    opacity: .5
}

#metaverseForm .asterisk {
    font-size: 12px;
    font-style: italic
}

#metaverseForm .By-clicking-on-Reque {
    text-align: left
}

#metaverseForm #leadForm-tnc {
    position: relative;
    top: 2px;
    left: 0
}

.media-tile {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 856px;
    margin: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 1200px) {
    .media-tile {
        max-width:736px
    }
}

@media(max-width: 1020px) {
    .media-tile {
        max-width:100%
    }
}

@media(max-width: 767px) {
    .media-tile {
        width:100vw;
        max-width: 100vw;
        position: relative;
        left: calc(-1*(100vw - 100%)/2)
    }
}

.media-tile--blog .slick-slide {
    margin: 0 1.6rem
}

.media-tile--blog .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 767px) {
    .media-tile--blog .slick-list {
        padding:0 40% 0 0;
        margin: 0
    }
}

.media-tile--col2 {
    max-width: 100%
}

.on-page-editor .media-tile--col2 .scLooseFrameZone.scEnabledChrome {
    width: 50%
}

.on-page-editor .media-tile--col2 .scLooseFrameZone.scEnabledChrome .media-tile__container--col2 {
    width: calc(100% - 3rem)
}

@media(max-width: 1020px) {
    .media-tile--col2 .media-tile__container {
        display:block
    }
}

.media-tile--col2 .media-tile__container:nth-child(-n+4) {
    display: block
}

.media-tile__container {
    margin-top: 32px;
    width: 100%;
    position: relative
}

@media(max-width: 767px) {
    .media-tile__container {
        margin-top:8px
    }
}

.media-tile__container--blog {
    margin-top: 0;
    margin-bottom: 3.2rem;
    display: none
}

@media(max-width: 767px) {
    .media-tile__container--blog {
        display:block
    }
}

.media-tile__container--blog:nth-child(-n+3) {
    display: block
}

.media-tile__container--col2 {
    width: calc(50% - 3rem)
}

.media-tile__container--col2 .media-tile__content {
    min-height: 11.8rem
}

.media-tile__container--col2:nth-child(odd) {
    margin-right: 3rem
}

.media-tile__heading {
    width: 100%;
    margin-bottom: 16px;
    text-align: center
}

@media(max-width: 767px) {
    .media-tile__heading {
        text-align:left
    }
}

.media-tile__heading h3 {
    font-size: 4.4rem;
    line-height: 4.8rem
}

@media(max-width: 767px) {
    .media-tile__heading h3 {
        font-size:3.6rem;
        line-height: 4rem
    }
}

.media-tile__media {
    -ms-flex: 0 0 34.579%;
    flex: 0 0 34.579%;
    max-width: 34.579%;
    position: relative
}

@media(max-width: 767px) {
    .media-tile__media {
        display:none
    }
}

.media-tile__media img {
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
    width: 100%;
    min-height: 168px
}

.media-tile__media--ie {
    width: 34.58%;
    max-width: 296px;
    float: left;
    height: inherit;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-image: url(http://lorempixel.com/408/230/);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 112px
}

.media-tile__media--blog {
    max-width: 19rem;
    position: relative
}

@media(max-width: 767px) {
    .media-tile__media--blog {
        display:block;
        max-width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        min-height: 14.8rem
    }
}

.media-tile__media--blog img {
    min-height: 11.2rem
}

.media-tile__media--liked {
    position: relative
}

.media-tile__content {
    -ms-flex: 0 0 65.422%;
    flex: 0 0 65.422%;
    max-width: 65.422%;
    padding: 24px 40px 40px 40px
}

@media(max-width: 767px) {
    .media-tile__content {
        padding:24px 16px;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.media-tile__content--blog {
    padding: 1.4rem 6rem 3rem 1.4rem
}

@media(max-width: 1020px) {
    .media-tile__content--blog {
        padding:3.2rem 2rem 3rem 4rem
    }
}

@media(max-width: 767px) {
    .media-tile__content--blog {
        padding:1.6rem;
        min-height: 11rem
    }
}

.media-tile__title {
    font-size: 3.2rem;
    line-height: 3.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 8px;
    position: relative;
    display: inline-block
}

@media(max-width: 767px) {
    .media-tile__title {
        font-size:2.8rem;
        line-height: 3.2rem;
        margin-bottom: 8px
    }
}

.media-tile__title--link {
    position: relative;
    font-size: 1.6rem
}

.media-tile__title--blog {
    font-size: 2rem;
    line-height: 2.4rem;
    position: static;
    height: 4.8rem
}

@media(max-width: 767px) {
    .media-tile__title--blog {
        margin-bottom:28px;
        height: 7.2rem
    }
}

.media-tile__title--icon {
    font-size: 2rem;
    position: absolute;
    right: 3rem;
    top: 1.8rem;
    color: #6a4742
}

@media(max-width: 1020px) {
    .media-tile__title--icon {
        display:none
    }
}

.media-tile__desc {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #6c7174
}

.media-tile__wrapper {
    display: -ms-flexbox;
    display: flex;
    background: #f1f3f6;
    min-height: 168px
}

@media(max-width: 767px) {
    .media-tile__wrapper {
        min-height:auto
    }
}

.media-tile__wrapper--has-link:hover .media-tile__title {
    color:  #19503e
}

.media-tile__wrapper--has-link:hover .media-tile__title--link:after {
    color:  #19503e
}

.media-tile__wrapper--blog {
    min-height: 11.2rem;
    background: #fff;
    border: 1px solid #dedede;
    height: 100%
}

.media-tile__wrapper--blog:hover .media-tile__title--icon {
    color:  #19503e
}

@media(max-width: 767px) {
    .media-tile__wrapper--blog {
        width:100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto
    }
}

.media-tile__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block
}

.media-tile__link:hover {
    border: none
}

.media-tile__likes {
    position: absolute;
    bottom: 1.4rem;
    right: 3rem;
    z-index: 2;
    cursor: pointer
}

.media-tile__likes--active .media-tile__like-icon {
    color:  #19503e
}

@media(max-width: 767px) {
    .media-tile__likes {
        right:1.8rem
    }
}

.media-tile__like-icon {
    font-size: 1.4rem;
    color: #6c7174;
    margin: 0 .7rem 0 0
}

@media(max-width: 767px) {
    .media-tile__like-icon {
        font-size:1.2rem;
        margin: 0 .3rem 0 0
    }
}

.media-tile__likes-count {
    font-size: 1.8rem;
    color: #6c7174
}

@media(max-width: 767px) {
    .media-tile__likes-count {
        font-size:1.2rem
    }
}

.media-tile .scLooseFrameZone {
    width: 100%
}

.media-tile--card .media-tile__media--blog {
    max-width: 100%;
    height: 24rem;
    width: 100%;
    margin-bottom: 2.4rem
}

@media(max-width: 767px) {
    .media-tile--card .media-tile__media--blog {
        height:auto;
        margin-bottom: 1.4rem
    }
}

.media-tile--card .media-tile__content--blog {
    padding: 0 6rem 2.4rem 2.4rem;
    max-width: 100%
}

@media(max-width: 767px) {
    .media-tile--card .media-tile__content--blog {
        padding:0 1.4rem 3rem 1.4rem
    }
}

.media-tile--card .media-tile__title--icon {
    display: none
}

.media-tile--card .media-tile__wrapper--blog {
    min-height: 37.4rem;
    display: block;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24)
}

@media(max-width: 767px) {
    .media-tile--card .media-tile__wrapper--blog {
        min-height:30rem
    }
}

.media-tile-list {
    position: relative
}

.media-tile-list__title {
    display: none;
    font-size: 1.8rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    padding: 2rem 1.5rem
}

@media(max-width: 767px) {
    .media-tile-list__title {
        display:block
    }
}

@media(max-width: 767px) {
    .media-tile-list {
        background:rgba(237,201,198,.15);
        margin: 0 -15px
    }

    .media-tile-list .slick-dots {
        position: relative;
        bottom: 1rem
    }
}

.media-tile-list .view-all {
    padding-left: 0
}

@media(max-width: 767px) {
    .media-tile-list .view-all {
        position:absolute;
        right: 1.5rem;
        top: 2rem;
        font-size: 1.8rem
    }
}

.media-tile-list .view-all--v2 {
    position: absolute;
    right: 1rem;
    top: -5.5rem
}

@media(max-width: 767px) {
    .media-tile-list .view-all--v2 {
        right:1.5rem;
        top: 2rem
    }
}

.on-page-editor .media-tile-list .media-tile--col2>div {
    display: none
}

.on-page-editor .media-tile-list .media-tile--col2>div:nth-child(-n+4) {
    display: block
}

.on-page-editor .media-blogs .media-tile--blog>div {
    display: none
}

.on-page-editor .media-blogs .media-tile--blog>div:nth-child(-n+3) {
    display: block
}

.text-tile {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 1020px) {
    .text-tile {
        margin:0
    }
}

.text-tile__container {
    padding: 32px 24px;
    background: #fff;
    height: 280px;
    position: relative
}

.text-tile__container--hasLink:hover .text-tile__title {
    color:  #19503e
}

.text-tile__container--hasLink:hover .text-tile__title--link:after {
    color:  #19503e
}

.text-tile__container--hasLink:hover .text-tile__icon {
    color:  #19503e
}

.text-tile__container--hasLink:hover .text-tile__link-text {
    color:  #19503e
}

@media(max-width: 1020px) {
    .text-tile__container--hasLink:hover .text-tile__title {
        color:#000
    }

    .text-tile__container--hasLink:hover .text-tile__title--link:after {
        color: #000
    }

    .text-tile__container--hasLink:hover .text-tile__icon {
        color: #000
    }

    .text-tile__container--hasLink:hover .text-tile__link-text {
        color: #000
    }
}

.text-tile__item {
    position: relative;
    width: 100%;
    height: 100%
}

@media(max-width: 767px) {
    .text-tile__item {
        padding:0
    }
}

.text-tile__title {
    font-size: 3.2rem;
    line-height: 3.6rem
}

.text-tile__desc {
    color: #6c7174;
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 16px 0 30px
}

.text-tile__link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block
}

.text-tile__link:hover,.text-tile__link:active,.text-tile__link:active,.text-tile__link:focus {
    border: none
}

.text-tile__icon {
    font-size: 1.6rem;
    color: #000;
    position: absolute;
    right: 24px;
    bottom: 23px
}

.text-tile__link-text {
    position: absolute;
    bottom: 29px;
    right: 52px;
    font-size: 2.2rem;
    line-height: 2.5rem
}

.text-tile--container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
    position: relative
}

.text-tile--container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6
}

.text-tile--container--invert::before {
    background: #fff
}

.text-tile--container--invert .text-tile__container {
    background: #f1f3f6
}

.text-tile--center .owl-stage {
    margin: 0 auto
}

.text-tile .owl-dots .owl-dot span {
    background: #cdcece;
    width: 40px;
    height: 4px;
    margin: 0;
    border-radius: 0
}

.text-tile .owl-dots .owl-dot:focus {
    outline: none
}

.text-tile .owl-dots .owl-dot.active span,.text-tile .owl-dots .owl-dot:hover span {
    background:  #19503e
}

.outerpadding .text-tile:nth-child(n+1) {
    margin-bottom: 30px
}

.outerpadding .text-tile:last-child {
    margin-bottom: 0
}

.free-text {
    position: relative;
    padding: 48px 0;
    text-align: center
}

@media(max-width: 767px) {
    .free-text {
        text-align:left
    }
}

.free-text__subtext {
    margin-top: 24px
}

.free-text__subtext .icon {
    font-size: 2.2rem;
    margin-right: 6px
}

@media(max-width: 767px) {
    .free-text__subtext span:nth-last-child(1) {
        display:block;
        margin: 12px 0 8px 0
    }
}

.primary-nav {
    position: relative;
    background: #8b151b
}

.primary-nav.nps-primary-nav .col-md-12 {
    padding-left: 25px;
    padding-right: 25px;
    margin: auto;
    max-width: 1360px
}

.primary-nav.nps-primary-nav .primary-nav__title {
    padding: 0 !important;
    margin-left: 0 !important
}

.primary-nav.nps-primary-nav .primary-nav__title a {
    line-height: 150%;
    margin: 3px 0
}

.primary-nav--website {
    background: #d9908a
}

@media(max-width: 1020px) {
    .primary-nav--website .primary-nav__list {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-flex-align: center;
        align-items: center
    }
}

.primary-nav--website .primary-nav__title {
    margin-left: 30px !important;
    min-width: 240px
}

@media(max-width: 1400px) {
    .primary-nav--website .primary-nav__title {
        min-width:175px
    }
}

@media(max-width: 1200px) {
    .primary-nav--website .primary-nav__title {
        margin-left:10px !important;
        min-width: 0
    }
}

@media(max-width: 1020px) {
    .primary-nav--website .primary-nav__title {
        min-width:calc(100% - 120px);
        margin-left: 0 !important;
        padding-left: 0 !important;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

.primary-nav--website ul li.primary-nav__link--level2,.primary-nav--website ul li.primary-nav__link--level3 {
    position: static
}

.primary-nav--website ul li .icon-seach {
    font-size: 1.6rem;
    line-height: 1;
    margin: 0
}

@media(max-width: 1020px) {
    .primary-nav--website ul li.primary-nav__other-link--typ2 {
        display:none
    }
}

.primary-nav--website .abc-form--search {
    position: absolute;
    right: -.8rem;
    top: 2.7rem;
    width: 0;
    transition: width .4s ease-out;
    border-radius: 4px
}

@media(max-width: 1200px) {
    .primary-nav--website .abc-form--search {
        right:0
    }
}

.primary-nav--website .abc-form--search .form-group {
    opacity: 0
}

.primary-nav--website .abc-form--search-active {
    width: 328px;
    background: #fff
}

.primary-nav--website .abc-form--search-active .form-group {
    opacity: 1;
    transition: opacity .3s ease-out;
    transition-delay: .3s
}

.primary-nav ul {
    margin: 0;
    padding: 0
}

.primary-nav ul li {
    display: inline-table;
    position: relative
}

.primary-nav ul li::before {
    all: unset;
    content: ""
}

.primary-nav ul li.primary-nav__link--right-to-left>ul {
    left: auto;
    right: 0
}

.primary-nav__title {
    margin-left: 80px !important;
    min-width: 230px
}

@media screen and (max-width: 1020px) {
    .primary-nav__title {
        padding:4px !important
    }
}

@media(max-width: 1200px) {
    .primary-nav__title {
        margin-left:93px !important;
        min-width: 110px
    }
}

@media(max-width: 1020px) {
    .primary-nav__title {
        margin-left:0 !important
    }
}

.primary-nav__title a {
    color: #fff;
    font-size: 2rem;
    line-height: 1.6rem;
    vertical-align: text-bottom;
    text-transform: uppercase
}

.primary-nav__title a .icon {
    display: none
}

@media(max-width: 1020px) {
    .primary-nav__title a .icon {
        display:inline;
        font-size: 10px;
        padding-left: 6px;
        vertical-align: top
    }
}

@media(max-width: 1200px) {
    .primary-nav__title a {
        font-size:2rem
    }
}

@media screen and (max-width: 1020px) {
    .primary-nav__title a {
        display:block
    }
}

.primary-nav__title a:hover,.primary-nav__title a:active,.primary-nav__title a:focus {
    border: none
}

.primary-nav__other-link a {
    text-transform: capitalize;
    font-size: 1.6rem;
    margin-right: 1.5rem
}

@media(max-width: 1200px) {
    .primary-nav__other-link a {
        margin-right:1rem;
        font-size: 1.6rem
    }
}

.primary-nav__other-link--hamburger {
    display: none
}

@media(max-width: 1020px) {
    .primary-nav__other-link--hamburger a {
        margin-right:0
    }
}

.primary-nav__subtitle a {
    box-shadow: inset 0 -1px 0 0 #cdcece;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding: 1rem 0
}

@media screen and (max-width: 1020px) {
    .primary-nav__link {
        display:none !important
    }
}

.primary-nav__link--active a {
    position: relative
}

.primary-nav__link--active a:after {
    content: "";
    width: calc(100% - 32px);
    position: absolute;
    left: 16px;
    bottom: 10px;
    border-width: 0 0 1px;
    border-style: solid
}

.primary-nav__link>a:first-child {
    padding: 16px;
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media only screen and (max-width: 1137px) and (min-width:1021px) {
    .primary-nav__link>a:first-child {
        padding:16px 9px
    }
}

.primary-nav__link>a:first-child:hover,.primary-nav__link>a:first-child:active,.primary-nav__link>a:first-child:focus {
    border: none
}

.primary-nav__link--has-child {
    padding-top: 0;
    padding-bottom: 0;
    position: relative
}

.primary-nav__link--has-child a {
    font-size: 1.6rem;
    line-height: 1.6rem
}

.primary-nav__link--has-child .icon-arrow {
    position: absolute;
    font-size: 10px;
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px
}

.primary-nav__link--has-child>a:first-child {
    padding: 4px 36px 4px 16px;
    display: inline-block
}

@media only screen and (max-width: 1137px) and (min-width:1021px) {
    .primary-nav__link--has-child>a:first-child {
        padding:16px 36px 16px 9px
    }
}

.primary-nav__link--has-child:hover {
    background: #f1f3f6
}

.primary-nav__link--has-child:hover .icon-arrow {
    color: #8b151b;
    top: 0%;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.primary-nav__link--has-child:hover>a:first-child {
    color: #000
}

.primary-nav__link--has-child:hover>ul {
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    top: 100%;
    left: 0;
    min-width: 262px;
    padding-top: 0;
    padding-left: 0;
    z-index: 9099;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,.18)
}

.primary-nav__link--has-child:hover>ul li {
    display: block;
    padding: 9px 15px
}

.primary-nav__link--has-child:hover>ul li .icon-arrow {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.primary-nav__link--has-child:hover>ul li:before {
    all: unset
}

.primary-nav__link--has-child:hover>ul li:hover {
    background: #f1f3f6
}

.primary-nav__link--has-child:hover>ul li a {
    color: #000
}

.primary-nav__link--has-child:hover>ul li a:hover {
    border: none;
    padding-bottom: 0
}

.primary-nav__link--has-child ul {
    margin-left: 0;
    visibility: hidden;
    left: 0;
    opacity: 0;
    width: 100%;
    display: block;
    max-height: 0;
    height: auto;
    position: absolute
}

.primary-nav__link--has-subchild .icon-arrow {
    -ms-transform: rotate(-90deg) !important;
    transform: rotate(-90deg) !important;
    -ms-transform-origin: 50% 25% !important;
    transform-origin: 50% 25% !important
}

.primary-nav__link--has-subchild:hover .icon-arrow {
    color: #8b151b;
    -ms-transform-origin: 50% 25%;
    transform-origin: 50% 25%;
    -ms-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important
}

.primary-nav__link--has-subchild>a:first-child {
    padding: 0 4rem 0 0
}

.primary-nav__link--has-subchild ul {
    -ms-transform: translate(-100%,-34px) !important;
    transform: translate(-100%,-34px) !important
}

.primary-nav__link--level1:hover {
    background: #fff
}

@media(max-width: 1400px) {
    .primary-nav__link--level1>a:first-child {
        padding:3px 32px 3px 12px
    }
}

@media(max-width: 1200px) {
    .primary-nav__link--level1>a:first-child {
        padding:3px 28px 3px 8px
    }
}

.primary-nav__link--level1>a:first-child:hover {
    color: #694743
}

.primary-nav__link--level1>a:first-child:hover .icon-arrow {
    color: #694743
}

.primary-nav__link--level1 ul {
    min-height: 36.8rem
}

.primary-nav__link--level1 ul li:not(.primary-nav__subtitle):hover {
    background: #d9908a
}

.primary-nav__link--level1 ul li:not(.primary-nav__subtitle):hover>a {
    color: #fff
}

.primary-nav__link--level1 ul li:not(.primary-nav__subtitle):hover>a .icon-arrow {
    color: #fff
}

.primary-nav__link--level1 ul li.primary-nav__subtitle {
    padding-top: 0;
    padding-bottom: 0
}

.primary-nav__link--level1 ul li.primary-nav__subtitle:hover {
    background: transparent
}

.primary-nav__link--level1 ul li.primary-nav__subtitle a {
    cursor: default
}

.primary-nav__link--level1 ul li.primary-nav__subtitle a:hover {
    padding-bottom: 1rem
}

.primary-nav__link--level2 a:first-child,.primary-nav__link--level3 a:first-child {
    position: relative;
    display: block
}

.primary-nav__link--level2:hover .icon-arrow,.primary-nav__link--level3:hover .icon-arrow {
    -ms-transform: rotate(-90deg) !important;
    transform: rotate(-90deg) !important
}

.primary-nav__link--level2:hover ul,.primary-nav__link--level3:hover ul {
    top: 4.8rem;
    -ms-transform: translate(100%,-48px) !important;
    transform: translate(100%,-48px) !important
}

@media(max-width: 1400px) {
    .primary-nav__link--search a:first-child {
        padding-left:0
    }
}

@media(max-width: 1200px) {
    .primary-nav__link--search a:first-child {
        padding-right:0;
        padding-left: .8rem
    }
}

.primary-nav__mobile {
    background: #8b151b;
    color: #000;
    margin-bottom: 0;
    height: 100vh;
    padding-left: 0
}

.primary-nav__mobile ul {
    margin: 0;
    padding: 0
}

.primary-nav__mobile a {
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer
}

.primary-nav__mobile:first-child li {
    display: block;
    padding: 0;
    line-height: normal
}

.primary-nav__mobile:first-child li .icon-arrow {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.primary-nav__mobile:first-child li:before {
    all: unset
}

.primary-nav__mobile:first-child li a {
    display: block;
    padding: 10px 20px
}

.primary-nav__mobile:first-child li a:hover {
    background: #f1f3f6;
    color: #000
}

.primary-nav__mobile:first-child li a:hover .icon-arrow {
    color: #8b151b
}

.primary-nav__mobile:first-child li .icon-arrow {
    font-size: 10px
}

.primary-nav__mobile--headline {
    padding: 37px 20px 20px 20px !important;
    font-size: 2.7rem;
    line-height: 1;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.primary-nav__mobile--footer {
    padding: 10px 20px;
    display: block;
    height: unset
}

.primary-nav__collapse {
    padding: 0;
    margin: 0;
    background: #fff
}

.primary-nav__collapse li a {
    color: #000;
    font-size: 2rem;
    padding-left: 35px !important
}

.primary-nav .wb-hamburger {
    vertical-align: text-bottom;
    width: 18px;
    margin-right: 0;
    display: none
}

@media(max-width: 1020px) {
    .primary-nav .wb-hamburger {
        display:inline-block
    }
}

.primary-nav .wb-hamburger:hover {
    border-bottom: 0
}

.primary-nav .wb-hamburger span {
    display: inline-block;
    float: left;
    width: 4px;
    height: 4px;
    background: #fff;
    margin: 0 2px 2px 0
}

.primary-nav .wb-hamburger span:nth-last-child(-n+3) {
    margin-bottom: 0
}

@media(max-width: 1020px) {
    #mobi-navigation .primary-nav__link {
        display:block !important
    }
}

.primary-nav .scLooseFrameZone {
    display: initial;
    z-index: 999999999999999
}

body.mobile-menu-active header {
    z-index: auto
}

.on-page-editor .primary-nav__link--has-child .icon-arrow {
    right: 10px
}

.download-listing__title {
    margin-bottom: 24px
}

@media(max-width: 767px) {
    .download-listing__title {
        margin-bottom:16px
    }
}

.download-listing__list {
    padding-left: 0;
    margin-bottom: 0
}

.download-listing__link {
    padding: 24px 0 8px 0;
    margin-right: 24px;
    width: auto;
    display: inline-block;
    word-wrap: break-word;
    color: #000;
    font-size: 2.4rem;
    line-height: 2.8rem
}

@media(max-width: 767px) {
    .download-listing__link {
        padding:20px 0 8px 0;
        display: block
    }
}

@media(max-width: 767px) {
    .download-listing__link {
        font-size:2.2rem
    }
}

.download-listing__link:hover,.download-listing__link:focus,.download-listing__link:active {
    border: none
}

.download-listing__link:hover {
    color:  #19503e
}

.download-listing__link:hover .icon {
    color:  #19503e
}

.download-listing__link:active {
    color: #000
}

.download-listing__link:active .icon {
    color: #000
}

.download-listing__link:focus {
    color: #000
}

.download-listing__link:focus:hover {
    color:  #19503e
}

.download-listing__link .icon {
    color: #000;
    margin-left: 8px;
    text-transform: none;
    font-size: 1.6rem;
    display: inline-block;
    height: auto;
    line-height: normal
}

.download-listing__caption {
    color: #6c7174;
    font-size: 1.6rem;
    line-height: 2.4rem
}

@media(max-width: 767px) {
    .download-listing__caption {
        margin-left:0
    }
}

.download-listing__item {
    padding: 0 0 16px 0;
    border-bottom: 1px solid #c7c8ca
}

.download-listing__item:last-child {
    border: none
}

.download-listing__item:before {
    all: unset;
    content: ""
}

.download-listing .modal-dialog {
    width: 66.67%;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 66.67%;
    -ms-transform: translate(-50%,-50%) !important;
    transform: translate(-50%,-50%) !important
}

@media(max-width: 1020px) {
    .download-listing .modal-dialog {
        width:100%;
        max-width: 100%;
        padding-right: 0 !important
    }
}

.download-listing .modal-header {
    padding: 40px 40px 0 40px;
    color: #000
}

@media(max-width: 767px) {
    .download-listing .modal-header {
        padding:32px 32px 0 16px;
        line-height: 3.2rem
    }
}

.download-listing .modal-header .close {
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    font-size: 4.4rem !important;
    opacity: 1
}

.download-listing .modal-header .close:hover {
    color: #000;
    opacity: 1
}

.download-listing .modal-title {
    font-weight: bold;
    line-height: 3.6rem;
    margin-bottom: 8px;
    -webkit-font-smoothing: antialiased
}

@media(max-width: 767px) {
    .download-listing .modal-title {
        font-weight:normal;
        line-height: 3.2rem
    }
}

.download-listing .modal-body {
    height: 380px;
    padding: 0 0 16px 40px;
    margin-bottom: 34px;
    overflow-y: scroll
}

@media(max-width: 767px) {
    .download-listing .modal-body {
        height:264px;
        padding: 0 0 16px 16px
    }
}

.download-listing .modal-body::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #fff;
    margin: 0 0 30px 0 !important
}

.download-listing .modal-body::-webkit-scrollbar {
    width: 8px;
    background-color: #fff
}

.download-listing .modal-body::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #cdcece
}

.download-listing .modal-body .download-listing__list {
    padding-top: 0;
    margin-right: 24px
}

.download-listing .modal-body .download-listing__item {
    padding: 0 0 12px 0
}

.download-listing .modal-content {
    height: 500px
}

@media(max-width: 767px) {
    .download-listing .modal-content {
        height:400px
    }
}

.download-listing .modal-dialog,.download-listing .modal-content {
    border: none;
    border-radius: 0;
    float: left;
    width: 100%;
    padding-bottom: 0;
    padding-right: 8px
}

.download-listing .page-title {
    padding: 0 0 48px 0
}

@media(max-width: 767px) {
    .download-listing .page-title {
        padding:0 0 32px 0
    }
}

.download-listing .scLooseFrameZone {
    width: 100%
}

.page-title p {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #6c7174;
    text-align: center;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .page-title p {
        text-align:left
    }
}

.page-title-wrapper {
    margin: 20px
}

.page-title-wrapper .page-ts-title {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 3.2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    line-height: 1.2;
    color: #695934
}

@media screen and (max-width: 767px) {
    .page-title-wrapper .page-ts-title {
        font-size:2.2rem
    }
}

.page-title-wrapper .page-ts-subtitle {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.8rem;
    line-height: 33px;
    color: #6c7174
}

@media screen and (max-width: 767px) {
    .page-title-wrapper .page-ts-subtitle {
        font-size:1.3rem
    }
}

.page-title-wrapper .success-head {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 3.2rem;
    letter-spacing: 0;
    color: #1f874c;
    text-align: center;
    font-weight: normal;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal
}

.page-title-wrapper .black {
    color: #000
}

.abc-form {
    width: 100%
}

.abc-form.form-center {
    margin: 0 auto;
    width: 50%
}

@media(max-width: 767px) {
    .abc-form.form-center {
        width:90%
    }
}

.abc-form .form-group.inline-radio,.abc-form .input-group.inline-radio {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.abc-form .form-group.inline-radio .form-check,.abc-form .input-group.inline-radio .form-check {
    margin-right: 24px;
    font-size: 1.8rem;
    color: #6c7174
}

.abc-form .form-group .custom-file-label,.abc-form .input-group .custom-file-label {
    cursor: pointer
}

.abc-form .form-group .custom-file-label::after,.abc-form .input-group .custom-file-label::after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    background-color: #695934;
    color: #fff
}

.abc-form .form-group .info-text,.abc-form .input-group .info-text {
    padding: 2px 0;
    opacity: .6
}

.abc-form .form-group__label,.abc-form .input-group__label {
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    padding-bottom: 8px
}

.abc-form .form-group__label--buy-plan,.abc-form .input-group__label--buy-plan {
    font-size: 3.2rem;
    color: #b37671;
    opacity: 1
}

@media(max-width: 767px) {
    .abc-form .form-group__label--buy-plan,.abc-form .input-group__label--buy-plan {
        font-size:2.2rem
    }
}

.abc-form .form-group__placeholder,.abc-form .input-group__placeholder {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    height: 44px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #cdcece;
    color: #000;
    box-shadow: none
}

.abc-form .form-group__placeholder:focus,.abc-form .input-group__placeholder:focus {
    box-shadow: 0 0 6px 0 #cdcece;
    border: 1px solid #6c7174
}

.abc-form .form-group__placeholder.datepicker,.abc-form .input-group__placeholder.datepicker {
    width: 100%
}

.abc-form .form-group__placeholder:-ms-input-placeholder,.abc-form .input-group__placeholder:-ms-input-placeholder {
    opacity: .25;
    color: #000
}

.abc-form .form-group__placeholder::placeholder,.abc-form .input-group__placeholder::placeholder {
    opacity: .25;
    color: #000
}

.abc-form .form-group__placeholder.error:-ms-input-placeholder,.abc-form .input-group__placeholder.error:-ms-input-placeholder {
    opacity: 1;
    color: #bd2b2b
}

.abc-form .form-group__placeholder.error::placeholder,.abc-form .input-group__placeholder.error::placeholder {
    opacity: 1;
    color: #bd2b2b
}

.abc-form .form-group__datepicker-container,.abc-form .input-group__datepicker-container {
    position: relative;
    display: block;
    width: 100%
}

.abc-form .form-group__datepicker-container img,.abc-form .input-group__datepicker-container img {
    position: absolute;
    top: 6px;
    right: 7px;
    margin-bottom: 0
}

.abc-form .form-group__disabled,.abc-form .input-group__disabled {
    cursor: not-allowed;
    background-color: rgba(236,236,236,.58) !important;
    border: solid 1px #f4f4f4 !important;
    box-shadow: none;
    color: #000 !important
}

.abc-form .form-group__xs,.abc-form .input-group__xs {
    height: 25px;
    font-size: 10px
}

.abc-form .form-group--inc-dec,.abc-form .input-group--inc-dec {
    border-bottom: 1px solid #f1f3f6;
    padding: 0
}

.abc-form .form-group--inc-dec.focused,.abc-form .input-group--inc-dec.focused {
    border: 1px solid #f1f3f6
}

.abc-form .form-group #captchaDivAccStmt #SampleCaptcha_CaptchaDiv,.abc-form .input-group #captchaDivAccStmt #SampleCaptcha_CaptchaDiv {
    display: -ms-flexbox;
    display: flex
}

.abc-form .form-group .BDC_CaptchaDiv,.abc-form .input-group .BDC_CaptchaDiv {
    display: -ms-flexbox;
    display: flex
}

.abc-form .form-group .error+.selectize-control .selectize-input input:-ms-input-placeholder,.abc-form .input-group .error+.selectize-control .selectize-input input:-ms-input-placeholder {
    opacity: 1;
    color: #bd2b2b
}

.abc-form .form-group .error+.selectize-control .selectize-input input::placeholder,.abc-form .input-group .error+.selectize-control .selectize-input input::placeholder {
    opacity: 1;
    color: #bd2b2b
}

.abc-form .form-group .error+.selectize-control .selectize-input:after,.abc-form .input-group .error+.selectize-control .selectize-input:after {
    color: #bd2b2b
}

.abc-form .form-group .form-check,.abc-form .input-group .form-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    padding-top: 3px;
    cursor: pointer;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.abc-form .form-group .form-check input,.abc-form .input-group .form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1
}

.abc-form .form-group .form-check input:checked~.checkmark,.abc-form .input-group .form-check input:checked~.checkmark {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: 2px solid #cdcece;
    outline: none
}

.abc-form .form-group .form-check input:checked~.checkmark:after,.abc-form .input-group .form-check input:checked~.checkmark:after {
    display: block
}

.abc-form .form-group .form-check input:checked~.radio,.abc-form .input-group .form-check input:checked~.radio {
    background-color: #fff;
    border: 2px solid #cdcece;
    box-shadow: 0 0 6px 0 #cdcece
}

.abc-form .form-group .form-check input:checked~.radio:after,.abc-form .input-group .form-check input:checked~.radio:after {
    display: block
}

.abc-form .form-group .form-check .checkmark,.abc-form .input-group .form-check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: #fff;
    border: 2px solid #cdcece
}

.abc-form .form-group .form-check .checkmark:focus,.abc-form .input-group .form-check .checkmark:focus {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: 2px solid #cdcece;
    outline: none
}

.abc-form .form-group .form-check .checkmark:after,.abc-form .input-group .form-check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.abc-form .form-group .form-check .radio,.abc-form .input-group .form-check .radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #cdcece
}

.abc-form .form-group .form-check .radio:after,.abc-form .input-group .form-check .radio:after {
    content: "";
    position: absolute;
    display: none;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.abc-form .form-group .form-check.typ2,.abc-form .input-group .form-check.typ2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #fff;
    width: 100%;
    position: relative;
    padding-top: 0
}

.abc-form .form-group .form-check.typ2 .checkmark,.abc-form .input-group .form-check.typ2 .checkmark {
    background: transparent;
    border-color: #fff
}

.abc-form .form-group .form-check.typ2 .checkmark:after,.abc-form .input-group .form-check.typ2 .checkmark:after {
    border-color: #da9089
}

.abc-form .form-group .form-check.typ2 input:checked~.checkmark,.abc-form .input-group .form-check.typ2 input:checked~.checkmark {
    background: #fff;
    border-color: #fff
}

.abc-form .form-group .form-check.typ2 .terms-content,.abc-form .input-group .form-check.typ2 .terms-content {
    display: block
}

@media(max-width: 767px) {
    .abc-form .form-group .form-check.typ2 .terms-content,.abc-form .input-group .form-check.typ2 .terms-content {
        width:100%
    }
}

.abc-form .form-group .form-check.typ2 .button-brown,.abc-form .input-group .form-check.typ2 .button-brown {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    min-width: auto;
    padding: 9px 15px;
    z-index: 1;
    max-width: calc(35% - 20px);
    margin-left: 20px;
    height: auto
}

@media(max-width: 767px) {
    .abc-form .form-group .form-check.typ2 .button-brown,.abc-form .input-group .form-check.typ2 .button-brown {
        position:relative;
        top: 0%;
        -ms-transform: translateY(0%);
        transform: translateY(0%);
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px
    }
}

.abc-form .form-group .form-check.typ2 .button-brown.disabled,.abc-form .input-group .form-check.typ2 .button-brown.disabled {
    cursor: no-drop;
    background: #cdcece
}

.abc-form .form-group span.error,.abc-form .form-group.globalError,.abc-form .input-group span.error,.abc-form .input-group.globalError {
    background: transparent !important;
    border: none !important;
    font-size: 1.5rem;
    font-family: "pfencoresanspro-book",sans-serif;
    color:  #19503e;
    margin-bottom: 0
}

.abc-form .form-group .icon-btn,.abc-form .input-group .icon-btn {
    height: 44px;
    border-radius: 4px
}

.abc-form .form-group .icon-btn .icon,.abc-form .input-group .icon-btn .icon {
    color: #fff;
    font-size: 1.6rem;
    vertical-align: bottom
}

.abc-form .form-group .icon-btn--inc-dec,.abc-form .input-group .icon-btn--inc-dec {
    padding: 0
}

.abc-form .form-group .icon-btn--inc-dec .icon,.abc-form .input-group .icon-btn--inc-dec .icon {
    color: #6a4742
}

.abc-form .form-group .icon-btn__no-br-right,.abc-form .input-group .icon-btn__no-br-right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.abc-form .form-group .hfl-icon-btn,.abc-form .input-group .hfl-icon-btn {
    background: #cdcece
}

.abc-form .form-group .hfl-btn,.abc-form .input-group .hfl-btn {
    background: #695934
}

.abc-form .form-group .act-btn,.abc-form .input-group .act-btn {
    height: 44px;
    border-radius: 4px;
    padding: 9px 30px;
    font-size: 1.6rem;
    color: #fff
}

@media screen and (min-width: 1200px) {
    .abc-form .form-group .act-btn,.abc-form .input-group .act-btn {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form .form-group .act-btn,.abc-form .input-group .act-btn {
        font-size:2.7rem
    }
}

.abc-form .form-group .act-btn.disabled,.abc-form .input-group .act-btn.disabled {
    background: #cdcece;
    color: #6c7174
}

@media screen and (min-width: 1200px) {
    .abc-form .form-group .act-btn,.abc-form .input-group .act-btn {
        height:55px;
        font-size: 1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form .form-group .act-btn,.abc-form .input-group .act-btn {
        height:78px;
        font-size: 2.7rem
    }
}

.abc-form--card {
    border: 1px solid #000;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
    border-radius: 5px
}

.abc-form--card__header {
    padding: 8px 16px
}

.abc-form--card__header.header-with-bg {
    background: #cdcece
}

.abc-form--card__body {
    padding: 16px 24px
}

.abc-form--card__body .btn-and-note-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.abc-form--card__body .btn-and-note-wrapper .note-text {
    font-size: 1.4rem;
    color: #6c7174
}

.abc-form--card__body .btn-and-note-wrapper .note-text__head {
    color: #000
}

.abc-form .amt-text {
    color: #6c7174;
    font-size: 1.8rem
}

.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.abc-form .input-group--v2 {
    background: #fff;
    border-radius: 4px
}

.abc-form .input-group--v2 .input-group-addon {
    padding: 1rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    position: relative
}

.abc-form .input-group--v2 .input-group-addon:after {
    content: "";
    width: .1rem;
    top: 1rem;
    bottom: 1rem;
    right: 0;
    position: absolute;
    background: #cdcece
}

.abc-form .input-group--v2 .input-group-addon--file {
    padding: 1rem 1.6rem
}

.abc-form .input-group--v2 .input-group-addon--file .icon {
    font-size: 1.4rem;
    color: #6a4742;
    margin: 0
}

.abc-form .input-group--v2 .input-group-addon--file:after {
    display: none
}

.abc-form .input-group--v2 .form-control {
    box-shadow: none;
    border: none;
    padding: 1rem;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.abc-form .input-group--v2 .form-control:-ms-input-placeholder {
    color: #cdcece;
    font-size: 1.8rem;
    line-height: 1;
    font-family: "pfhandbookpro-regular",sans-serif
}

.abc-form .input-group--v2 .form-control::placeholder {
    color: #cdcece;
    font-size: 1.8rem;
    line-height: 1;
    font-family: "pfhandbookpro-regular",sans-serif
}

.abc-form .input-group--v2 .form-control.select {
    padding: 0
}

.abc-form .input-group--v2 .selectize-control.single .selectize-input,.abc-form .input-group--v2 .selectize-dropdown.single {
    border: none
}

.abc-form .input-group--v2 .selectize-dropdown-content {
    background: #fff;
    border-radius: 4px
}

.abc-form .input-group--v2 .input-group-btn {
    background: #6a4742;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.abc-form .input-group--v2 .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif
}

.abc-form .input-group--v2 .input-group-btn--white {
    background: #fff;
    border-color: transparent
}

.abc-form .input-group--border {
    border: 1px solid #cdcece
}

.abc-form .input-group--border .input-group-btn {
    padding: .5rem 1rem
}

.abc-form .input-group.disabled .input-group-btn {
    background: #cdcece
}

.abc-form .input-group.disabled .input-group-btn .btn {
    pointer-events: none;
    cursor: no-drop
}

.abc-form .input-group .input-group-btn__icon {
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    border: 2px solid #6a4742;
    border-radius: 50%;
    color: #6a4742;
    font-size: 1.8rem;
    line-height: 1rem;
    text-align: center;
    font-weight: 600
}

.abc-form .input-group .input-group-btn .btn:hover .input-group-btn__icon,.abc-form .input-group .input-group-btn .btn:active .input-group-btn__icon,.abc-form .input-group .input-group-btn .btn:focus .input-group-btn__icon {
    background: #6a4742;
    color: #fff
}

.abc-form__title {
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 2rem
}

.abc-form .form-control.input-small {
    font-size: 1.6rem
}

.abc-form .form-control--increment {
    border-radius: 0;
    border: 0;
    font-size: 3.2rem;
    height: 4.4rem;
    text-align: center;
    opacity: 1;
    color: #000
}

.abc-form .form-control--increment:focus {
    box-shadow: none;
    border: 0
}

.abc-form .form-control--textarea {
    height: 18.6rem
}

@media(max-width: 767px) {
    .abc-form .form-control--textarea {
        height:8.8rem
    }
}

.abc-form .form-control--file {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%
}

.abc-form--feedback .form-group {
    margin-bottom: 2rem;
    margin-right: 2rem
}

@media(max-width: 767px) {
    .abc-form--feedback .form-group {
        margin-right:0
    }
}

.abc-form--feedback .btn-wrap {
    text-align: right;
    padding-right: 2rem
}

@media(max-width: 767px) {
    .abc-form--feedback .btn-wrap {
        padding-right:.5rem
    }
}

.abc-form .form-group__note {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #6c7174;
    display: block;
    padding-top: 1rem
}

.abc-form .form-group--download {
    width: 80%;
    max-width: 544px
}

.abc-form .form-row--download {
    -ms-flex-align: end;
    align-items: flex-end
}

.abc-form--download-filter .form-group--download {
    width: auto;
    max-width: initial
}

.abc-form--download-filter .row {
    width: 100%
}

.abc-form--download .btn-wrap {
    display: inline-block;
    width: auto
}

.form-sort input[type="checkbox"]:not(old) {
    width: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    display: none
}

.form-sort input[type="checkbox"]:not(old)+label {
    border: 1px solid #cdcece;
    padding: 1.1rem 3rem 1.1rem 1rem;
    border-radius: 4px;
    position: relative;
    min-width: 10rem;
    width: 100%;
    cursor: pointer
}

.form-sort input[type="checkbox"]:not(old)+label .form-sort__text {
    font-size: 1.8rem;
    line-height: 2rem;
    text-transform: uppercase;
    color: #6c7174
}

.form-sort input[type="checkbox"]:not(old)+label .form-sort__text--unchecked {
    display: block
}

.form-sort input[type="checkbox"]:not(old)+label .form-sort__text--checked {
    display: none
}

.form-sort input[type="checkbox"]:not(old)+label .form-sort__icon {
    font-size: 1.6rem;
    color: #6a4742;
    position: absolute;
    top: 46%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1rem
}

.form-sort input[type="checkbox"]:not(old):checked+label .form-sort__text--unchecked {
    display: none
}

.form-sort input[type="checkbox"]:not(old):checked+label .form-sort__text--checked {
    display: block
}

.btn-right-align {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.photo-card-wrapper {
    padding: 0 12px
}

.photo-card-wrapper .photo-card {
    width: 100%;
    display: block;
    border: 1px solid #cdcece;
    box-shadow: 0 3px 6px rgba(0,0,0,.3);
    border-radius: 5px;
    margin-bottom: 8px
}

.inline-radio-with-bg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 8px 16px;
    background: #f1f3f6
}

.inline-radio-with-bg .inline-radio__label {
    padding: 0 16px;
    margin: 0
}

.inline-radio-with-bg .inline-radio {
    margin: 0
}

.input-group .input-group-prepend .input-group-text--icon {
    margin: 0;
    font-size: 1.6rem
}

.input-group .form-control.input-small {
    font-size: 1.6rem
}

.otpmodal .otp-modal-content {
    padding: 50px;
    margin: 0
}

.otpmodal .otp-modal-content .otp-modal-header {
    padding: 0;
    margin: 0;
    text-align: center;
    line-height: 1.2
}

.otpmodal .otp-modal-content .otp-modal-header .otp-modal-title {
    padding: 8px 16px;
    margin: 0;
    text-align: center;
    display: block;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2.2rem;
    color: #695934
}

.otpmodal .otp-modal-content .otp-modal-header .otp-modal-subtitle {
    padding: 8px 16px;
    margin: 0;
    display: block;
    font-size: 1.8rem;
    position: relative;
    top: -15px
}

.otpmodal .otp-modal-content .modal-body {
    padding: 0;
    margin: 0;
    text-align: center
}

.otpmodal .otp-modal-content .modal-body .digit-group label {
    display: block;
    text-align: center;
    padding: 20px 0 5px 10px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #000
}

.otpmodal .otp-modal-content .modal-body .digit-group input {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 2.4rem;
    margin: 0 2px;
    border: 1px solid #cdcece;
    box-shadow: 0 3px 6px rgba(88,87,87,.3);
    border-radius: 3px
}

.otpmodal .otp-modal-content .modal-body--subtext {
    margin: 0 auto;
    text-align: center;
    background: #f1f3f6;
    padding: 4px 8px;
    font-size: 1.6rem
}

.otpmodal .otp-modal-content .modal-body--subtext__link {
    color: #695934;
    font-size: 1.6rem
}

.image {
    position: relative
}

.image img {
    margin-bottom: 0
}

.image__title {
    position: absolute;
    top: 16px;
    left: 16px;
    float: left;
    opacity: .9;
    width: 65%;
    color: #fff;
    padding: 8px;
    font-size: 3.2rem;
    line-height: 3.2rem
}

@media(max-width: 1020px) {
    .image__title {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

.image__title--link {
    padding: 0
}

.image__title--link span {
    display: block
}

.image__title--link .brand-name {
    margin: 8px
}

@media(max-width: 1020px) {
    .image__title--link .brand-name {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

@media(max-width: 767px) {
    .image__title--link .brand-name {
        margin:16px;
        font-size: 2.8rem;
        line-height: 3.2rem
    }
}

.image__title--link .click {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 16px 16px 8px 8px;
    position: relative;
    text-transform: uppercase
}

@media(max-width: 767px) {
    .image__title--link .click {
        font-size:2rem;
        line-height: 2.4rem;
        margin: 24px 16px 16px 16px
    }
}

.image__title--link .click::after {
    content: "";
    font-family: "font-icons";
    color: #fff;
    font-style: normal;
    line-height: 1;
    font-size: 1.2rem;
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.image__link-container a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.image__link-container a:hover {
    border: none;
    text-decoration: none
}

.image a:hover {
    border: none;
    text-decoration: none !important
}

.image .blgimg {
    width: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    border-radius: 4px;
    margin-bottom: 2%
}

@media(max-width: 1020px) {
    .image .blgimg {
        margin:auto;
        width: 90%
    }
}

@media(max-width: 767px) {
    .image .blgimg {
        margin:auto;
        width: 330px
    }
}

@media only screen and (max-width: 360px) {
    .image .blgimg {
        margin:auto;
        width: 90%
    }
}

.qsform {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.qsform__container {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.qsform__buttongroup {
    margin: 19px 0 0 0;
    text-align: center;
    width: 100%
}

@media(max-width: 767px) {
    .qsform__buttongroup {
        text-align:left
    }
}

.qsform__buttongroup button {
    margin-right: 20px
}

.qsform__buttongroup--left {
    text-align: left
}

.qsform__content {
    margin-top: 60px;
    width: 100%
}

.qsform__content .table thead td {
    padding: 16px 0
}

.qsform__content .table tr {
    height: 60px
}

.qsform__content .table td {
    padding: 30px 0;
    height: auto !important;
    vertical-align: middle !important
}

.qsform__table {
    max-width: 100% !important;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border: 1px solid #cdcece
}

@media(max-width: 767px) {
    .qsform__table {
        width:200%
    }
}

.qsform__table thead th {
    background: #979797;
    font-size: 1.3rem;
    line-height: normal;
    padding: 16px 0;
    text-align: center;
    color: #fff !important;
    font-weight: normal;
    border-bottom: 0;
    vertical-align: inherit;
    font-family: "pfhandbookpro-bold",sans-serif
}

.qsform__table tbody td {
    text-align: center;
    font-size: 1.3rem;
    vertical-align: inherit;
    padding: 25px 0
}

.qsform__table--bordernone.table tr {
    height: 40px
}

.qsform__table--bordernone.table tr td {
    border: none;
    padding-top: 0;
    padding-bottom: 20px
}

.qsform__table--bordernone.table tr:first-child td {
    padding-top: 15px
}

.qsform__table--bordernone.table tr:first-child:last-child td {
    padding-bottom: 12px
}

.qsform__subcontent {
    margin-top: 30px
}

.qsform__buttonandtext {
    text-align: center;
    display: block
}

.qsform__buttonandtext a {
    display: inline-block
}

.qsform__buttonandtext span {
    margin-top: 18px;
    font-size: 1.6rem;
    color: #6c7174;
    display: block
}

.qsform__details {
    margin-top: 40px
}

.qsform__details--title {
    color: #6c7174
}

.qsform__details--content {
    color: #6c7174
}

.qsform__details--content ul li {
    font-family: "pfhandbookpro-regular",sans-serif
}

.qsform__details--content ul li:before {
    color: #6c7174
}

.qsform__note {
    font-size: 1.6rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #6c7174;
    margin-top: 20px;
    display: block;
    width: 100%
}

.qsform .form-group {
    margin-bottom: 35px
}

.qsform__navdividend--select .selectize-input .item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.qsmodal {
    z-index: 10000
}

.qsmodal_dialog {
    max-width: 632px
}

.qsmodal__header {
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 12px 25px 32px 25px
}

.qsmodal__header .close-btn:hover {
    cursor: pointer;
    border: none
}

.qsmodal__header .close-btn:active {
    cursor: pointer;
    border: none
}

.qsmodal__header .popup-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #5a5a5a
}

.qsmodal__header .popup-close:before,.qsmodal__header .popup-close:after {
    position: absolute;
    left: 50%;
    content: " ";
    height: 22px;
    width: 2px;
    background-color: #fff;
    top: 10px
}

.qsmodal__header .popup-close:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.qsmodal__header .popup-close:after {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.qsmodal__subtitle {
    font-size: 1.6rem;
    color: #6c7174;
    width: 90%
}

.qsmodal .modal-body {
    padding-bottom: 30px
}

.qsform__tlSuccess {
    margin-top: 0
}

.qsform__lsDetailsContainer {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 20px
}

.qsform__lsLabel {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-bold",sans-serif
}

.qsform__lsDownload {
    font-size: 1.4rem;
    line-height: 2rem
}

.qsform__lsDownload:hover,.qsform__lsDownload:focus,.qsform__lsDownload:active {
    border: none;
    text-decoration: none
}

@media(max-width: 767px) {
    .qsform__lsDownload {
        font-size:2rem
    }
}

.qsmodal__lsHeader {
    margin-bottom: 0;
    padding-bottom: 10px
}

.qsmodal .qsform__fvModalody {
    padding-bottom: 20px
}

.paypremium {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.paypremium__steps ul {
    padding-left: 10%
}

.paypremium__steps ul li h4 {
    font-family: "roboto-medium" !important;
    font-size: 10px;
    line-height: normal;
    word-break: break-word
}

.paypremium__steps ul li::before {
    all: unset;
    content: ""
}

.paypremium__steps ul li a:hover,.paypremium__steps ul li a:active,.paypremium__steps ul li a:focus {
    border: none
}

.paypremium__step-content.active {
    display: block
}

.paypremium__details {
    font-size: 1.6rem;
    line-height: 2rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 0 15px;
    margin: 60px 0 25px 0
}

.paypremium__step2-modal {
    max-width: 649px
}

.paypremium__step-2-form {
    margin-top: 25px
}

.paypremium__step-2-info {
    margin-top: 40px;
    padding-left: 10px
}

.paypremium__step-2-info .form-group .form-check {
    font-size: 1.4rem;
    color: #000;
    padding-top: 0
}

.paypremium__step-2-info .form-group .form-check .checkmark {
    width: 16px;
    height: 16px;
    border-width: 1px;
    border-radius: 0
}

.paypremium__step-2-info .form-group .form-check .checkmark:after {
    left: 4px;
    top: 2px;
    width: 6px;
    height: 8px
}

.paypremium__step-2-info .form-group .form-check input:checked~.checkmark {
    border-radius: 0;
    box-shadow: 0;
    border-width: 1px
}

.paypremium__step-2-info .qsform__buttongroup button {
    padding: 12px 0;
    margin-right: 0
}

.paypremium__step-2-details {
    padding-left: 35px;
    margin-bottom: 48px
}

.paypremium__step-2-details p {
    font-size: 1.4rem;
    color: #000
}

.paypremium .form-group__label {
    font-size: 1.4rem
}

.paypremium .form-group__placeholder {
    font-size: 1.4rem;
    padding-left: 12px;
    height: 35px
}

.paypremium .form-group__datepicker-container img {
    top: 2px
}

.paypremium .qsform__table {
    table-layout: fixed
}

.paypremium .qsform__table th {
    font-size: 1.1rem
}

.paypremium .qsform__table td {
    font-size: 1.1rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 11px 0
}

.paypremium .qsform__pp-table-total {
    margin-top: 20px;
    background: #979797;
    height: 19px
}

.paypremium .qsform__pp-table-total td {
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #fff;
    text-align: right;
    padding: 0
}

.paypremium .qsform__pp-table-total td:last-child {
    text-align: center
}

.progress-tracker {
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none
}

.progress-tracker:hover,.progress-tracker:focus {
    color: transparent !important
}

.progress-step {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    min-width: 28px
}

.progress-step:hover,.progress-step:focus {
    color: transparent !important
}

.progress-step:last-child {
    -ms-flex-positive: 0;
    flex-grow: 0
}

.progress-step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -10;
    top: 10px;
    bottom: 10px;
    right: -14px;
    width: 100%;
    height: 4px;
    transition: background-color .3s
}

.progress-step.is-active .progress-title {
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #da9089
}

.progress-step.is-complete .progress-title {
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #da9089
}

.progress-step>a {
    display: block;
    height: 30px
}

.progress-step>a:hover {
    color: transparent
}

.progress-marker {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 20;
    width: 14px;
    height: 14px;
    padding-bottom: 2px;
    color: #fff;
    font-weight: 400;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: background-color,border-color;
    transition-duration: .3s;
    top: 6px
}

.progress-text {
    display: block;
    padding: 8px 9.3333333333px 20px 0;
    overflow: hidden;
    text-overflow: ellipsis
}

.progress-title {
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #353535;
    margin-top: 0;
    margin-bottom: 10px
}

.progress-step .progress-marker {
    color: #fff;
    background-color: #a5a5a5
}

.progress-step::after {
    background-color: #b6b6b6
}

.progress-step .progress-text,.progress-step .progress-step>a .progress-text {
    color: #333
}

.progress-step.is-active .progress-marker {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border: 2px solid #da9089;
    top: 0
}

.progress-step.is-active .progress-marker::after {
    width: 11px;
    height: 11px;
    border-radius: 15px;
    top: 1px;
    left: 0;
    position: relative;
    background-color: #da9089;
    content: "";
    display: inline-block;
    visibility: visible
}

.progress-step.is-complete .progress-marker {
    background-color: transparent;
    width: 24px;
    height: 24px;
    top: 0
}

.progress-step.is-complete .progress-marker::after {
    width: 11px;
    height: 11px;
    border-radius: 15px;
    top: 1px;
    left: 0;
    position: relative;
    background-color: #da9089;
    content: "";
    display: inline-block;
    visibility: visible
}

.progress-step.is-complete::after {
    background-color: #868686
}

.progress-tracker--center .progress-step {
    text-align: center
}

.progress-tracker--center .progress-step:last-child {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.progress-tracker--center .progress-step::after {
    right: -50%
}

.progress-tracker--center .progress-marker {
    margin-left: auto;
    margin-right: auto
}

.progress-tracker--right .progress-step {
    text-align: right
}

.progress-tracker--right .progress-step:last-child {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.progress-tracker--right .progress-step::after {
    right: calc(-100% + 14px)
}

.progress-tracker--right .progress-marker {
    margin-left: auto
}

.progress-tracker--border {
    padding: 5px;
    border: 2px solid #868686;
    border-radius: 38px
}

.progress-tracker--spaced .progress-step::after {
    width: calc(100% - 48px);
    margin-right: 24px
}

.progress-tracker--word {
    padding-right: 38.6666666667px;
    overflow: hidden
}

.progress-tracker--word .progress-text {
    display: inline-block;
    white-space: nowrap
}

.progress-tracker--word .progress-title {
    margin: 0
}

.progress-tracker--word-center .progress-text {
    padding-right: 0;
    padding-left: 0;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 14px
}

.progress-tracker--word-right {
    padding-right: 0;
    padding-left: 38.6666666667px
}

.progress-tracker--word-right .progress-text {
    padding-left: 0;
    -ms-transform: translateX(calc(-100% + 28px));
    transform: translateX(calc(-100% + 28px))
}

.progress-tracker--text .progress-step:last-child {
    -ms-flex-positive: 1;
    flex-grow: 1
}

.progress-tracker--text-top .progress-step::after {
    top: auto
}

.progress-tracker--text-top .progress-text {
    height: 100%
}

.progress-tracker--text-top .progress-marker {
    bottom: 28px
}

.progress-tracker--text-inline .progress-step {
    display: -ms-flexbox;
    display: flex
}

.progress-tracker--text-inline .progress-text {
    position: relative;
    z-index: 30;
    max-width: 70%;
    white-space: nowrap;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fff
}

.progress-tracker--text-inline .progress-title {
    margin: 0
}

.progress-tracker--square .progress-step {
    padding-top: 0
}

.progress-tracker--square .progress-marker {
    -ms-transform: scaleX(.33) translateY(-12px);
    transform: scaleX(.33) translateY(-12px);
    border-radius: 0
}

@media(max-width: 399px) {
    .progress-tracker-mobile {
        overflow-x:auto
    }

    .progress-tracker-mobile .progress-tracker {
        min-width: 200%
    }
}

.progress-tracker--vertical {
    -ms-flex-direction: column;
    flex-direction: column
}

.progress-tracker--vertical .progress-step {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.progress-tracker--vertical .progress-step::after {
    right: auto;
    top: 14px;
    left: 12px;
    width: 4px;
    height: 100%
}

.progress-tracker--vertical .progress-marker {
    position: absolute;
    left: 0
}

.progress-tracker--vertical .progress-text {
    padding-top: 7px;
    padding-left: 42px
}

.progress-tracker--vertical .progress-step:not(:last-child) .progress-text {
    padding-bottom: 42px
}

.anim-ripple .progress-marker::before,.anim-ripple-large .progress-marker::before,.anim-ripple-splash .progress-marker::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    background: rgba(0,0,0,.3);
    border-radius: 50%;
    -ms-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    visibility: hidden
}

.anim-ripple :not(:active) .progress-marker::before,.anim-ripple-large :not(:active) .progress-marker::before,.anim-ripple-splash :not(:active) .progress-marker::before {
    animation: scale-up .3s ease-out
}

.anim-ripple :focus .progress-marker::before,.anim-ripple-large :focus .progress-marker::before,.anim-ripple-splash :focus .progress-marker::before {
    visibility: visible
}

.anim-ripple-large .progress-marker::before {
    width: 200%;
    height: 200%
}

.anim-ripple-splash .progress-marker::before {
    width: 200%;
    height: 200%;
    box-shadow: 0 0 6px 6px rgba(0,0,0,.35)
}

.anim-ripple-double .progress-marker::before,.anim-ripple-double .progress-marker::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    background: rgba(0,0,0,.3);
    border-radius: 50%;
    -ms-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%,-50%) scale(0);
    visibility: hidden;
    background: none;
    border: 3px solid rgba(0,0,0,.3)
}

.anim-ripple-double :not(:active) .progress-marker::before,.anim-ripple-double :not(:active) .progress-marker::after {
    animation: scale-up .3s ease-out 0s
}

.anim-ripple-double :not(:active) .progress-marker::after {
    animation-delay: .15s
}

.anim-ripple-double :focus .progress-marker::before,.anim-ripple-double :focus .progress-marker::after {
    visibility: visible
}

.anim-path .progress-step::after {
    background-image: linear-gradient(to right,#b6b6b6 50%,#da9089 50%);
    background-size: 200% 100%;
    background-position: 0% 100%;
    transition: background-position .3s ease-out;
    z-index: 1
}

.anim-path .progress-step.is-complete::after {
    background-position: -100% 100%
}

.qsmodal .qsform__policyActStat {
    padding-bottom: 20px
}

.content-block.revamp-content-block {
    max-width: 1039px;
    margin: auto
}

.content-block.revamp-content-block div,.content-block.revamp-content-block p {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: 200;
    font-size: 24px;
    line-height: 120%;
    color: rgba(0,0,0,.74)
}

@media(max-width: 767px) {
    .content-block.revamp-content-block div,.content-block.revamp-content-block p {
        font-size:20px
    }
}

.content-block--center {
    width: auto;
    margin: 0 auto
}

@media(max-width: 1020px) {
    .content-block--center {
        width:100%
    }
}

.content-block * {
    font-family: "pfhandbookpro-regular",sans-serif
}

.content-block--snippet * {
    font-size: 1.8rem;
    line-height: 2.4rem
}

.content-block--snippet ol,.content-block--snippet ul,.content-block--snippet li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0
}

.content-block--snippet ul {
    list-style: none;
    margin-bottom: 28px;
    padding-left: 0
}

.content-block--snippet ul li:before {
    content: "";
    display: none;
    color: #000 !important
}

.content-block--snippet * {
    color: #000 !important
}

.content-block--snippet * a {
    all: unset;
    color:  #19503e !important
}

.content-block--snippet * a * {
    all: unset
}

.content-block--snippet * a:hover {
    text-decoration: underline;
    cursor: pointer
}

.content-block--snippet p {
    margin-bottom: 16px
}

.content-block--left-img {
    float: left;
    margin: 0 10px 0 0
}

@media(max-width: 767px) {
    .content-block--left-img {
        float:none;
        margin: 0 0 10px 0
    }
}

.content-block--right-img {
    float: right;
    margin: 0 0 10px 0
}

@media(max-width: 767px) {
    .content-block--right-img {
        float:none;
        margin: 0 0 10px 0
    }
}

.ticklistitem {
    padding-left: 0
}

.ticklistitem li {
    position: relative;
    padding-left: 40px;
    margin: 8px 0;
    padding-top: 0;
    padding-bottom: 0
}

.ticklistitem li:before {
    content: "";
    border: solid  #19503e;
    border-width: 0 2px 2px 0;
    display: block !important;
    position: absolute;
    left: 22px;
    top: 1px;
    margin-top: 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 10px;
    height: 17px
}

.pillarcolumn__heading {
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin: 3px 0;
    margin-bottom: 3px
}

.pillarcolumn__heading h1 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: normal
}

@media screen and (max-width: 1200px) and (min-width:799px) {
    .pillarcolumn__heading h1 {
        margin:20px 0 28px 0
    }
}

@media screen and (max-width: 800px) and (min-width:360px) {
    .pillarcolumn__heading h1 {
        font-size:2.4rem;
        margin: 12px 0 13px 0
    }
}

@media screen and (max-width: 800px) and (min-width:360px) {
    .pillarcolumn__heading h1 {
        font-size:2.4rem;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal
    }
}

.pillarcolumn__container {
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

.pillarcolumn__container .scLooseFrameZone {
    width: 100%
}

.pillarcolumn__container .scLooseFrameZone .pillarcolumn__box {
    width: 100%
}

.pillarcolumn__box {
    background: #f2f3f4;
    width: 24.2%;
    margin-right: 13px
}

.pillarcolumn__box:last-child {
    margin-right: 0
}

@media screen and (max-width: 601px) and (min-width:280px) {
    .pillarcolumn__box {
        width:100%;
        margin-right: 0;
        display: none;
        background: none
    }
}

.pillarcolumn__title {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    display: block
}

.pillarcolumn__title h4 {
    font-size: 2.6rem;
    color: #fff;
    text-align: center;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__title h4 {
        font-size:2rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__title h4 {
        font-size:1.5rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 749px) and (min-width:601px) {
    .pillarcolumn__title h4 {
        font-size:1.1rem;
        line-height: 1.4rem
    }
}

@media screen and (max-width: 601px) and (min-width:270px) {
    .pillarcolumn__title {
        display:none;
        padding: 0
    }
}

.pillarcolumn__card {
    width: 92%;
    height: 200px;
    background: #fff;
    margin: 8px auto;
    padding: 14px 0 0;
    box-shadow: 1px -2px 8px 0 rgba(0,0,0,.08);
    position: relative
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card {
        height:320px;
        padding-top: 5px;
        width: 95%
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card {
        height:220px;
        padding-top: 8px;
        width: 96%
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card {
        height:210px;
        padding-top: 7px;
        width: 94%
    }
}

@media screen and (max-width: 601px) and (min-width:270px) {
    .pillarcolumn__card {
        height:auto;
        margin-top: 17px
    }
}
@media screen and (min-width:1400px) {
    .pillarcolumn__card {
        height:auto;
    }
}

.pillarcolumn__card .icon-link {
    margin-right: 18px;
    margin-top: 16px;
    text-align: right;
    float: right;
    display: -ms-flexbox;
    display: flex;
    color:  #19503e
}

.pillarcolumn__card .icon-link .modal-popup {
    cursor: pointer
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card .icon-link {
        margin-right:15px
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card .icon-link {
        margin-right:9px;
        width: 14px;
        height: 9px;
        margin-top: 10px
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card .icon-link {
        margin-right:8px;
        margin-top: 8px;
        width: 10%
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .pillarcolumn__card .icon-link {
        margin-right:20px;
        margin-top: 21px
    }
}

.pillarcolumn__card .icon {
    font-size: 1.5rem;
    margin: 0;
    line-height: normal
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card .icon {
        font-size:.9rem
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card .icon {
        font-size:.9rem
    }
}

.pillarcolumn__card p {
    font-size: 1.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #6c7174;
    line-height: 2rem;
    margin-left: 20px;
    margin-top: 9px;
    margin-right: 16px;
    margin-bottom: 0
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card p {
        font-size:1.5rem;
        line-height: 1.9rem;
        margin-left: 14px;
        margin-top: 7px
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card p {
        font-size:10px;
        line-height: 1.2rem;
        margin-left: 8px;
        margin-top: 4px
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card p {
        font-size:.7rem;
        line-height: .9rem;
        margin-left: 7px;
        margin-top: 3px
    }
}

@media screen and (max-width: 799px) and (min-width:750px) {
    .pillarcolumn__card p {
        margin-right:6px
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .pillarcolumn__card p {
        margin-right:6px;
        font-size: 1.8rem
    }
}

@media screen and (max-width: 599px) and (min-width:360px) {
    .pillarcolumn__card p {
        margin-top:13px
    }
}

.pillarcolumn__card-title {
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    padding: 5px 10px 5px 20px;
    display: inline-block;
    width: 230px;
    text-transform: uppercase;
    cursor: pointer
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card-title {
        padding:3px 9px 4px 14px;
        width: 81%
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card-title {
        padding-left:8px;
        height: 28px;
        padding-top: 2px;
        width: 84%
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card-title {
        padding-left:6px;
        height: 28px;
        width: 78%
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .pillarcolumn__card-title {
        font-size:20px;
        padding-left: 20px;
        width: 250px
    }
}

.pillarcolumn__card-title span {
    display: block;
    color:  #19503e;
    font-size: 2rem;
    line-height: 2rem
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card-title span {
        font-size:1.7rem
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card-title span {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card-title span {
        font-size:.8rem;
        line-height: 1rem
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .pillarcolumn__card-title span {
        font-size:1.8rem;
        line-height: 2.2rem
    }
}

.pillarcolumn__card-title span:last-child {
    color: #000;
    line-height: 1
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__card-title span:last-child {
        font-size:1.5rem
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__card-title span:last-child {
        font-size:.8rem
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__card-title span:last-child {
        font-size:.6rem
    }
}

.pillarcolumn__list ul {
    padding: 0
}

.pillarcolumn__list ul li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 23px;
    margin-top: 9px;
    line-height: 2.4rem
}

.pillarcolumn__list ul li::before {
    content: " ";
    all: unset;
    display: none
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__list ul li {
        margin-top:6px;
        padding-left: 20px
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__list ul li {
        margin-top:0;
        padding-left: 17px
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__list ul li {
        margin-top:0;
        padding-left: 16px
    }
}

.pillarcolumn__list ul li a {
    color: #6c7174
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn__list ul li a {
        font-size:1.5rem
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn__list ul li a {
        font-size:10px
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn__list ul li a {
        font-size:.8rem;
        line-height: 1.7rem
    }
}

.pillarcolumn__list ul li .icon {
    color:  #19503e
}

.pillarcolumn__tabcontainer {
    width: 100vw;
    position: relative;
    left: calc(-1*(100vw - 100%)/2);
    display: none
}

.pillarcolumn__tabcontainer ul {
    width: 100%;
    padding-left: 0;
    display: -ms-flexbox;
    display: flex
}

.pillarcolumn__tabcontainer ul li {
    width: 25%;
    display: inline-block;
    padding: 0
}

.pillarcolumn__tabcontainer ul li::before {
    content: "";
    all: unset;
    display: none
}

.pillarcolumn__tabcontainer ul li a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #6c7174;
    padding: 10px 15px;
    display: block;
    position: relative
}

.pillarcolumn__tabcontainer ul li a.active {
    color: #fff
}

@media screen and (max-width: 601px) {
    .pillarcolumn__tabcontainer {
        display:block
    }
}

.pillarcolumn__protecting .pillarcolumn__title,.pillarcolumn__protecting.pillarcolumn__title {
    background: #da9089;
    border: 1px solid #da9089
}

.pillarcolumn__protecting .pillarcolumn__card,.pillarcolumn__protecting.pillarcolumn__card {
    border-left: 3.6px solid #da9089
}

.pillarcolumn__protecting .pillarcolumn__card .btn,.pillarcolumn__protecting.pillarcolumn__card .btn {
    background: #da9089;
    color: #fff;
    border: 1px solid #da9089;
    text-transform: uppercase
}

.pillarcolumn__protecting .pillarcolumn__card-title,.pillarcolumn__protecting.pillarcolumn__card-title {
    background: rgba(218,144,137,.2)
}

.pillarcolumn__protecting .pillarcolumn__qslink:hover,.pillarcolumn__protecting.pillarcolumn__qslink:hover {
    color: #da9089;
    text-decoration: underline
}

.pillarcolumn__protecting .pillarcolumn__item,.pillarcolumn__protecting.pillarcolumn__item {
    border-bottom: 5px solid #da9089
}

.pillarcolumn__protecting .pillarcolumn__item .active,.pillarcolumn__protecting.pillarcolumn__item .active {
    background: #da9089;
    /*padding-bottom: 11px*/
    padding: 8px !important;
}

.pillarcolumn__investing .pillarcolumn__title,.pillarcolumn__investing.pillarcolumn__title {
    background: #969f6e;
    border: 1px solid #969f6e
}

.pillarcolumn__investing .pillarcolumn__card,.pillarcolumn__investing.pillarcolumn__card {
    border-left: 3.6px solid #969f6e
}

.pillarcolumn__investing .pillarcolumn__card .btn,.pillarcolumn__investing.pillarcolumn__card .btn {
    text-transform: uppercase;
    background: #969f6e;
    color: #fff;
    border: 1px solid #969f6e
}

.pillarcolumn__investing .pillarcolumn__card-title,.pillarcolumn__investing.pillarcolumn__card-title {
    background: rgba(150,159,110,.2)
}

.pillarcolumn__investing .pillarcolumn__qslink:hover,.pillarcolumn__investing.pillarcolumn__qslink:hover {
    color: #969f6e;
    text-decoration: underline
}

.pillarcolumn__investing .pillarcolumn__item,.pillarcolumn__investing.pillarcolumn__item {
    border-bottom: 5px solid #969f6e
}

.pillarcolumn__investing .pillarcolumn__item .active,.pillarcolumn__investing.pillarcolumn__item .active {
    background: #969f6e;
    padding-bottom: 11px
}

.pillarcolumn__financing .pillarcolumn__title,.pillarcolumn__financing.pillarcolumn__title {
    background: #d4ae69;
    border: 1px solid #d4ae69
}

.pillarcolumn__financing .pillarcolumn__card,.pillarcolumn__financing.pillarcolumn__card {
    border-left: 3.6px solid #d4ae69
}

.pillarcolumn__financing .pillarcolumn__card .btn,.pillarcolumn__financing.pillarcolumn__card .btn {
    background: #d4ae69;
    color: #fff;
    border: 1px solid #d4ae69;
    text-transform: uppercase
}

.pillarcolumn__financing .pillarcolumn__card-title,.pillarcolumn__financing.pillarcolumn__card-title {
    background: rgba(212,174,105,.2)
}

.pillarcolumn__financing .pillarcolumn__qslink:hover,.pillarcolumn__financing.pillarcolumn__qslink:hover {
    color: #d4ae69;
    text-decoration: underline
}

.pillarcolumn__financing .pillarcolumn__item,.pillarcolumn__financing.pillarcolumn__item {
    border-bottom: 5px solid #d4ae69
}

.pillarcolumn__financing .pillarcolumn__item .active,.pillarcolumn__financing.pillarcolumn__item .active {
    background: #d4ae69;
    padding-bottom: 11px
}

.pillarcolumn__qs .pillarcolumn__title,.pillarcolumn__qs.pillarcolumn__title {
    background:  #19503e;
    border: 1px solid  #19503e
}

.pillarcolumn__qs .pillarcolumn__item,.pillarcolumn__qs.pillarcolumn__item {
    border-bottom: 5px solid  #19503e
}

.pillarcolumn__qs .pillarcolumn__item .active,.pillarcolumn__qs.pillarcolumn__item .active {
    background:  #19503e;
    /*padding-bottom: 11px*/
    padding: 9px !important;
}

.pillarcolumn a:visited,.pillarcolumn a:hover,.pillarcolumn a:active,.pillarcolumn a:focus {
    border: none
}

.pillarcolumn .btn {
    width: 70%;
    height: 40px;
    border-radius: 2px;
    background-color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    line-height: 2.8rem;
    text-align: center;
    padding: 4px 0;
    margin: 13px 0 0 20px;
    display: block
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .pillarcolumn .btn {
        font-size:1.3rem;
        margin-left: 14px;
        height: 30px;
        padding-top: 1px;
        padding-bottom: 1px
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .pillarcolumn .btn {
        font-size:.8rem;
        margin-left: 8px;
        height: 20px;
        margin-top: 10px;
        padding: 1px 0;
        line-height: 17px
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .pillarcolumn .btn {
        font-size:.6rem;
        margin-top: 3px;
        margin-left: 20px;
        width: 54%;
        height: 15px;
        line-height: 1
    }
}

@media screen and (max-width: 601px) and (min-width:320px) {
    .pillarcolumn .btn {
        font-size:1.6rem;
        margin-left: 20px;
        width: 207px
    }
}

@media screen and (max-width: 599px) and (min-width:20px) {
    .pillarcolumn .btn {
        margin-top:19px
    }
}

.modalContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 428px;
    max-height: 763px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: rgba(0,0,0,.35) 0 5px 15px;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 10px;
    padding-left: 18px;
    box-sizing: border-box
}

.modalContainer .title {
    display: inline-block;
    text-align: center;
    width: 382px;
    margin: 0 0 8px 1px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #000
}

.close-btn-lead {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.close-btn-lead button {
    background-color: #5a5a5a;
    height: 40px;
    color: #fff;
    width: 40px;
    border: 1px solid #5a5a5a;
    font-size: 25px;
    cursor: pointer
}

.subtitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 18px;
    margin-right: 17px
}

.subtitle span {
    max-width: 382px;
    height: 42px;
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: center;
    color: #000
}

.Field-BG {
    margin-left: 23px;
    margin-right: 23px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

.Field-BG .name,.pincode {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 42px;
    height: 23px
}

.Field-BG .name_email_input {
    width: 380px;
    height: 50px;
    padding: 13px 0 13px 40px;
    border-radius: 4.6px;
    border: solid 1.2px #cdcece;
    background-color: #fff;
    box-sizing: border-box
}

.Field-BG .email {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 42px;
    height: 23px
}

.city {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 0;
    width: 77px;
    height: 23px
}

.Field-BG .mobile_number {
    margin-bottom: 10px;
    margin-top: 10px;
    height: 23px
}

.mobile_input {
    width: 100%;
    height: 50px;
    padding: 14px 82px 13px 18px;
    border-top-left-radius: 4.6px;
    border-bottom-left-radius: 4.6px;
    border: solid 1.2px #cdcece;
    background-color: #fff;
    box-sizing: border-box
}

.otp_btn {
    margin: 0 0 0 0;
    padding: 13px 13px 13px 13px;
    border-radius: 2.9px;
    background-color: #6d7278;
    height: 50px;
    width: 121px;
    border: 1px solid #6d7278;
    font-size: 25px;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.btn_input_div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    width: 380px;
    height: 50px;
    position: relative
}

.otp {
    margin-top: 10px;
    margin-bottom: 10px
}

.sendOTP {
    width: 58px;
    height: 19px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff
}

.Rectangle-copy {
    width: 179px;
    height: 44px;
    margin: 16px 0 16px 78px;
    background-color:  #19503e;
    border: 1px solid  #19503e
}

.REQUEST-CALLBACK {
    text-transform: uppercase;
    width: 151px;
    height: 20px;
    margin: 1px 0 0;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #fff
}

.By-clicking-on-Reque {
    -ms-flex-direction: column;
    flex-direction: column;
    width: 332px;
    height: 28px;
    margin: 10px 24px 0 23px;
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000
}

.By-clicking-on-Reque .text-style-1 {
    color:  #19503e;
    font-size: 14px !important
}

#addeddiv {
    margin-top: 10px;
    margin-bottom: 10px
}

#addedinput {
    width: 380px;
    height: 50px;
    padding: 7px 19px 7px 18px;
    border-radius: 4.6px;
    border: solid 1.2px #cdcece;
    background-color: #fff;
    box-sizing: border-box
}

.city-option {
    display: inline-block;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

@media only screen and (max-width: 600px) {
    .modalContainer {
        width:342px;
        min-height: 531px;
        border-radius: 1.5px;
        box-shadow: 0 6px 18px 0 rgba(0,0,0,.16);
        margin-top: 0;
        object-fit: contain
    }

    .modalContainer .title {
        width: 294px;
        margin: 0 0 4px 1px;
        font-size: 19px
    }

    .subtitle {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        width: 264px;
        height: 32px;
        margin-top: 5px
    }

    .Field-BG {
        margin-left: 0;
        margin-right: 0
    }

    .name,.pincode {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 40px;
        width: 32.8px;
        height: 17px
    }

    .Field-BG .name_email_input {
        width: 304px;
        height: 40px;
        padding: 10.4px 13.9px 10.6px 13.9px;
        border-radius: 3.6px
    }

    .email {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 31.8px;
        height: 17px
    }

    .Field-BG .mobile_number {
        margin-bottom: 8px;
        margin-top: 8px;
        height: 17px
    }

    .btn_input_div {
        width: 304px;
        height: 40px
    }

    .mobile_input {
        width: 100%;
        height: 39px;
        padding: 13px 0 13px 40px;
        border-top-left-radius: 4.6px;
        border-bottom-left-radius: 4.6px
    }

    .otp_btn {
        border-radius: 2.2px;
        height: 39px;
        width: 93px;
        font-size: 25px
    }

    .Rectangle-copy {
        width: 138px;
        height: 34px;
        margin: 6.7px 0 10.3px 78px
    }

    .REQUEST-CALLBACK {
        width: 117px;
        height: 15.4px;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 15px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.03;
        letter-spacing: normal;
        text-align: center;
        color: #fff
    }

    .By-clicking-on-Reque {
        -ms-flex-direction: column;
        flex-direction: column;
        width: 256px;
        height: 26px;
        margin: 10px 10px 0 23px;
        opacity: .7;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 14px
    }

    .sendOTP {
        width: 44px;
        height: 14px;
        font-size: 12px
    }

    #addeddiv {
        margin-top: 8px;
        margin-bottom: 8px
    }

    #addedinput {
        width: 304px !important;
        height: 40px;
        padding: 7px 19px 7px 18px;
        border-radius: 4.6px;
        border: solid 1.2px #cdcece;
        background-color: #fff;
        box-sizing: border-box
    }

    .city-option {
        display: inline-block;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0
    }
}

@media only screen and (min-width: 600px) {
    .modalContainer {
        width:342px;
        min-height: 100%;
        border-radius: 1.6px;
        box-shadow: 0 6px 19px 0 rgba(0,0,0,.16);
        margin-top: 0;
        object-fit: contain
    }

    .modalContainer .title {
        width: 305px;
        margin: 0 0 6px 1px;
        font-size: 19px
    }

    .subtitle {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        width: 305px;
        height: 33.6px;
        margin: 0
    }

    .subtitle span {
        font-size: 13px;
        line-height: 1.29
    }

    .Field-BG {
        margin-left: 0;
        margin-right: 0
    }

    .name {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 34px;
        height: 19px
    }

    .Field-BG .name_email_input {
        width: 304px;
        height: 40px;
        padding: 11.2px 14.4px 10.4px 14.4px;
        border-radius: 3.7px
    }

    .email {
        margin-bottom: 8px;
        margin-top: 8px;
        width: 33px;
        height: 19px
    }

    .Field-BG .mobile_number {
        margin-bottom: 8px;
        margin-top: 8px;
        height: 19px
    }

    .btn_input_div {
        width: 304px;
        height: 40px
    }

    .mobile_input {
        width: 100%;
        height: 40px;
        padding: 13px 0 13px 40px;
        border-top-left-radius: 3.7px;
        border-bottom-left-radius: 3.7px
    }

    .otp_btn {
        border-radius: 2.3px;
        height: 40px;
        width: 97px;
        font-size: 25px
    }

    .Rectangle-copy {
        width: 143px;
        height: 35px;
        margin: 6.6px 0 12.4px 78px
    }

    .REQUEST-CALLBACK {
        width: 121px;
        height: 16px;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: normal;
        text-align: center;
        color: #fff
    }

    .By-clicking-on-Reque {
        -ms-flex-direction: column;
        flex-direction: column;
        width: 265px;
        height: 22px;
        margin: 10px 10px 0 23px;
        opacity: .7;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 14px
    }

    .sendOTP {
        width: 97px;
        height: 40px;
        font-size: 12px
    }

    #addeddiv {
        margin-top: 8px;
        margin-bottom: 8px
    }

    #addedinput {
        width: 304px;
        height: 40px;
        padding: 7px 19px 7px 18px;
        border-radius: 3.7px;
        border: solid 1.2px #cdcece;
        background-color: #fff;
        box-sizing: border-box
    }

    .city-option {
        display: inline-block;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0
    }
}

.modal-dialog-custom {
    max-width: 344px !important;
    width: unset !important;
    margin: 48px auto 0
}

.Rectangle-2 {
    width: 412px;
    display: block;
    min-height: 100%;
    padding-bottom: 40px;
    border-radius: 2px;
    box-shadow: 0 8px 24px 0 rgba(0,0,0,.16);
    background-color: #fff
}

.thank-you-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.thank-you {
    height: 30px;
    margin: 0 0 4px 1px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #000
}

.Thank-you-A-represe {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 382px;
    height: 42px;
    margin: 4px 1px 0 1px;
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: center;
    color: #000
}

.Mask {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 35px;
    padding: 8px 11px;
    margin: auto;
    border-radius: 1.6px;
    border: solid 1px  #19503e;
    background-color: #fff
}

.Continue-to-ABHI-web {
    width: 100%;
    height: 19px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color:  #19503e;
    cursor: pointer
}

.Rectangle-2 .subtitle {
    margin-top: 10px;
    margin-bottom: 25px;
    width: unset
}

.otp-text-box {
    position: relative
}

.resend-otp-lead {
    position: absolute;
    display: none;
    top: 10px;
    right: 36px;
    font-size: 16px;
    color:  #19503e
}

#resend-button {
    cursor: pointer
}

#resend-button-timer {
    display: none
}

.leadForm-span-error {
    background: transparent !important;
    border: none !important;
    font-size: 12.6px;
    font-family: "pfencoresanspro-book",sans-serif;
    color:  #19503e
}

.leadForm-div-error {
    border: solid 1px #bd2b2b !important;
    background: #bd2b2b1f !important
}

#name-validation {
    display: none
}

#email-validation {
    display: none
}

#mobile-validation {
    display: none
}

#otp-validation {
    display: none
}

#pincode-validation {
    display: none
}

#pincode-validation.pincode-success {
    text-transform: capitalize
}

.Rectangle-copy.disabled {
    background-color: #6d7278;
    border: 1px solid #6d7278
}

#leadForm-tnc {
    position: absolute;
    top: 5px;
    left: 13px
}

.By-clicking-on-Reque {
    position: relative
}

@media screen and (max-width: 800px) {
    .subtitle span {
        font-size:14px;
        line-height: 16px
    }
}

@media screen and (max-width: 1200px) and (min-width:801px) {
    .subtitle span {
        font-size:13px;
        line-height: 16.8px
    }
}

@media screen and (min-width: 1201px) {
    .subtitle span {
        font-size:16px;
        line-height: 21px
    }
}

.country-code-India {
    position: absolute;
    padding: 10px 5px 10px 7px
}

.country-code-India-inner {
    border-right: 1px solid #000;
    margin: 10px 0;
    padding-right: 3px
}

@media screen and (max-width: 480px) {
    .Rectangle-2 {
        width:344px
    }

    .subtitle {
        margin-left: 11px;
        margin-right: 10px
    }
}

#leadFormThankyou .modal-content {
    margin-top: 170px;
    background-color: transparent
}

#leadFormThankyou .modal-content .Thank-you-A-represe {
    display: block !important
}

#leadFormThankyou .modal-content .cmp-name {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: bold;
    letter-spacing: normal;
    color: #000;
    opacity: 1
}

#leadForm .modal-content {
    background-color: transparent
}

#leadForm .blog-radio span:first-child {
    width: auto;
    margin: 20px 0 0
}

#leadForm .blog-radio ul.radio-group-plan li:last-child {
    margin-top: 10px
}

@media screen and (max-width: 600px) {
    #leadForm .otp_btn {
        width:108px !important
    }
}

@media screen and (max-width: 600px) {
    #leadForm .otp_btn .sendOTP {
        width:100% !important
    }
}

@media screen and (max-width: 600px) {
    #leadForm .Rectangle-copy {
        width:160px !important
    }
}

@media screen and (max-width: 600px) {
    #leadForm .Rectangle-copy .REQUEST-CALLBACK {
        width:100% !important
    }
}

.download-app-wrapper {
    padding: 0 10px 0 10px !important;
    cursor: pointer
}

.download-app-wrapper .download-app-content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #f2f3f4;
    border-radius: 50px;
    padding: 4px 13px 4px 10px
}

.download-app-wrapper .download-app-content span.title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    color:  #19503e;
    font-size: 18px;
    line-height: 1
}

.download-app-wrapper .download-app-content span.title .download-app-mobile-icon {
    margin-bottom: 0;
    margin-right: 3px;
    content: url("../images/mobile-icon-xl.svg")
}

.download-app-wrapper .download-app-content .icon-right-arrow {
    padding-left: 1px
}

@media screen and (max-width: 601px) {
    .download-app-wrapper {
        padding:0 10px 0 10px !important
    }

    .download-app-wrapper .download-app-content {
        padding: 6px 13px 6px 12px
    }

    .download-app-wrapper .download-app-content span.title {
        font-size: 18px
    }

    .download-app-wrapper .download-app-content .download-app-mobile-icon {
        content: url("../images/mobile-icon-xs.svg") !important
    }
}

@media screen and (max-width: 749px) and (min-width:602px) {
    .download-app-wrapper {
        margin-top:5px !important;
        padding: 0 10px 0 4px !important
    }

    .download-app-wrapper .download-app-content span.title {
        font-size: 8px
    }

    .download-app-wrapper .download-app-content .download-app-mobile-icon {
        content: url("../images/mobile-icon-m.svg") !important
    }
}

@media screen and (max-width: 1199px) and (min-width:750px) {
    .download-app-wrapper {
        margin-top:5px !important;
        padding: 0 10px 0 5px !important
    }

    .download-app-wrapper .download-app-content span.title {
        font-size: 10px
    }

    .download-app-wrapper .download-app-content .download-app-mobile-icon {
        content: url("../images/mobile-icon-l.svg") !important
    }
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .download-app-wrapper .download-app-content {
        padding:4px 13px 4px 8px
    }

    .download-app-wrapper .download-app-content span.title {
        font-size: 15px
    }
}

.download-app-toggle-wrapper,.download-app-toggle-wrapper-mutual {
    position: absolute;
    top: 0;
    height: 200px;
    background-color: #fff;
    width: 100%;
    visibility: hidden
}

.download-app-toggle-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0 0 10px
}

.download-app-toggle-content .close-toggle {
    cursor: pointer;
    position: absolute;
    right: 0;
    padding: 5px 15px 0 0;
    content: url("../images/toggle-close-xl.svg")
}

.download-app-toggle-content .abc-icon {
    width: fit-content;
    padding-top: 5px;
    margin-bottom: 0;
    content: url("../images/abc-icon-xl.png")
}

.download-app-toggle-content .download-app-msg {
    font-size: 20px;
    padding: 10px 3px 0 0
}

.download-app-toggle-content .download-app-playstore {
    font-size: 16px;
    padding: 10px 3px 0 0;
    font-weight: 600
}

.download-app-toggle-content .abc-info {
    font-weight: 600;
    color:  #19503e
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .download-app-toggle-wrapper {
        height:120px
    }

    .close-toggle {
        padding: 0 15px 0 0 !important;
        content: url("../images/toggle-close-m.svg") !important
    }

    .abc-icon {
        padding-top: 1px !important;
        content: url("../images/abc-icon-m.svg") !important
    }

    .download-app-msg {
        padding: 5px 3px 0 0 !important;
        font-size: 11px !important;
        line-height: 1.3
    }

    .download-app-playstore {
        padding: 5px 3px 0 0 !important;
        font-size: 8px !important;
        line-height: 1.3
    }
}

@media screen and (max-width: 1399px) and (min-width:1200px) {
    .download-app-toggle-wrapper {
        height:168px
    }

    .close-toggle {
        padding: 0 15px 0 0 !important;
        content: url("../images/toggle-close-l.svg") !important
    }

    .abc-icon {
        padding-top: 0 !important;
        content: url("../images/abc-icon-l.png") !important
    }

    .download-app-msg {
        padding: 5px 3px 0 0 !important;
        font-size: 17px !important
    }

    .download-app-playstore {
        padding: 5px 3px 0 0 !important;
        font-size: 14px !important
    }
}

@media screen and (max-width: 991px) {
    .download-app-toggle-wrapper {
        visibility:hidden !important
    }
}

@media screen and (max-width: 600px) {
    #leadForm .modalContainer {
        max-height:100%
    }
}

@media screen and (min-width: 600px) {
    #leadForm .modalContainer {
        max-height:100%
    }
}

.qsmodal__acSuccessHeader {
    padding-bottom: 18px
}

.qsmodal__acSuccessHeader h5 {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 20px
}

.qsmodal__acSuccessHeader span {
    padding-bottom: 20px
}

.qsmodal__acSuccessHeader p {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #6c7174
}

.acSuccess {
    margin-top: 0
}

.acSuccess__headline {
    font-size: 3.4rem;
    line-height: .59
}

.backtotop {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 99
}

.backtotop__icon {
    cursor: pointer;
    text-align: center;
    border-radius: 7px;
    background:  #19503e;
    color: #fff;
    padding: 2px 8px;
    text-align: center;
    margin-top: 15px;
    font-size: 25px;
    border: none;
    font-size: 1.8rem;
    display: block
}

.backtotop__icon:before {
    line-height: 28px;
    font-size: 1.6rem
}

.backtotop__icon.toPrev {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.backtotop__hide {
    opacity: 0;
    transition: opacity .3s ease-out,top .3s step-end;
    z-index: -9999;
    visibility: hidden
}

.backtotop__show {
    transition: opacity .3s ease-out,top .3s step-start;
    opacity: 1;
    z-index: 1;
    visibility: visible
}

.banner-component--v2 {
    background: #f2f3f4;
    padding: 57px 0 33px;
    position: relative;
    margin-bottom: 0 !important
}

.banner-component--v2:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    width: calc(50vw);
    height: 100%;
    background: #f2f3f4
}

.banner-component--v2:after {
    content: "";
    top: 0;
    position: absolute;
    left: 100%;
    width: calc(50vw);
    height: 100%;
    background: #f2f3f4
}

@media(max-width: 767px) {
    .banner-component--v2 {
        padding:50px 0 10px;
        margin-bottom: 0 !important
    }

    .banner-component--v2 .banner-component--v2__cta-wrapper {
        margin-bottom: 0
    }
}

.blog-block {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    width: 100%
}

@media(max-width: 767px) {
    .blog-block {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

.blog-block__left {
    box-shadow: 1px -2px 8px 0 rgba(0,0,0,.08);
    position: relative;
    border-left: 5px solid;
    background: #fff;
    cursor: pointer;
    max-height: 384px;
    max-width: 590px;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 1399px) {
    .blog-block__left {
        max-height:332px;
        max-width: 519px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__left {
        max-height:225px;
        max-width: 330px
    }
}

@media screen and (max-width: 1199px) and (min-width:1024px) {
    .blog-block__left {
        max-height:270px;
        max-width: 410px
    }
}

@media(max-width: 767px) {
    .blog-block__left {
        border-left:3px solid;
        max-height: 100%;
        max-width: 100%
    }
}

.blog-block__left--advicing {
    border-color:  #19503e
}

.blog-block__left--protecting {
    border-color: #da9089
}

.blog-block__left--investing {
    border-color: #969f6e
}

.blog-block__left--financing {
    border-color: #d4ae69
}

.blog-block__left .blog-block__article-img {
    max-height: 259px
}

@media screen and (max-width: 1399px) {
    .blog-block__left .blog-block__article-img {
        max-height:228px
    }
}

@media(max-width: 767px) {
    .blog-block__left .blog-block__article-img {
        max-height:100%
    }
}

.blog-block__left .blog-block__article-img img {
    width: 100%;
    height: 100%
}

.blog-block__article-img img {
    max-height: 259px
}

@media(max-width: 767px) {
    .blog-block__article-img img {
        margin-bottom:0;
        max-height: 100%
    }
}

.blog-block__article-title {
    font-size: 3rem;
    line-height: 3.4rem;
    letter-spacing: -.9px;
    color: #000;
    margin: 14px 15px 12px 15px;
    height: 6.8rem
}

@media screen and (max-width: 1399px) {
    .blog-block__article-title {
        height:5.8rem;
        margin: 8px 15px 11px 15px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-title {
        height:3.6rem
    }
}

.blog-block__article-title a {
    font-size: 3rem;
    line-height: 3.4rem;
    letter-spacing: -.9px;
    color: #000;
    display: block
}

@media screen and (max-width: 1399px) {
    .blog-block__article-title a {
        font-size:2.3rem;
        line-height: 2.9rem;
        letter-spacing: -.07px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-title a {
        font-size:1.5rem;
        line-height: 1.8rem;
        letter-spacing: -.04px
    }
}

.blog-block__article-title a:hover,.blog-block__article-title a:active,.blog-block__article-title a:focus {
    border: none
}

@media(max-width: 1200px) {
    .blog-block__article-title {
        font-size:2.3rem;
        line-height: 2.9rem;
        letter-spacing: -.7px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-title {
        font-size:1.5rem;
        line-height: 1.8rem;
        letter-spacing: -.04px;
        margin: 0 9px 13px 9px
    }
}

@media(max-width: 767px) {
    .blog-block__article-title {
        font-size:1.4rem;
        line-height: 1.7rem;
        margin: 7px 7px 11px 7px
    }
}

.blog-block__article-date {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #000;
    margin: 0 0 10px 15px
}

@media screen and (max-width: 1199px) {
    .blog-block__article-date {
        font-size:10px;
        line-height: 1.2rem;
        margin: 0 9px 10px 9px
    }
}

@media(max-width: 767px) {
    .blog-block__article-date {
        font-size:1.2rem;
        margin-left: 7px
    }
}

.blog-block__right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 1399px) {
    .blog-block__right {
        -ms-flex-item-align:center;
        -ms-grid-row-align: center;
        align-self: center
    }
}

@media(max-width: 767px) {
    .blog-block__right {
        width:100%
    }
}

.blog-block__article-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 30px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-wrapper {
        margin-left:47px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-wrapper {
        margin-left:21px
    }
}

@media(max-width: 767px) {
    .blog-block__article-wrapper {
        -ms-flex-direction:column;
        flex-direction: column;
        margin-left: 0
    }
}

.blog-block__article-wrapper:nth-child(1) {
    margin-bottom: 76px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-wrapper:nth-child(1) {
        margin-bottom:30px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-wrapper:nth-child(1) {
        margin-bottom:15px
    }
}

@media screen and (max-width: 1024px) {
    .blog-block__article-wrapper:nth-child(1) {
        margin-bottom:14px
    }
}

@media(max-width: 767px) {
    .blog-block__article-wrapper:nth-child(1) {
        margin-bottom:0
    }
}

@media(max-width: 767px) {
    .blog-block__article-wrapper:nth-child(2) .blog-block__article-card {
        margin-top:0
    }
}

.blog-block__article-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    background: #fff;
    width: 328px;
    cursor: pointer;
    max-height: 150px;
    box-shadow: 1px -1px 8px 0 rgba(0,0,0,.08);
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 2px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-card {
        max-height:126px;
        width: 270px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-card {
        max-height:92px;
        width: 195px
    }
}

@media screen and (max-width: 1199px) and (min-width:1024px) {
    .blog-block__article-card {
        max-height:92px;
        width: 250px
    }
}

@media(max-width: 767px) {
    .blog-block__article-card {
        max-height:150px;
        width: 100%
    }
}

@media(max-width: 767px) {
    .blog-block__article-card:first-child {
        margin-top:35px;
        margin-bottom: 35px
    }
}

.blog-block__article-card:nth-child(2) {
    margin-left: 30px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-card:nth-child(2) {
        margin-left:18px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-card:nth-child(2) {
        margin-left:14px
    }
}

@media(max-width: 767px) {
    .blog-block__article-card:nth-child(2) {
        margin-left:0
    }
}

@media(max-width: 767px) {
    .blog-block__article-card {
        max-width:100%;
        margin-bottom: 35px
    }
}

@media(max-width: 767px) {
    .blog-block__article-card:last-child {
        margin-bottom:35px
    }
}

.blog-block__card {
    border-left: 3px solid;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 2px 0 0 2px
}

@media screen and (max-width: 1024px) {
    .blog-block__card {
        max-width:100%
    }
}

@media(max-width: 767px) {
    .blog-block__card {
        max-width:56%
    }
}

.blog-block__card--advicing {
    border-color:  #19503e
}

.blog-block__card--protecting {
    border-color: #da9089
}

.blog-block__card--investing {
    border-color: #969f6e
}

.blog-block__card--financing {
    border-color: #d4ae69
}

.blog-block__article-badge {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.2rem;
    line-height: 2rem;
    text-align: center;
    display: inline-block;
    max-width: 132px;
    margin-top: 10px;
    color: #fff;
    text-transform: uppercase;
    padding-top: 2px;
    padding-bottom: 2px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-badge {
        font-size:1rem;
        line-height: 1.8rem;
        text-align: left;
        max-width: 108px;
        margin-top: 8px;
        padding-top: 1px;
        padding-bottom: 0;
        padding-left: 8px
    }
}

@media(max-width: 1200px) {
    .blog-block__article-badge {
        font-size:10px;
        letter-spacing: 0;
        text-align: left;
        max-width: 108px;
        padding-left: 8px
    }
}

@media screen and (max-width: 1024px) {
    .blog-block__article-badge {
        max-width:110px;
        letter-spacing: -.23px
    }
}

@media(max-width: 767px) {
    .blog-block__article-badge {
        font-family:"pfhandbookpro-medium",sans-serif;
        font-size: 1.2rem;
        line-height: 2rem;
        text-align: center;
        display: inline-block;
        max-width: 132px;
        padding: 2px 0
    }
}

.blog-block__article-title-card {
    margin: 19px 10px 19px 15px;
    height: 6rem;
    position: static
}

@media screen and (max-width: 1399px) {
    .blog-block__article-title-card {
        margin:12px 10px 12px 5px;
        height: 4.5rem;
        position: static;
        line-height: 13px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-title-card {
        margin:8px 10px 6px 8px
    }
}

@media(max-width: 767px) {
    .blog-block__article-title-card {
        margin:19px 0 22px 15px;
        height: 5.8rem
    }
}

.blog-block__article-title-card a {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    letter-spacing: -.39px;
    color: #000
}

@media screen and (max-width: 1399px) {
    .blog-block__article-title-card a {
        font-size:1.2rem;
        line-height: 1.4rem;
        letter-spacing: -.33px
    }
}

@media screen and (max-width: 1024px) {
    .blog-block__article-title-card a {
        line-height:1.7rem
    }
}

@media(max-width: 767px) {
    .blog-block__article-title-card a {
        font-size:1.4rem;
        line-height: 1.6rem;
        letter-spacing: -.39px
    }
}

.blog-block__article-title-card a:visited,.blog-block__article-title-card a:hover,.blog-block__article-title-card a:active {
    border: none
}

.blog-block__article-date-card {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: -.27px;
    margin: 0 0 11px 14px;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width: 1399px) {
    .blog-block__article-date-card {
        margin:0 0 19px 5px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-date-card {
        font-size:10px;
        margin: 0 0 19px 8px
    }
}

@media(max-width: 767px) {
    .blog-block__article-date-card {
        margin:0 0 11px 14px;
        height: auto
    }
}

.blog-block__article-img-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 130px;
    height: 130px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 10px
}

@media screen and (max-width: 1399px) {
    .blog-block__article-img-card {
        max-width:110px;
        height: 110px;
        margin-top: 8px;
        margin-right: 8px;
        margin-bottom: 8px
    }
}

@media screen and (max-width: 1199px) {
    .blog-block__article-img-card {
        display:none
    }
}

@media(max-width: 767px) {
    .blog-block__article-img-card {
        display:-ms-flexbox;
        display: flex;
        height: 130px;
        max-width: 130px;
        margin-top: 10px;
        margin-right: 10px;
        margin-bottom: 10px
    }
}

.blog-block__article-img-card img {
    margin-bottom: 0;
    border-radius: 4px !important
}

@media(max-width: 1200px) {
    .blog-block__article-img-card img {
        margin-right:8px
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .banner-content-wrapper {
        padding-left:0
    }
}

.takeaway_block {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.takeaway_block.pink {
    border-left: 4px solid #da9089;
    border-right: 1px solid #da9089;
    border-top: 1px solid #da9089;
    border-bottom: 1px solid #da9089;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.takeaway_block.pink h2 {
    background: rgba(218,144,137,.2)
}

.takeaway_block.green {
    border-left: 4px solid #969f6e;
    border-right: 1px solid #969f6e;
    border-top: 1px solid #969f6e;
    border-bottom: 1px solid #969f6e;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.takeaway_block.green h2 {
    background: rgba(150,159,110,.2)
}

.takeaway_block.red {
    border-left: 4px solid  #19503e;
    border-right: 1px solid  #19503e;
    border-top: 1px solid  #19503e;
    border-bottom: 1px solid  #19503e;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.takeaway_block.red h2 {
    background: rgba(199,34,42,.2)
}

.takeaway_block.yellow {
    border-left: 4px solid #d4ae69;
    border-right: 1px solid #d4ae69;
    border-top: 1px solid #d4ae69;
    border-bottom: 1px solid #d4ae69;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.takeaway_block.yellow h2 {
    background: rgba(212,174,105,.2)
}

.takeaway_block h2 {
    font-size: 18px;
    font-weight: bold;
    padding-left: 15px;
    color: #000;
    width: 150px;
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    display: inline-block;
    text-transform: uppercase
}

.takeaway_block .takeaway_list {
    padding-left: 35px
}

.takeaway_block .takeaway_list li::before {
    color: #000 !important
}

.blog-article-tableofcontent {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 1px -2px 8px 0 rgba(0,0,0,.08);
    position: relative;
    border: 1px solid  #19503e;
    padding: 15px 25px 15px 15px
}

.blog-article-tableofcontent span {
    text-transform: uppercase;
    font-size: 2.3rem;
    line-height: 34px;
    font-weight: bold
}

.blog-article-tableofcontent ul li {
    color:  #19503e !important;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: .75;
    text-transform: capitalize
}

.dark-banner .banner-content-wrapper .content-banner-share {
    background-color: #fff;
    display: inline-block;
    padding: 10px 7px;
    position: absolute;
    left: 180px;
    bottom: 0 !important;
    border-radius: 5px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.13);
    width: 300px
}

.dark-banner .banner-content-wrapper .content-banner-share .share-component .share-content {
    position: absolute;
    width: 200px;
    left: -20px;
    top: -6px;
    display: block
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-content-wrapper .content-banner-share .share-component .share-content {
        position:absolute;
        width: 200px;
        left: 0 !important;
        top: -9px;
        display: block
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-content-wrapper .content-banner-share {
        position:relative;
        left: 0;
        bottom: 0;
        padding: 10px !important;
        box-shadow: 0 2px 8px 0 rgba(0,0,0,.13);
        width: 300px
    }
}

.intro-title {
    font-style: italic;
    font-weight: bold;
    color: #000
}

.disclaimer {
    color: #8b151b;
    font-weight: bold
}

.bo h2 {
    text-transform: uppercase;
    font-weight: bold
}

.bo p {
    margin-bottom: 0 !important
}

.blog-article-tableofcontent {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 1px -2px 8px 0 rgba(0,0,0,.08);
    position: relative;
    border: 1px solid  #19503e;
    padding: 15px 25px 15px 15px
}

.blog-article-tableofcontent span {
    text-transform: uppercase;
    font-size: 2.3rem;
    line-height: 34px;
    font-weight: bold
}

.blog-article-tableofcontent ul li {
    color:  #19503e !important;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: .75;
    text-transform: capitalize
}

.postcast-intro p {
    margin-bottom: 0 !important;
    font-size: 2.1rem
}

.podcastepisode_block {
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.podcastepisode_block .pink {
    border-left: 4px solid #da9089;
    border-right: 1px solid #da9089;
    border-top: 1px solid #da9089;
    border-bottom: 1px solid #da9089;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.podcastepisode_block .pink h2 {
    background: rgba(218,144,137,.2)
}

.podcastepisode_block .green {
    border-left: 4px solid #969f6e;
    border-right: 1px solid #969f6e;
    border-top: 1px solid #969f6e;
    border-bottom: 1px solid #969f6e;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.podcastepisode_block .green h2 {
    background: rgba(150,159,110,.2)
}

.podcastepisode_block .red {
    border-left: 4px solid  #19503e;
    border-right: 1px solid  #19503e;
    border-top: 1px solid  #19503e;
    border-bottom: 1px solid  #19503e;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.podcastepisode_block .red h2 {
    background: rgba(199,34,42,.2)
}

.podcastepisode_block .yellow {
    border-left: 4px solid #d4ae69;
    border-right: 1px solid #d4ae69;
    border-top: 1px solid #d4ae69;
    border-bottom: 1px solid #d4ae69;
    padding-right: 25px;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: -1px 8px 0 rgba(0,0,0,.08);
    border-radius: 5px;
    position: relative
}

.podcastepisode_block .yellow h2 {
    background: rgba(212,174,105,.2)
}

.podcastepisode_block h2 {
    margin: 0;
    font-size: 2.3rem;
    font-weight: bold;
    padding-left: 5px;
    color: #000;
    width: auto;
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    padding: 8px 15px 5px 10px;
    display: inline-block;
    text-transform: uppercase
}

.podcastepisode_block podcastepisode_list {
    padding-left: 35px
}

.podcastepisode_block podcastepisode_list li {
    color: #000 !important;
    font-size: 2.2rem
}

.podcastepisode_block .podcastepisode_list li::before {
    color: #000 !important
}

.blog-podcastarticle-resources {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
    padding: 15px 25px 15px 0
}

.blog-podcastarticle-resources span {
    text-transform: uppercase;
    font-size: 2.3rem;
    line-height: 34px;
    font-weight: bold
}

.blog-podcastarticle-resources ul li {
    color:  #19503e !important;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2.2rem;
    line-height: .95;
    text-transform: capitalize
}

.podcasttimestamp_block .podcasttimestamp_list li::before {
    content: none !important
}

.podcasttimestamp_block .podcasttimestamp_list li span a {
    margin-right: 5px;
    font-size: 2.2rem
}

.podcasttimestamp_block.yellow .podcasttimestamp_list li span a {
    color: #d4ae69
}

.podcasttimestamp_block.pink .podcasttimestamp_list li span a {
    color: #da9089
}

.podcasttimestamp_block.red .podcasttimestamp_list li span a {
    color:  #19503e
}

.podcasttimestamp_block.green .podcasttimestamp_list li span a {
    color: #3e593c
}

.podcasttimestamp_block.yellow .podcasttimestamp_list li span a:hover {
    border-bottom: 1px solid #d4ae69
}

.podcasttimestamp_block.pink .podcasttimestamp_list li span a:hover {
    border-bottom: 1px solid #da9089
}

.podcasttimestamp_block.red .podcasttimestamp_list li span a:hover {
    border-bottom: 1px solid  #19503e
}

.podcasttimestamp_block.green .podcasttimestamp_list li span a:hover {
    border-bottom: 1px solid #3e593c
}

.podcasttimestamp_block h2 {
    margin: 0;
    font-size: 2.3rem;
    font-weight: bold;
    padding-left: 5px;
    color: #000;
    width: auto;
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    padding: 15px 15px 15px 0;
    display: inline-block;
    text-transform: uppercase
}

.podcasttimestamp_block .podcasttimestamp_list {
    padding-left: 0
}

.podcasttimestamp_block .podcasttimestamp_list li {
    color: #000 !important;
    font-size: 2.2rem
}

@media(max-width: 767px) {
    .podcasttimestamp_block .podcasttimestamp_list li {
        display:-ms-inline-flexbox;
        display: inline-flex;
        padding-bottom: 0
    }
}

.top-global-nav {
    margin-top: 20px
}

.top-bg {
    background-color:  #19503e;
    margin: 0 !important;
    list-style: none
}

.top-bg #business-topmenu .icon-arrow.icon,.top-bg #Career-topmenu .icon-arrow.icon {
    display: none
}

.top-bg ul li::before {
    display: none
}

.top-bg .nav li a {
    padding: 5px 10px 5px 10px !important;
    font-size: 1.8rem;
    line-height: 1.6rem;
    color: #fff;
    text-decoration: none !important;
    padding-bottom: 0;
    border-bottom: 0 !important
}

.top-bg ul li {
    list-style: none;
    padding-top: 6px;
    padding-bottom: 4px;
    margin: 0;
    position: relative
}

@media screen and (max-width: 1020px) {
    .top-global-nav {
        display:none !important
    }
}

.pink-link-heading {
    color: #da9089 !important;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "pfhandbookpro-bold"
}

.green-link-heading {
    color: #969f6e !important;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "pfhandbookpro-bold"
}

.yellow-link-heading {
    color: #d4ae69 !important;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "pfhandbookpro-bold"
}

.red-link-heading {
    color:  #19503e !important;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "pfhandbookpro-bold"
}

.green-link-section,.red-link-section {
    background-color: #eee;
    height: 100%
}

.col-section-container {
    display: table;
    width: 100%;
    padding: 0
}

.col-section-container .level1 {
    display: table-cell;
    padding: 16px;
    width: 25%
}

#header-dropdown li ul li ul li a {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    margin-top: 5px;
    padding-left: 2px !important
}

#header-dropdown .selected-menu {
    background-color: #8b151b !important;
    text-align: center;
    position: relative;
    pointer-events: none;
    font-weight: bold;
    color: #fff
}

#header-dropdown .selected-menu span:after {
    position: relative;
    content: '';
    z-index: 100;
    left: -40%;
    top: 34px;
    bottom: 100%;
    width: 0;
    height: 0;
    border-top: 10px solid #8b151b;
    border-right: 8px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 8px solid transparent
}

#header-dropdown .selected-menu a {
    border-bottom: 0 !important;
    text-decoration: none !important;
    margin-left: 15px
}

#header-dropdown .selected-menu a:hover,#header-dropdown .selected-menu a:focus {
    border-bottom: 0 !important;
    text-decoration: none !important
}

.selected-menu:hover,.selected-menu:focus {
    border-bottom: 0 !important;
    text-decoration: none !important
}

.scnd_center .icon-arrow {
    font-size: .7rem
}

.scnd_center:hover,.scnd_center:focus {
    background-color: #eee;
    color: #000 !important
}

.scnd_center:hover .icon-arrow,.scnd_center:focus .icon-arrow {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color:  #19503e;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

.scnd_center .open {
    color: #000 !important
}

.dropdown-menu:not(.datepicker-dropdown) {
    width: 900px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.18);
    border: none !important;
    border-radius: 0 !important;
    left: auto !important;
    right: 0 !important;
    line-height: 1.25
}

.dropdown-menu ul li ul li {
    padding-top: 0 !important
}

.dropdown-menu .level1 .list-unstyled {
    padding-bottom: 15px
}

.dropdown-menu .level1 .level2 {
    padding-right: 0
}

.dropdown-menu .level1 .level2 a:hover {
    text-decoration: underline !important
}

.vertical-line:after {
    content: "";
    border-right: 1px solid #fff;
    position: relative
}

.utility-links {
    margin-left: -1.8rem
}

.utility-links-global-nav {
    color: #fff !important;
    position: relative;
    left: -20px;
    width: 106%;
    padding-top: 10px
}

.utility-links-global-nav ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    list-style: none;
    padding: 0;
    margin-bottom: -5px
}

.utility-links-global-nav li {
    display: table-cell;
    float: none;
    text-align: center;
    width: 100%;
    list-style: none;
    vertical-align: middle !important;
    padding: 15px !important;
    color: #fff !important
}

.utility-links-global-nav li:before {
    content: ""
}

.utility-links-global-nav li a {
    text-decoration: none !important
}

.utility-links-global-nav li a:hover,.utility-links-global-nav li a:focus {
    text-decoration: none !important;
    border-bottom: 0 !important;
    text-decoration: none !important
}

.utility-links-global-nav .selected-menu {
    font-weight: bold;
    list-style: none;
    color: #fff !important;
    background-color: #8b151b !important
}

.utility-links-global-nav .selected-menu span:after {
    position: relative;
    content: '';
    display: block;
    z-index: 100;
    left: 45%;
    bottom: -22px;
    width: 0;
    height: 0;
    border-top: 10px solid #8b151b;
    border-right: 8px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 8px solid transparent
}

.utility-links-global-nav .selected-menu:hover,.utility-links-global-nav .selected-menu:focus {
    text-decoration: none
}

.utility-links-global-nav .selected-menu a {
    top: 5px;
    position: relative
}

.utility-links-global-nav a {
    text-decoration: none
}

.mobi-nav-wrapper .red-link-section.level1::after {
    background-color:  #19503e !important
}

.mobi-nav-wrapper .red-link-section>a,.mobi-nav-wrapper .red-link-section span {
    color:  #19503e !important
}

.mobi-nav-wrapper .pink-link-section.level1::after {
    background-color: #da9089 !important
}

.mobi-nav-wrapper .pink-link-section>a,.mobi-nav-wrapper .pink-link-section span {
    color: #da9089 !important
}

.mobi-nav-wrapper .green-link-section.level1::after {
    background-color: #969f6e !important
}

.mobi-nav-wrapper .green-link-section>a,.mobi-nav-wrapper .green-link-section span {
    color: #969f6e !important
}

.mobi-nav-wrapper .yellow-link-section.level1::after {
    background-color: #d4ae69 !important
}

.mobi-nav-wrapper .yellow-link-section>a,.mobi-nav-wrapper .yellow-link-section span {
    color: #d4ae69 !important
}

.mobi-nav-wrapper .green-link-section {
    background-color: #fff !important
}

.mobi-nav-wrapper .red-link-section {
    background-color: #fff !important
}

.banner-component {
    margin-bottom: 45px;
    float: left;
    width: 100%
}

@media screen and (max-width: 1020px) {
    .banner-component {
        margin-bottom:22px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component {
        margin-bottom:22px
    }
}

.banner-wrapper-slider {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 650px;
    z-index: -1
}

.banner-wrapper-slider:after {
    background: rgba(0,0,0,.5);
    background: linear-gradient(to bottom,rgba(0,0,0,.5) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#000000',GradientType=0);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.banner-wrapper-slider .banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 600px;
    max-height: none;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

@media screen and (max-width: 1020px) {
    .banner-wrapper-slider {
        min-height:unset !important;
        height: inherit !important;
        position: relative
    }

    .banner-wrapper-slider:after {
        display: none
    }
}

.banner-slider-content-wrapper {
    position: absolute;
    padding-top: 5px;
    float: left;
    width: 100%;
    padding-bottom: 12px;
    top: 50%;
    bottom: 50%
}

@media screen and (max-width: 1020px) {
    .banner-slider-content-wrapper {
        padding-top:11px;
        padding-bottom: 2px !important;
        position: absolute;
        top: 147px;
        padding-left: 5px;
        padding-right: 5px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper {
        top:122px
    }
}

.banner-slider-content-wrapper .banner-title {
    font-size: 3.5rem;
    line-height: 46px;
    color: #fff;
    padding-bottom: 10px
}

@media screen and (max-width: 1199px) {
    .banner-slider-content-wrapper .banner-title {
        font-size:3.2rem;
        line-height: 36px;
        padding-bottom: 6px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-title {
        font-family:"pfhandbookpro-bold",sans-serif;
        font-size: 1.6rem;
        line-height: 18px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-title {
        margin-top:10px
    }
}

.banner-slider-content-wrapper .banner-subtitle {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3.4rem;
    line-height: 39px;
    color: #fff;
    margin-bottom: 28px;
    padding-right: 45px
}

.banner-slider-content-wrapper .banner-subtitle a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3.4rem;
    line-height: 39px;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 0
}

@media screen and (max-width: 1200px) {
    .banner-slider-content-wrapper .banner-subtitle a {
        font-size:3rem;
        line-height: 34px
    }
}

@media screen and (max-width: 1020px) {
    .banner-slider-content-wrapper .banner-subtitle a {
        font-size:2.4rem;
        line-height: 27px;
        margin-bottom: 4px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-subtitle a {
        font-size:2.8rem;
        line-height: 31px
    }
}

.banner-slider-content-wrapper .banner-subtitle a:hover,.banner-slider-content-wrapper .banner-subtitle a:active,.banner-slider-content-wrapper .banner-subtitle a:focus {
    border-bottom: 1px solid #fff
}

@media screen and (max-width: 1200px) {
    .banner-slider-content-wrapper .banner-subtitle {
        font-size:3rem;
        line-height: 34px;
        padding-right: 0
    }
}

@media screen and (max-width: 1020px) {
    .banner-slider-content-wrapper .banner-subtitle {
        font-size:2.4rem;
        line-height: 27px;
        margin-bottom: 4px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-subtitle {
        font-size:2.8rem;
        line-height: 31px
    }
}

.banner-slider-content-wrapper .banner-category-tag {
    display: inline-block;
    padding: 4px 11px 6px 11px;
    background-color:  #19503e;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px
}

.banner-slider-content-wrapper .banner-category-tag.pink {
    background-color: #da9089
}

.banner-slider-content-wrapper .banner-category-tag.red {
    background-color:  #19503e
}

.banner-slider-content-wrapper .banner-category-tag.green {
    background-color: #969f6e
}

.banner-slider-content-wrapper .banner-category-tag.yellow {
    background-color: #d4ae69
}

.banner-slider-content-wrapper .banner-category-tag a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 1px solid #fff
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-category-tag {
        padding:0 6px 6px 6px
    }

    .banner-slider-content-wrapper .banner-category-tag a {
        font-family: "pfhandbookpro-bold",sans-serif;
        font-size: 1.2rem;
        line-height: 14px
    }
}

.banner-slider-content-wrapper .banner-content {
    margin-bottom: 17px;
    padding-right: 45px
}

.banner-slider-content-wrapper .banner-content p {
    color: #fff
}

@media screen and (max-width: 1199px) {
    .banner-slider-content-wrapper .banner-content p {
        font-size:1.5rem;
        line-height: 17px
    }
}

@media screen and (max-width: 1200px) {
    .banner-slider-content-wrapper .banner-content {
        padding-right:30px
    }
}

.banner-slider-content-wrapper .banner-utility-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding-right: 65px
}

.banner-slider-content-wrapper .banner-utility-wrapper .home-banner-share .like-component .icon,.banner-slider-content-wrapper .banner-utility-wrapper .home-banner-share .like-component .count-wrapper {
    color: #fff
}

.banner-slider-content-wrapper .banner-utility-wrapper .home-banner-share .share-component .count-wrapper,.banner-slider-content-wrapper .banner-utility-wrapper .home-banner-share .share-component .icon {
    color: #fff
}

.banner-slider-content-wrapper .banner-utility-wrapper p {
    font-size: 1.9rem;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0
}

@media screen and (max-width: 1199px) {
    .banner-slider-content-wrapper .banner-utility-wrapper p {
        font-size:1.2rem;
        line-height: 17px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-slider-content-wrapper .banner-utility-wrapper .home-banner-share {
        display:none
    }
}

.category-cta {
    margin-top: 4px
}

.without-banner .dark-banner .banner-slider-content-wrapper * {
    color: #000 !important
}

.without-banner .dark-banner .banner-slider-content-wrapper .banner-category-tag a {
    color: #fff !important
}

.banner-content p {
    color: #fff
}

.dark-banner.banner-component {
    margin-bottom: 5px
}

.dark-banner .banner-slider-content-wrapper {
    padding-top: 70px;
    padding-bottom: 12px
}

.dark-banner .banner-slider-content-wrapper * {
    color: #fff !important
}

.dark-banner .banner-slider-content-wrapper .content-banner-share {
    background-color: #fff;
    display: inline-block;
    padding: 10px 7px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    left: 255px;
    width: 300px
}

.dark-banner .banner-slider-content-wrapper .content-banner-share * {
    color: #000 !important
}

.dark-banner .banner-slider-content-wrapper .content-banner-share .icon-downvote {
    color:  #19503e !important
}

.dark-banner .banner-slider-content-wrapper .content-banner-share .share-component {
    margin-left: 10px
}

@media screen and (max-width: 1200px) {
    .dark-banner .banner-slider-content-wrapper .content-banner-share {
        padding:13px 15px;
        bottom: 15px
    }
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-slider-content-wrapper .content-banner-share {
        padding:1px 11px 3px
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-slider-content-wrapper .content-banner-share {
        position:relative;
        margin-bottom: 40px;
        bottom: 0;
        left: 0
    }
}

.dark-banner .banner-slider-content-wrapper .banner-subtitle {
    font-family: "pfhandbookpro-light",sans-serif;
    letter-spacing: -.1px
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-slider-content-wrapper {
        padding-top:37px;
        padding-bottom: 12px
    }

    .dark-banner .banner-slider-content-wrapper .banner-category-tag {
        margin-bottom: 13px
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-slider-content-wrapper {
        top:147px
    }
}

.dark-banner .banner-wrapper-slider {
    min-height: 460px
}

.dark-banner .banner-wrapper-slider:after {
    background: #000;
    background: linear-gradient(to bottom,#000 0%,rgba(0,0,0,.2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#000000',GradientType=0);
    height: 100%
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-wrapper-slider {
        min-height:195px;
        height: inherit !important
    }

    .dark-banner .banner-wrapper-slider:after {
        display: none
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-wrapper-slider {
        min-height:245px;
        top: -10px
    }
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-wrapper-slider .banner-image {
        position:relative;
        top: 0%;
        left: 50%;
        width: 100%;
        min-height: auto;
        min-width: auto;
        -ms-transform: translate(-50%,0%);
        transform: translate(-50%,0%)
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-wrapper-slider .banner-image {
        position:absolute;
        top: 50%;
        left: 50%;
        width: auto;
        min-height: 100%;
        min-width: 100%;
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-wrapper-slider {
        position:absolute;
        top: 122px
    }
}

@media screen and (max-width: 1020px) and (min-width:768px) {
    .dark-banner .content-banner {
        margin-top:-70px;
        position: relative;
        display: inherit
    }
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-subtitle {
        font-family:"pfhandbookpro-bold",sans-serif !important;
        margin-bottom: 10px
    }
}

.dark-banner .banner-utility-wrapper {
    display: block;
    margin-bottom: 10px
}

@media screen and (max-width: 767.98px) {
    .dark-banner .banner-utility-wrapper {
        display:none
    }
}

.without-banner .top-navigation ul li a {
    color: #000
}

.without-banner .top-navigation ul li a:hover,.without-banner .top-navigation ul li a:focus {
    color: #000;
    border-bottom: 1px solid #000
}

.without-banner .top-navigation ul li::after {
    border-right-color: #000
}

.without-banner .breadcrumb-component {
    margin-top: 24px
}

.without-banner .breadcrumb {
    margin-bottom: 9px
}

.banner-component--v2 {
    margin-top: 0 !important;
    height: 100% !important
}

.banner-component--v2 .banner-content-wrapper {
    position: relative !important;
    float: left !important;
    width: 100% !important;
    padding-top: 19px;
    padding-bottom: 12px !important;
    top: 0 !important
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .banner-content-wrapper {
        padding-top:20px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .banner-content-wrapper {
        padding-top:12px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2 .banner-content-wrapper {
        margin-top:0
    }
}

.banner-component--v2 .banner-title {
    color: #000;
    font-size: 2.4rem;
    letter-spacing: -.44px;
    line-height: normal;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .banner-title {
        font-size:2rem;
        letter-spacing: -.37px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .banner-title {
        font-size:1.6rem;
        letter-spacing: -.3px
    }
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .banner-category-tag {
        padding:0 8px 6px 8px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .banner-category-tag {
        padding:0 6px 2px 6px;
        font-size: .8rem;
        letter-spacing: -.2px;
        margin-bottom: 0 !important
    }
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:1.2rem;
        letter-spacing: -.25px;
        line-height: normal
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:.8rem;
        line-height: normal
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:.9rem
    }
}

.banner-component--v2 .trending-widget-banner-wrapper {
    margin-top: 0
}

.banner-component--v2 .article {
    margin-bottom: 0
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .article {
        -ms-flex-direction:column;
        flex-direction: column;
        padding: 0 0 10px 0
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2 .article {
        margin-bottom:20px
    }
}

.banner-component--v2 .article-img {
    height: 259px
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .article-img {
        height:228px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .article-img {
        height:228px;
        width: 100%
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2 .article-img {
        height:140px
    }
}

.banner-component--v2 .article-desc h3 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3rem;
    line-height: 3.4rem
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .article-desc h3 {
        font-size:2.3rem;
        line-height: 2.9rem
    }
}

.banner-component--v2 .article-details {
    padding-left: 15px
}

.banner-component--v2 .article-updates {
    margin-top: 22px
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item {
    width: calc(50% - 15px);
    margin-bottom: 69px
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        margin-bottom:59px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        margin-bottom:44px
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        width:calc(50% - 8px)
    }
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
    padding: 10px 17px 10px 0
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
        padding:10px 17px 19px 0
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
        padding:8px 17px 6px 0
    }
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-desc {
    padding-top: 15px
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-desc h3 {
        font-size:1.2rem;
        line-height: 1.4rem
    }
}

.banner-component--v2__cta-wrapper p {
    font-size: 2.4rem;
    line-height: normal;
    margin-left: 29px;
    display: inline-block;
    max-width: 330px;
    margin-bottom: 0;
    vertical-align: bottom
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2__cta-wrapper p {
        font-size:2.1rem;
        margin-left: 28px
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2__cta-wrapper p {
        max-width:227px;
        font-size: 1.6rem
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2__cta-wrapper p {
        max-width:50%;
        margin-left: 10px;
        margin-top: 0;
        display: block
    }
}

@media screen and (max-width: 767.98px) {
    .banner-component--v2__cta-wrapper {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .banner-component--v2__cta-wrapper .big-cta {
        padding: 6px 39px 6px 10px !important;
        max-width: 132px;
        width: 100%
    }
}

.banner-component--v2 .big-cta {
    padding: 6px 59px 6px 10px
}

@media screen and (max-width: 1199.98px) {
    .banner-component--v2 .big-cta__small-text {
        font-size:1.2rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .big-cta__small-text {
        font-size:.9rem;
        line-height: 1.6rem
    }
}

.banner-component--v2 .big-cta__large-text {
    font-size: 2rem;
    line-height: 2rem
}

@media screen and (max-width: 1399px) {
    .banner-component--v2 .big-cta__large-text {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .big-cta__large-text {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.banner-component--v2 .big-cta:after {
    line-height: 2rem
}

@media screen and (max-width: 991.98px) {
    .banner-component--v2 .big-cta:after {
        line-height:1.6rem
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-slider .slick-track {
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-slider .slick-list {
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    display: table;
    content: '';
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    height: auto;
    -ms-flex: 1;
    flex: 1
}

.slick-slide img {
    margin: 0 auto
}

[dir="rtl"] .slick-slide {
    float: right
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto
}

[dir="rtl"] .slick-prev:before {
    content: '→'
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px
}

[dir="rtl"] .slick-next:before {
    content: '←'
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    box-shadow: 1px 6px 14px rgba(0,0,0,.2);
    background: #000;
    border-radius: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    background: #000;
    left: 3px;
    z-index: 1
}

@media screen and (max-width: 575.98px) {
    .slick-prev {
        top:57%;
        left: 180px
    }
}

.slick-prev:hover {
    background-color: #000;
    color: #000;
    opacity: 1
}

.slick-prev:hover:before {
    color:  #19503e;
    opacity: 1
}

.slick-prev:focus {
    background-color: #000;
    color: #000;
    opacity: 1
}

.slick-prev:focus:before {
    color:  #19503e;
    opacity: 1
}

.slick-prev:before {
    font-family: "slick";
    font-size: 20px;
    line-height: .2;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ' ‹'
}

.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    box-shadow: 1px 6px 14px rgba(0,0,0,.2);
    background: #000;
    border-radius: 100%;
    cursor: pointer;
    border: none;
    outline: none;
    background: #000;
    right: 3px
}

@media screen and (max-width: 575.98px) {
    .slick-next {
        right:65px;
        top: 57%
    }
}

.slick-next:hover {
    background-color: #000;
    color: #000;
    opacity: 1
}

.slick-next:hover:before {
    color: #fff;
    opacity: 1
}

.slick-next:focus {
    background-color: #000;
    color: #000;
    opacity: 1
}

.slick-next:focus:before {
    color: #000;
    opacity: 1
}

.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: .2;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: ' ›'
}

.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color:  #19503e !important;
    border: 0;
    outline: none;
    background: transparent
}

.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #f1f3f6 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color:  #19503e
}

.banner {
    width: 100%;
    display: block
}

.banner__wrapper {
    width: 100%;
    min-height: auto;
    z-index: -9999;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper {
        min-height:487px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper--v2 {
        min-height:calc(100vh - 94px);
        height: 80vh
    }
}

.banner__wrapper--v3 {
    height: 450px;
    min-height: auto
}

@media screen and (max-width: 991.98px) {
    .banner__wrapper--v3 {
        height:262px
    }
}

.banner__wrapper--v10 {
    height: 400px;
    min-height: auto
}

@media screen and (max-width: 991.98px) {
    .banner__wrapper--v10 {
        height:262px
    }
}

.banner__wrapper--v9 {
    min-height: 262px
}

@media screen and (max-width: 991.98px) {
    .banner__wrapper--v9 {
        height:262px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper--v9 {
        height:0;
        min-height: 0
    }
}

.banner__wrapper--v6 {
    min-height: 375px;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -ms-flex: 1;
    flex: 1;
    height: 100%;
    padding-top: 124px;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width: 991.98px) {
    .banner__wrapper--v6 {
        padding-top:48px;
        min-height: auto
    }
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper--v6 {
        padding-top:0
    }
}

.banner__wrapper--iframe {
    max-height: 600px;
    -ms-overflow-style: none
}

.banner__wrapper--iframe::-webkit-scrollbar {
    display: none
}

.banner__wrapper--iframe iframe {
    width: 100%;
    min-height: 600px;
    z-index: -9999;
    border: none
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper--iframe iframe {
        min-height:487px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__wrapper--iframe {
        max-height:487px
    }
}

.banner__content {
    padding-left: 46px;
    display: block
}

@media screen and (max-width: 991.98px) {
    .banner__content {
        padding:0 15px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__content {
        padding:0
    }
}

.banner__content .button-primary {
    min-width: 220px;
    margin-top: 0;
    text-align: center;
    text-transform: capitalize;
    padding: 10px 35px 10px 10px
}

@media screen and (max-width: 991.98px) {
    .banner__content .button-primary {
        margin:40px 0 128px 0
    }
}

@media screen and (max-width: 767.98px) {
    .banner__content .button-primary {
        width:100%;
        margin: 24px 0
    }
}

.banner__content--v2 {
    padding-top: 196px;
    padding-bottom: 100px;
    position: relative
}

.banner__content--v2 .button-primary {
    margin: 0;
    min-width: 184px
}

@media screen and (max-width: 767.98px) {
    .banner__content--v2 .button-primary {
        width:100%;
        position: absolute;
        bottom: 24px;
        left: 0
    }
}

@media screen and (max-width: 1199.98px) {
    .banner__content--v2 {
        padding-left:15px;
        padding-right: 15px
    }
}

@media screen and (max-width: 991.98px) {
    .banner__content--v2 {
        padding-top:126px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__content--v2 {
        padding:40px 0 0 0;
        height: 76.5vh
    }
}

.banner__content--v3 {
    padding-top: 185px;
    padding-left: 0
}

.banner__content--v3 .button-secondary {
    width: 230px;
    padding: 5px 14px;
    font-size: 2rem;
    margin: 15px 0 0 0
}

.banner__content--v3 .button-secondary:hover {
    padding: 5px 14px;
    font-size: 2rem
}

@media screen and (max-width: 991.98px) {
    .banner__content--v3 {
        padding-top:15px
    }
}

.banner__content--v10 {
    padding-top: 145px;
    padding-left: 0
}

.banner__content--v10 .button-secondary {
    width: 230px;
    padding: 5px 14px;
    font-size: 2rem;
    margin: 15px 0 0 0
}

.banner__content--v10 .button-secondary:hover {
    padding: 5px 14px;
    font-size: 2rem
}

@media screen and (max-width: 991.98px) {
    .banner__content--v10 {
        padding-top:24px
    }
}

.banner__content--v6 {
    width: 100%;
    max-width: 1400px;
    padding-right: 48px;
    padding-left: 48px;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-right: auto;
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

@media screen and (max-width: 767.98px) {
    .banner__content--v6 {
        padding-bottom:32px;
        padding-top: 32px;
        padding-left: 15px;
        padding-right: 0;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.banner__content--v6 h2 {
    color: #fff
}

.banner__content--v6 h2 span {
    color: #000 !important
}

.banner__content--v6 p {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #fff;
    margin-top: 10px
}

.banner__content--v6 p span {
    color: #000 !important
}

.banner__label {
    padding: 18px 8px;
    text-transform: uppercase;
    color: #fff;
    font-weight:700;
}

.banner__label--v3 {
    text-transform: none;
    display: block;
    padding: 0
}

@media screen and (max-width: 991.98px) {
    .banner__label--v3 {
        font-size:1.4rem;
        line-height: normal
    }
}

@media screen and (max-width: 767.98px) {
    .banner__label--v3 {
        font-size:1.8rem
    }
}

.banner__title {
    padding-top: 246px;
    color: #fff;
    font-family: "pfhandbookpro-light",sans-serif;
    letter-spacing: -1.2px;
    font-size: 9rem;
    line-height: 7.2rem
}

@media screen and (max-width: 991.98px) {
    .banner__title {
        padding-top:126px
    }
}

@media screen and (max-width: 767.98px) {
    .banner__title {
        padding-top:207px;
        font-size: 6.4rem;
        line-height: 5.6rem;
        letter-spacing: normal;
        margin-top: 0
    }
}

.banner__title--bold {
    padding: 8px 0 40px 0;
    font-family: "pfhandbookpro-bold",sans-serif;
    width: 65%;
    line-height: 82px
}

@media screen and (max-width: 1199.98px) {
    .banner__title--bold {
        width:75%
    }
}

@media screen and (max-width: 991.98px) {
    .banner__title--bold {
        width:100%
    }
}

@media screen and (max-width: 767.98px) {
    .banner__title--bold {
        font-size:6.4rem;
        line-height: 5.6rem;
        letter-spacing: normal
    }
}

.banner__title--v3 {
    font-size: 3rem;
    line-height: 1.1;
    padding: 0;
    width: 444px;
    letter-spacing: 1.2px
}

@media screen and (max-width: 991.98px) {
    .banner__title--v3 {
        width:365px;
        margin-top: 14px;
        font-size: 2.8rem;
        line-height: 2.8rem
    }
}

@media screen and (max-width: 767.98px) {
    .banner__title--v3 {
        width:290px;
        margin-top: 22px;
        font-size: 1.9rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-weight: bold;
        line-height: 1.1
    }
}

.banner__title--v10 {
    font-size: 22px;
    line-height: 1.1;
    padding: 0;
    width: 444px;
    letter-spacing: 1.5px
}

@media screen and (max-width: 991.98px) {
    .banner__title--v10 {
        width:365px;
        margin-top: 14px;
        font-size: 2.8rem;
        line-height: 2.8rem
    }
}

@media screen and (max-width: 767.98px) {
    .banner__title--v10 {
        width:290px;
        margin-top: 22px;
        font-size: 1.9rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-weight: bold;
        line-height: 1.1
    }
}

.banner {
    position: relative
}

.banner__intro-tile-wrapper-bg {
    background-color: #f1f3f6
}

@media(max-width: 1020px) {
    .banner__intro-tile-wrapper-bg {
        background-color:#fff
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-wrapper-bg {
        background-color:#fff
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-wrapper {
        padding-bottom:10px
    }
}

.banner__intro-tile-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: 100vw;
    background: #f1f3f6;
    z-index: -1
}

@media(max-width: 1020px) {
    .banner__intro-tile-wrapper::before {
        background:none
    }
}

.banner__intro-tile-wrapper--v2 {
    padding-bottom: 0
}

.banner__intro-tile-container {
    background: #fff;
    padding: 48px 0;
    margin-top: -88px;
    border-bottom: 1px solid #e4e4e4;
}

@media(max-width: 1020px) {
    .banner__intro-tile-container {
        margin-top:0
    }
}

@media(max-width: 767px) {
    .banner__intro-tile-container {
        padding-bottom:0;
        padding-top: 32px
    }
}

.banner__intro-tile-title {
    color: #000;
    font-size: 3.1rem;
    line-height: 4.8rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

@media(max-width: 767px) {
    .banner__intro-tile-title {
        font-size:3.6rem;
        line-height: 4rem;
        text-align: left
    }
}

.banner__intro-tile-desc {
    color: #6c7174;
    text-align: center
}

@media(max-width: 767px) {
    .banner__intro-tile-desc {
        text-align:left
    }
}

.blur-background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1
}

.bg-text.card {
    background: rgba(0,0,0,.57);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
    padding: 38px;
    margin: 25px;
    text-align: center;
    border-radius: 6px
}

@media screen and (max-width: 991.98px) {
    .bg-text.card {
        padding:38px;
        margin: 5px
    }
}

@media screen and (max-width: 991.98px) {
    .bg-text.card {
        margin:15px;
        padding: 20px
    }
}

@media screen and (max-width: 767.98px) {
    .bg-text.card {
        padding:10px;
        margin: 10px
    }
}

@media screen and (max-width: 575.98px) {
    .bg-text.card {
        padding:10px;
        margin-right: 0;
        margin-bottom: 10px;
        margin-left: 0;
        margin-top: 10px
    }
}

.bg-text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 27px;
    color: #fff
}

@media screen and (max-width: 575.98px) {
    .bg-text p {
        font-size:16px;
        float: left
    }
}

.slick-slide img {
    width: 64px;
    height: 64px
}

@media screen and (max-width: 767.98px) {
    .slick-slide img {
        width:38px;
        height: 38px
    }
}

@media screen and (max-width: 575.98px) {
    .slick-slide img {
        width:50px;
        height: 50px;
        float: left;
        margin-right: 5px
    }
}

.bg-text .card-text {
    margin-top: 30px;
    color: #fff
}

@media screen and (max-width: 991.98) {
    .bg-text .card-text {
        margin-top:10px
    }
}

@media screen and (max-width: 767.98px) {
    .bg-text .card-text {
        font-size:14px;
        margin-top: 16px
    }
}

@media screen and (max-width: 575.98px) {
    .bg-text .card-text {
        margin-top:12px
    }
}

.bg-text-white {
    background-color: #fff;
    display: inline-block;
    font-weight: bold;
    position: relative;
    color:  #19503e;
    z-index: 2;
    padding: 12px 18px;
    margin-bottom: 0;
    border-radius: 0;
    border-left: 2px solid  #19503e;
    font-size: 14px;
    line-height: 14px
}

@media screen and (max-width: 575.98px) {
    .bg-text-white {
        font-size:12px
    }
}

.sliderBannerSlick ul.slick-dots li::before {
    display: none !important
}

.sliderBannerSlick .slick-dots {
    position: absolute;
    bottom: 14%;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    left: 98px
}

@media screen and (max-width: 1199.98px) {
    .sliderBannerSlick .slick-dots {
        bottom:3px;
        left: 3%
    }
}

@media screen and (max-width: 767.98px) {
    .sliderBannerSlick .slick-dots {
        bottom:6px;
        left: 3%
    }
}

@media screen and (max-width: 575.98px) {
    .sliderBannerSlick .slick-dots {
        position:absolute;
        bottom: 10px;
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        text-align: left;
        left: 2%;
        right: 50%;
        bottom: 30%
    }
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #fff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color:  #19503e !important
}

.slider-banner-wrapper {
    background: url("../images/content-banner-small.jpg"),linear-gradient(89.51deg,rgba(0,0,0,0) 2.23%,rgba(0,0,0,.618403) 60.47%,rgba(0,0,0,.731769) 85.21%,rgba(0,0,0,.8) 101.46%);
    background-repeat: no-repeat;
    background-size: cover;
    height: 541px
}

.slider-banner-wrapper:before {
    content: "";
    position: absolute;
    width: 1400px;
    height: 666px;
    left: 1400px;
    top: 666px;
    background: linear-gradient(359.36deg,rgba(255,255,255,0) .57%,rgba(255,255,255,.914712) 45.8%,#fff 50.02%);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

@media screen and (max-width: 991.98px) {
    .slider-banner-wrapper {
        height:auto
    }
}

@media screen and (max-width: 767.98px) {
    .slider-banner-wrapper {
        height:390px
    }
}

@media screen and (max-width: 575.98px) {
    .slider-banner-wrapper {
        height:320px
    }
}

.slider-banner-title {
    margin-top: 8px;
    font-size: 32px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: 400;
    line-height: 37px;
    color: #fff;
    margin-bottom: 16px
}

@media screen and (max-width: 991.98px) {
    .slider-banner-title {
        margin-top:10px;
        font-size: 2.5rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-weight: normal;
        line-height: 1.2
    }
}

@media screen and (max-width: 767.98px) {
    .slider-banner-title {
        font-size:20px;
        line-height: 23px;
        margin-top: 8px;
        margin-bottom: 9px
    }
}

@media screen and (max-width: 575.98px) {
    .slider-banner-title {
        font-size:19px;
        line-height: 27px;
        margin-top: 8px;
        margin-bottom: 9px
    }
}

.slider-banner-wrapper .banner-content p {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 25px
}

@media screen and (max-width: 767.98px) {
    .slider-banner-wrapper .banner-content p {
        font-size:16px;
        margin-bottom: 10px;
        line-height: 20px
    }
}

@media screen and (max-width: 575.98px) {
    .slider-banner-wrapper .banner-content p {
        font-weight:500;
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 16px
    }
}

.slider-btn {
    background:  #19503e;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 70px 15px 70px;
    position: relative;
    text-align: center;
    line-height: 27px;
    border-radius: 7px
}

@media screen and (max-width: 1199.98px) {
    .slider-btn {
        min-width:30%
    }
}

@media screen and (max-width: 991.98px) {
    .slider-btn {
        font-family:"pfhandbookpro-medium",sans-serif;
        font-size: 20px;
        font-weight: 400;
        padding: 5px 45px 5px 15px;
        position: relative;
        min-width: 50%
    }
}

@media screen and (max-width: 767.98px) {
    .slider-btn {
        font-size:16px
    }
}

@media screen and (max-width: 575.98px) {
    .slider-btn {
        font-size:14px;
        min-width: 150px
    }
}

.slider-btn:hover,.slider-btn:active,.slider-btn:focus {
    color: #fff
}

@media screen and (max-width: 1199.98px) {
    .card-columns {
        column-count:4
    }
}

@media screen and (max-width: 575.98px) {
    .card-columns {
        column-count:1
    }
}

.slider-banner-content {
    padding-top: 190px;
    padding-left: 0;
    column-gap: 45px
}

@media screen and (max-width: 1199.98px) {
    .slider-banner-content {
        padding-top:20px;
        padding-left: 0;
        column-gap: 45px
    }
}

@media screen and (max-width: 991.98px) {
    .slider-banner-content {
        padding-top:20px;
        padding-left: 0;
        column-gap: 45px
    }
}

@media screen and (max-width: 767.98px) {
    .slider-banner-content {
        padding-top:20px;
        column-gap: 5px
    }
}

@media screen and (max-width: 575.98px) {
    .slider-banner-content {
        padding-top:20px
    }
}

.slider-pillar-find-adviser {
    box-sizing: border-box;
    position: absolute;
    left: 26%;
    bottom: 25%;
    background: #fff;
    border: 2px solid  #19503e;
    border-radius: 6.912px;
    height: 88px;
    width: 650px
}

.slider-pillar-find-adviser h3 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 23px;
    color:  #19503e;
    text-align: center;
    margin-top: 7px;
    margin-bottom: 5px
}

.slider-pillar-find-adviser .search-inputbox-slider {
    background: #fff;
    border: .72px solid #cdcece;
    box-shadow: 0 2px 12px -2px rgba(0,0,0,.105927);
    border-radius: 4.608px
}

@media screen and (max-width: 1199.98px) {
    .slider-pillar-find-adviser {
        display:none
    }
}

@media screen and (max-width: 767.98px) {
    .slider-pillar-find-adviser {
        display:none
    }
}

@media screen and (max-width: 575.98px) {
    .slider-pillar-find-adviser {
        display:none
    }
}

.slider-pillar-find-adviser .search-inputbox-slider {
    margin: 10px 20px
}

.search-inputbox-slider .btn.act-btn {
    font-size: 16px
}

@media screen and (max-width: 767.98px) {
    .overflow-slider-cards {
        padding-right:10px
    }
}

@media screen and (max-width: 575.98px) {
    .overflow-slider-cards {
        overflow-x:scroll;
        overflow-y: hidden;
        white-space: nowrap
    }

    .overflow-slider-cards .card {
        display: inline-block
    }
}

@media screen and (max-width: 575.98px) {
    .overflow-slider-cards .card-body {
        padding:5px
    }
}

.to-get-help-to-started .helpus-right {
    padding: 45px !important
}

@media screen and (max-width: 575.98px) {
    .to-get-help-to-started .helpus-right {
        padding:22px
    }
}

.to-get-help-to-started .form-group {
    margin-bottom: 25px !important
}

.help-us-wrapper {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-top: 17.875rem
}

@media screen and (max-width: 1020px) {
    .help-us-wrapper {
        padding-bottom:2.875rem;
        padding-top: 3.875rem
    }
}

@media screen and (max-width: 767.98px) {
    .help-us-wrapper {
        padding-top:57px;
        padding-bottom: 117px
    }
}

@media screen and (max-width: 575.98px) {
    .help-us-wrapper {
        padding-top:0;
        padding-bottom: 60px
    }
}

.help-us-wrapper .helpus-box {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    margin: 1.875rem auto;
    max-width: 656px;
    width: 100%;
    background: #fff;
    box-shadow: 11px 10px 39px rgba(0,0,0,.08);
    border-radius: 16px;
    border: none
}

.help-us-wrapper .helpus-right {
    padding: 14px 45px 45px 45px
}

@media screen and (max-width: 575.98px) {
    .help-us-wrapper .helpus-right {
        padding:22px !important
    }
}

.help-us-wrapper .helpus-right-wrap {
    max-width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

.help-us-wrapper .helpus-right-wrap h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 7px;
    line-height: 27px;
    text-align: center
}

@media screen and (max-width: 575.98px) {
    .help-us-wrapper .helpus-right-wrap h1 {
        font-size:20px;
        font-weight: 700;
        text-align: left;
        line-height: 22px
    }
}

.help-us-wrapper .helpus-right-wrap .helpus-subtitle {
    color: #4c4c4c;
    margin-bottom: 40px;
    font-size: 12px;
    line-height: 14px;
    text-align: center
}

@media screen and (max-width: 575.98px) {
    .help-us-wrapper .helpus-right-wrap .helpus-subtitle {
        font-weight:400;
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 24px;
        text-align: left
    }

    .help-us-wrapper .helpus-right-wrap .helpus-subtitle .break-title {
        display: none
    }
}

.help-us-wrapper .form-group {
    margin-bottom: 1.25rem
}

.help-us-wrapper .input-group-text {
    font-size: 14px
}

.help-us-wrapper .form-control {
    box-shadow: none;
    color: #333;
    padding: .54688rem .875rem;
    font-size: 14px;
    height: 40px;
    line-height: 1.6;
    font-weight: 400;
    background: #fff;
    border: 1px solid #cdcece;
    border-radius: 3px
}

.help-us-wrapper .pass-group {
    position: relative
}

.help-us-wrapper .mandatory-text {
    font-style: italic;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #000
}

.help-us-wrapper .custom-control {
    margin-top: 7px
}

.help-us-wrapper .custom-control-label {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #000
}

.help-us-wrapper .custom-control-label a {
    font-size: 14px
}

.help-us-wrapper .custom-control-label::before {
    border-color: #cdcece
}

.help-us-wrapper .input-group-text {
    background-color:  #19503e;
    color: #fff;
    padding: 8px 20px
}

.help-us-wrapper .custom-control-input:checked~.custom-control-label::before {
    color:  #19503e;
    border-color: #cdcece;
    background-color:  #19503e
}

.help-us-wrapper .toggle-input-text {
    position: absolute;
    right: 17px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    text-align: right;
    color:  #19503e
}

.help-us-wrapper .help-us-button {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    background:  #19503e;
    border-radius: 3px;
    padding: 12px 46px;
    border-color:  #19503e
}

.thankyou-wrapper .helpus-right-wrap h3 {
    font-size: 24px;
    text-align: center;
    line-height: 27px;
    margin-bottom: 64px
}

@media screen and (max-width: 575.98px) {
    .thankyou-wrapper .helpus-right-wrap h3 {
        font-size:20px;
        line-height: 23px
    }
}

.thankyou-wrapper-new .helpus-right,.thankyou-wrapper-one .helpus-right {
    padding: 50px 45px
}

.thankyou-wrapper-new .helpus-right-wrap h3,.thankyou-wrapper-one .helpus-right-wrap h3 {
    font-size: 32px;
    text-align: center;
    line-height: 36px;
    margin-bottom: 20px
}

@media screen and (max-width: 575.98px) {
    .thankyou-wrapper-new .helpus-right-wrap h3,.thankyou-wrapper-one .helpus-right-wrap h3 {
        font-size:20px;
        line-height: 23px
    }
}

.thankyou-wrapper-new .helpus-right-wrap p,.thankyou-wrapper-one .helpus-right-wrap p {
    color: #000;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 56px
}

@media screen and (max-width: 575.98px) {
    .thankyou-wrapper-new .helpus-right-wrap p,.thankyou-wrapper-one .helpus-right-wrap p {
        font-size:16px;
        line-height: 20px
    }
}

.thankyou-wrapper-new .helpus-right-wrap .custom-control-label::before,.thankyou-wrapper-one .helpus-right-wrap .custom-control-label::before {
    top: 5px
}

.promotion-text {
    width: 100%
}

.promotion-text__container {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    margin-bottom: 8px;
    padding: 0;
    height: 190px;
    border-radius: 4px
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .promotion-text__container {
        width:calc(50% - 10px);
        float: left;
        margin-right: 20px
    }

    .promotion-text__container:nth-child(even) {
        margin-right: 0
    }
}

@media screen and (max-width: 767px) {
    .promotion-text__container {
        max-width:330px;
        margin-left: auto;
        margin-right: auto;
        height: 126px;
        font-size: 16px;
        line-height: normal
    }
}

.promotion-text__cta-container {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 12px 0;
    border-radius: 4px;
    max-width: 858px;
    margin: 0 auto
}

@media(max-width: 1200px) {
    .promotion-text__cta-container {
        max-width:736px
    }
}

@media(max-width: 1020px) {
    .promotion-text__cta-container {
        max-width:744px
    }
}

.promotion-text__cta-container .promotion-text__cta {
    margin: 0
}

@media(max-width: 767px) {
    .promotion-text__cta-container .promotion-text__cta {
        padding-left:22px
    }
}

@media(max-width: 767px) {
    .promotion-text__cta-container .promotion-text__cta a {
        font-size:1.6rem
    }
}

.promotion-text__cta-container .promotion-text__cta a:hover,.promotion-text__cta-container .promotion-text__cta a:active,.promotion-text__cta-container .promotion-text__cta a:focus {
    border: none !important;
    text-decoration: none !important;
    color: #fff !important
}

.promotion-text__cta-container .promotion-text__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .promotion-text__cta-container .promotion-text__title {
        -ms-flex-preferred-size:45%;
        flex-basis: 45%;
        -ms-flex-positive: 0;
        flex-grow: 0
    }
}

.promotion-text__cta-container .promotion-text__title span {
    font-size: 3rem;
    color: #fff
}

@media(max-width: 1200px) {
    .promotion-text__cta-container .promotion-text__title span {
        font-size:2.6rem
    }
}

@media(max-width: 767px) {
    .promotion-text__cta-container .promotion-text__title span {
        font-size:1.8rem
    }
}

.promotion-text__wrapper {
    padding: 32px 24px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-radius: 4px;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width: 767px) {
    .promotion-text__wrapper {
        padding-top:10px;
        padding-bottom: 10px
    }
}

.promotion-text__cta-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-justify-content: space-evenly !important
}

@media(max-width: 767px) {
    .promotion-text__cta-wrapper {
        padding-right:20px;
        padding-left: 20px
    }
}

.promotion-text__media img {
    margin: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
    width: 100%;
    height: 190px;
    z-index: -1;
    border-radius: 4px
}

@media(max-width: 767px) {
    .promotion-text__media img {
        height:126px;
        object-fit: unset
    }
}

.promotion-text__title span {
    font-size: 3rem;
    line-height: normal;
    color: #fff
}

@media(max-width: 1200px) {
    .promotion-text__title span {
        font-size:2.4rem
    }
}

@media(max-width: 767px) {
    .promotion-text__title span {
        font-size:1.8rem
    }
}

.promotion-text__cta {
    margin-top: 15px
}

@media(max-width: 767px) {
    .promotion-text__cta {
        margin-top:20px
    }
}

.promotion-text__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.promotion-text__link:hover,.promotion-text__link:active,.promotion-text__link:visited {
    border: none;
    text-decoration: none
}

.two-columns .promotion-text {
    margin-bottom: 25px
}

.article-link {
    border-radius: 4px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.13);
    margin-bottom: 55px;
    clear: both
}

.article-link .article-link-wrapper {
    padding: 20px 20px 20px 20px
}

.article-link .article-link-wrapper .article-link-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    color:  #19503e;
    text-transform: uppercase;
    letter-spacing: -.41px
}

@media screen and (max-width: 767px) {
    .article-link .article-link-wrapper .article-link-detail-wrapper {
        margin-top:15px
    }
}

.article-link .article-link-wrapper .article-question {
    padding-bottom: 18px;
    padding-top: 28px;
    border-bottom: 1px solid;
    border-color: rgba(151,151,151,.2);
    display: block
}

@media screen and (max-width: 767px) {
    .article-link .article-link-wrapper .article-question {
        padding-bottom:4px;
        padding-top: 14px
    }
}

.article-link .article-link-wrapper .article-question p {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 20px;
    line-height: 25px;
    color: #000
}

.article-link .article-link-wrapper .article-question:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.column-grid {
    display: -ms-flexbox;
    display: flex
}

.category.pink .category-cta {
    border-color: #da9089;
    color: #da9089
}

.category.pink .category-cta:hover,.category.pink .category-cta:focus,.category.pink .category-cta:active {
    background-color: #da9089;
    color: #fff;
    text-decoration: none;
    border-left: 9px solid #da9089
}

.category.pink .article {
    border-color: #da9089
}

.category.pink .tag {
    background: #da9089
}

.category.yellow .category-cta {
    border-color: #d4ae69;
    color: #d4ae69
}

.category.yellow .category-cta:hover,.category.yellow .category-cta:focus,.category.yellow .category-cta:active {
    background-color: #d4ae69;
    color: #fff;
    text-decoration: none;
    border-left: 9px solid #d4ae69
}

.category.yellow .article {
    border-color: #d4ae69
}

.category.yellow .tag {
    background: #d4ae69
}

.category.green .category-cta {
    border-color: #a3ab80;
    color: #a3ab80
}

.category.green .category-cta:hover,.category.green .category-cta:focus,.category.green .category-cta:active {
    background-color: #a3ab80;
    color: #fff;
    text-decoration: none;
    border-left: 9px solid #a3ab80
}

.category.green .article {
    border-color: #a3ab80
}

.category.green .tag {
    background: #a3ab80
}

.article-title-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #000 !important;
    border: none !important
}

@media screen and (max-width: 1020px) {
    .article-title-link {
        pointer-events:unset;
        cursor: pointer
    }

    .article-title-link:hover {
        color: #000;
        border-bottom: none
    }
}

.article {
    margin-bottom: 45px;
    border-left: solid 4px  #19503e;
    box-shadow: 1px -2px 8px rgba(0,0,0,.08);
    border-radius: 4px;
    width: 100%;
    position: relative
}

.article-cta {
    display: none;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 11;
    width: 100%;
    cursor: pointer;
    border: 0 none !important
}

.article-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-radius: 0 4px 0 0
}

@media screen and (max-width: 1020px) {
    .article-img {
        height:130px;
        width: 130px
    }
}

@media screen and (max-width: 1020px) {
    .article-img picture {
        position:relative;
        top: auto;
        left: auto;
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
        max-width: 100%
    }
}

.article-img img {
    width: auto;
    border-radius: 0 4px 0 0;
    margin-bottom: 0;
    min-height: 180px;
    max-width: inherit
}

@media screen and (max-width: 1020px) {
    .article-img img {
        min-height:auto
    }
}

.article-details {
    padding: 12px 15px 13px 30px
}

.article-details .tag {
    display: none
}

@media screen and (max-width: 1200px) {
    .article-details {
        padding:12px 15px 13px 15px
    }
}

.article-updates {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.article-desc h3,.article-desc .article-title-link {
    font-size: 2rem;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 25px;
    margin-bottom: 20px
}

.article-desc .read-more {
    margin-bottom: 20px
}

.article-desc .read-more:hover {
    text-decoration: none;
    color: #fff !important
}

.article-posted {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 20px
}

@media screen and (max-width: 1200px) {
    .article-posted {
        font-size:1.2rem
    }
}

.no-image .tag {
    position: relative
}

.tag {
    background:  #19503e;
    color: #fff;
    position: absolute;
    bottom: 0;
    font-size: 1.4rem;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 20px;
    padding: 5px 30px;
    left: 0
}

.tag.tag-hide {
    opacity: 0
}

@media screen and (max-width: 1200px) {
    .tag {
        padding:5px 15px
    }
}

@media screen and (max-width: 1020px) {
    .column-grid .article {
        position:relative
    }

    .column-grid .article-updates {
        position: absolute;
        bottom: 10px
    }

    .column-grid .article-updates .like-component .increment .icon {
        font-size: 1.5rem
    }

    .column-grid .article-updates .like-component .count-wrapper {
        font-size: 1rem;
        margin-left: 10px
    }

    .column-grid .article-updates .like-shares .share-component {
        margin-left: 29px
    }

    .column-grid .article-updates .share-component .share-wrapper .icon {
        font-size: 1.5rem
    }

    .column-grid .article-updates .share-component .count-wrapper {
        font-size: 1rem;
        margin-left: 4px
    }

    .article {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row-reverse;
        flex-flow: row-reverse;
        padding: 10px;
        margin-bottom: 40px
    }

    .article-details {
        padding: 0 10px 0 0;
        -ms-flex: 1;
        flex: 1
    }

    .article-details .tag {
        display: inline-block;
        position: static;
        font-size: 1.2rem;
        margin-left: -10px;
        padding: 1px 6px;
        margin-bottom: 5px
    }

    .article-updates {
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .article-posted {
        font-size: 1.3rem;
        line-height: 15px
    }

    .article-desc h3,.article-desc .article-title-link {
        font-size: 1.6rem;
        line-height: 19px;
        margin-bottom: 7px
    }

    .article-desc .read-more {
        display: none
    }

    .article-img img {
        width: auto;
        border-radius: 4px
    }

    .article-img .tag {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .column-grid .article-img {
        width:120px;
        height: 120px
    }

    .like-shares {
        display: none
    }

    .article {
        margin-bottom: 20px
    }

    .article-desc h3 {
        font-size: 1.4rem;
        line-height: 17px
    }

    .article-desc .article-title-link {
        font-size: 1.6rem;
        line-height: 19px
    }

    .article-posted {
        font-size: 1.2rem;
        line-height: 14px
    }
}

.category .column-grid .article {
    min-height: 360px
}

@media screen and (max-width: 1020px) {
    .category .column-grid .article {
        min-height:unset
    }
}

@media screen and (max-width: 767px) {
    .article-cta {
        display:block
    }
}

.quote-box-content {
    font-size: 18px;
    line-height: 22px;
    position: relative;
    text-align: center;
    padding: 18px;
    color: #cc1f35;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px
}

.quote-box-content .quote-box-left {
    display: block;
    position: absolute;
    border-top: 3px solid #8a0a1c;
    border-left: 3px solid #8a0a1c;
    border-bottom: 3px solid #8a0a1c;
    height: 100%;
    width: 10%;
    top: 0;
    left: 0
}

.quote-box-content .quote-box-right {
    display: block;
    position: absolute;
    border-top: 3px solid #8a0a1c;
    border-right: 3px solid #8a0a1c;
    border-bottom: 3px solid #8a0a1c;
    height: 100%;
    width: 10%;
    top: 0;
    right: 0
}

.author-component {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    border-radius: 3.4px;
    box-shadow: 0 2px 7px 0 rgba(0,0,0,.13);
    background-color: #fff;
    padding: 6px
}

.author-component.top-margin {
    margin-top: 75px
}

.author-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 24px
}

.author-item:last-child {
    margin-bottom: 0
}

.author-image img {
    max-width: 100px;
    margin-bottom: 0
}

.author-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 23px;
    color: #000
}

.author-designation {
    font-size: 1.4rem;
    line-height: 20px;
    color: #000
}

.author-content-wrapper {
    padding-left: 20px;
    padding-right: 60px
}

@media screen and (max-width: 1200px) {
    .author-content-wrapper {
        padding-right:30px
    }
}

.author-content {
    font-size: 1.2rem;
    line-height: 18px;
    color: #000;
    display: none
}

.author-click {
    cursor: pointer;
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    border-radius: 100%;
    display: block;
    position: absolute;
    right: 37px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.author-click:after {
    content: "+";
    position: absolute;
    top: -5px;
    left: 1.5px;
    font-size: 2.1rem
}

@media screen and (max-width: 1200px) {
    .author-click:after {
        left:2px
    }
}

.author-click.active:after {
    content: "-";
    left: 3px
}

@media screen and (max-width: 1200px) {
    .author-click.active:after {
        left:4px
    }
}

.banner-component {
    margin-bottom: 45px;
    float: left;
    width: 100%
}

@media screen and (max-width: 1020px) {
    .banner-component {
        margin-bottom:22px
    }
}

@media screen and (max-width: 767px) {
    .banner-component {
        margin-bottom:22px
    }
}

.banner-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    min-height: 565px;
    z-index: -1
}

.banner-wrapper:after {
    background: rgba(0,0,0,.9);
    background: linear-gradient(to bottom,rgba(0,0,0,.9) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#000000',GradientType=0);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%
}

.banner-wrapper .banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

@media screen and (max-width: 1020px) {
    .banner-wrapper {
        min-height:unset !important;
        height: inherit !important;
        position: relative
    }

    .banner-wrapper:after {
        display: none
    }
}

.banner-content-wrapper {
    position: relative;
    padding-top: 41px;
    float: left;
    width: 100%;
    padding-bottom: 12px
}

@media screen and (max-width: 1020px) {
    .banner-content-wrapper {
        padding-top:11px;
        padding-bottom: 2px !important;
        position: absolute;
        top: 147px;
        padding-left: 5px;
        padding-right: 5px
    }
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper {
        top:122px
    }
}

.banner-content-wrapper .banner-title {
    font-size: 4rem;
    line-height: 46px;
    color: #fff;
    padding-bottom: 10px
}

@media screen and (max-width: 1199px) {
    .banner-content-wrapper .banner-title {
        font-size:3.2rem;
        line-height: 36px;
        padding-bottom: 6px
    }
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper .banner-title {
        font-family:"pfhandbookpro-bold",sans-serif;
        font-size: 1.6rem;
        line-height: 18px
    }
}

.banner-content-wrapper .banner-subtitle {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3.4rem;
    line-height: 39px;
    color: #fff;
    margin-bottom: 28px;
    padding-right: 45px
}

.banner-content-wrapper .banner-subtitle a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3.4rem;
    line-height: 39px;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 0
}

@media screen and (max-width: 1200px) {
    .banner-content-wrapper .banner-subtitle a {
        font-size:3rem;
        line-height: 34px
    }
}

@media screen and (max-width: 1020px) {
    .banner-content-wrapper .banner-subtitle a {
        font-size:2.4rem;
        line-height: 27px;
        margin-bottom: 4px
    }
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper .banner-subtitle a {
        font-size:2.8rem;
        line-height: 31px
    }
}

.banner-content-wrapper .banner-subtitle a:hover,.banner-content-wrapper .banner-subtitle a:active,.banner-content-wrapper .banner-subtitle a:focus {
    border-bottom: 1px solid #fff
}

@media screen and (max-width: 1200px) {
    .banner-content-wrapper .banner-subtitle {
        font-size:3rem;
        line-height: 34px;
        padding-right: 0
    }
}

@media screen and (max-width: 1020px) {
    .banner-content-wrapper .banner-subtitle {
        font-size:2.4rem;
        line-height: 27px;
        margin-bottom: 4px
    }
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper .banner-subtitle {
        font-size:2.8rem;
        line-height: 31px
    }
}

.banner-content-wrapper .banner-category-tag {
    display: inline-block;
    padding: 4px 11px 6px 11px;
    background-color:  #19503e;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px
}

.banner-content-wrapper .banner-category-tag.pink {
    background-color: #da9089
}

.banner-content-wrapper .banner-category-tag.red {
    background-color:  #19503e
}

.banner-content-wrapper .banner-category-tag.green {
    background-color: #969f6e
}

.banner-content-wrapper .banner-category-tag.yellow {
    background-color: #d4ae69
}

.banner-content-wrapper .banner-category-tag a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 1px solid #fff
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper .banner-category-tag {
        padding:0 6px 6px 6px
    }

    .banner-content-wrapper .banner-category-tag a {
        font-family: "pfhandbookpro-bold",sans-serif;
        font-size: 1.2rem;
        line-height: 14px
    }
}

.banner-content-wrapper .banner-content {
    margin-bottom: 17px;
    padding-right: 45px
}

.banner-content-wrapper .banner-content p {
    color: #fff
}

@media screen and (max-width: 1199px) {
    .banner-content-wrapper .banner-content p {
        font-size:1.5rem;
        line-height: 17px
    }
}

@media screen and (max-width: 1200px) {
    .banner-content-wrapper .banner-content {
        padding-right:30px
    }
}

.banner-content-wrapper .banner-utility-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding-right: 65px
}

.banner-content-wrapper .banner-utility-wrapper .home-banner-share .like-component .icon,.banner-content-wrapper .banner-utility-wrapper .home-banner-share .like-component .count-wrapper {
    color: #fff
}

.banner-content-wrapper .banner-utility-wrapper .home-banner-share .share-component .count-wrapper,.banner-content-wrapper .banner-utility-wrapper .home-banner-share .share-component .icon {
    color: #fff
}

.banner-content-wrapper .banner-utility-wrapper p {
    font-size: 1.9rem;
    line-height: 20px;
    color: #fff;
    margin-bottom: 0
}

@media screen and (max-width: 1199px) {
    .banner-content-wrapper .banner-utility-wrapper p {
        font-size:1.2rem;
        line-height: 17px
    }
}

@media screen and (max-width: 767px) {
    .banner-content-wrapper .banner-utility-wrapper .home-banner-share {
        display:none
    }
}

.category-cta {
    margin-top: 4px
}

.without-banner .dark-banner .banner-content-wrapper * {
    color: #000 !important
}

.without-banner .dark-banner .banner-content-wrapper .banner-category-tag a {
    color: #fff !important
}

.dark-banner.banner-component {
    margin-bottom: 5px
}

.dark-banner .banner-content-wrapper {
    padding-top: 70px;
    padding-bottom: 12px
}

.dark-banner .banner-content-wrapper * {
    color: #fff !important
}

.dark-banner .banner-content-wrapper .content-banner-share {
    background-color: #fff;
    display: inline-block;
    padding: 10px 7px;
    position: absolute;
    right: 15px;
    bottom: 15px;
    border-radius: 5px;
    left: 255px;
    width: 300px
}

.dark-banner .banner-content-wrapper .content-banner-share * {
    color: #000 !important
}

.dark-banner .banner-content-wrapper .content-banner-share .icon-downvote {
    color:  #19503e !important
}

.dark-banner .banner-content-wrapper .content-banner-share .share-component {
    margin-left: 10px
}

@media screen and (max-width: 1200px) {
    .dark-banner .banner-content-wrapper .content-banner-share {
        padding:13px 15px;
        bottom: 15px
    }
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-content-wrapper .content-banner-share {
        padding:1px 11px 3px
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-content-wrapper .content-banner-share {
        position:relative;
        margin-bottom: 40px;
        bottom: 0;
        left: 0
    }
}

.dark-banner .banner-content-wrapper .banner-subtitle {
    font-family: "pfhandbookpro-light",sans-serif;
    letter-spacing: -.1px
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-content-wrapper {
        padding-top:37px;
        padding-bottom: 12px
    }

    .dark-banner .banner-content-wrapper .banner-category-tag {
        margin-bottom: 13px
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-content-wrapper {
        top:147px
    }
}

.dark-banner .banner-wrapper {
    min-height: 460px
}

.dark-banner .banner-wrapper:after {
    background: #000;
    background: linear-gradient(to bottom,#000 0%,rgba(0,0,0,.2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#000000',GradientType=0);
    height: 100%
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-wrapper {
        min-height:195px;
        height: inherit !important
    }

    .dark-banner .banner-wrapper:after {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-wrapper {
        min-height:245px;
        top: -10px
    }
}

@media screen and (max-width: 1020px) {
    .dark-banner .banner-wrapper .banner-image {
        position:relative;
        top: 0%;
        left: 50%;
        width: 100%;
        min-height: auto;
        min-width: auto;
        -ms-transform: translate(-50%,0%);
        transform: translate(-50%,0%)
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-wrapper .banner-image {
        position:absolute;
        top: 50%;
        left: 50%;
        width: auto;
        min-height: 100%;
        min-width: 100%;
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-wrapper {
        position:absolute;
        top: 122px
    }
}

@media screen and (max-width: 1020px) and (min-width:768px) {
    .dark-banner .content-banner {
        margin-top:-70px;
        position: relative;
        display: inherit
    }
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-subtitle {
        font-family:"pfhandbookpro-bold",sans-serif !important;
        margin-bottom: 10px
    }
}

.dark-banner .banner-utility-wrapper {
    display: block;
    margin-bottom: 10px
}

@media screen and (max-width: 767px) {
    .dark-banner .banner-utility-wrapper {
        display:none
    }
}

.without-banner .top-navigation ul li a {
    color: #000
}

.without-banner .top-navigation ul li a:hover,.without-banner .top-navigation ul li a:focus {
    color: #000;
    border-bottom: 1px solid #000
}

.without-banner .top-navigation ul li::after {
    border-right-color: #000
}

.without-banner .breadcrumb-component {
    margin-top: 24px
}

.without-banner .breadcrumb {
    margin-bottom: 9px
}

.banner-component--v2 {
    margin-top: 0 !important;
    height: 100% !important
}

.banner-component--v2 .banner-content-wrapper {
    position: relative !important;
    float: left !important;
    width: 100% !important;
    padding-top: 19px;
    padding-bottom: 12px !important;
    top: 0 !important
}

@media(max-width: 1200px) {
    .banner-component--v2 .banner-content-wrapper {
        padding-top:20px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .banner-content-wrapper {
        padding-top:12px
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .banner-content-wrapper {
        margin-top:0
    }
}

.banner-component--v2 .banner-title {
    color: #000;
    font-size: 2.4rem;
    letter-spacing: -.44px;
    line-height: normal;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1200px) {
    .banner-component--v2 .banner-title {
        font-size:2rem;
        letter-spacing: -.37px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .banner-title {
        font-size:1.6rem;
        letter-spacing: -.3px
    }
}

@media(max-width: 1200px) {
    .banner-component--v2 .banner-category-tag {
        padding:0 8px 6px 8px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .banner-category-tag {
        padding:0 6px 2px 6px;
        font-size: .8rem;
        letter-spacing: -.2px;
        margin-bottom: 0 !important
    }
}

@media(max-width: 1200px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:1.2rem;
        letter-spacing: -.25px;
        line-height: normal
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:.8rem;
        line-height: normal
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .banner-category-tag a {
        font-size:.9rem
    }
}

.banner-component--v2 .trending-widget-banner-wrapper {
    margin-top: 0
}

.banner-component--v2 .article {
    margin-bottom: 0
}

@media(max-width: 1020px) {
    .banner-component--v2 .article {
        -ms-flex-direction:column;
        flex-direction: column;
        padding: 0 0 10px 0
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .article {
        margin-bottom:20px
    }
}

.banner-component--v2 .article-img {
    height: 259px
}

@media(max-width: 1200px) {
    .banner-component--v2 .article-img {
        height:228px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .article-img {
        height:228px;
        width: 100%
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .article-img {
        height:140px
    }
}

.banner-component--v2 .article-desc h3 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 3rem;
    line-height: 3.4rem
}

@media(max-width: 1200px) {
    .banner-component--v2 .article-desc h3 {
        font-size:2.3rem;
        line-height: 2.9rem
    }
}

.banner-component--v2 .article-details {
    padding-left: 15px
}

.banner-component--v2 .article-updates {
    margin-top: 22px
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item {
    width: calc(50% - 15px);
    margin-bottom: 69px
}

@media(max-width: 1200px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        margin-bottom:59px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        margin-bottom:44px
    }
}

@media(max-width: 767px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item {
        width:calc(50% - 8px)
    }
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
    padding: 10px 17px 10px 0
}

@media(max-width: 1200px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
        padding:10px 17px 19px 0
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-details {
        padding:8px 17px 6px 0
    }
}

.banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-desc {
    padding-top: 15px
}

@media(max-width: 1200px) {
    .banner-component--v2 .trending-widget-banner-wrapper .trending-item .article-desc h3 {
        font-size:1.2rem;
        line-height: 1.4rem
    }
}

.banner-component--v2__cta-wrapper p {
    font-size: 2.4rem;
    line-height: normal;
    margin-left: 29px;
    display: inline-block;
    max-width: 330px;
    margin-bottom: 0;
    vertical-align: bottom
}

@media(max-width: 1200px) {
    .banner-component--v2__cta-wrapper p {
        font-size:2.1rem;
        margin-left: 28px
    }
}

@media(max-width: 1020px) {
    .banner-component--v2__cta-wrapper p {
        max-width:227px;
        font-size: 1.6rem
    }
}

@media(max-width: 767px) {
    .banner-component--v2__cta-wrapper p {
        max-width:50%;
        margin-left: 10px;
        margin-top: 0;
        display: block
    }
}

@media(max-width: 767px) {
    .banner-component--v2__cta-wrapper {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .banner-component--v2__cta-wrapper .big-cta {
        padding: 6px 39px 6px 10px !important;
        max-width: 132px;
        width: 100%
    }
}

.banner-component--v2 .big-cta {
    padding: 6px 59px 6px 10px
}

@media(max-width: 1200px) {
    .banner-component--v2 .big-cta__small-text {
        font-size:1.2rem;
        line-height: 2rem
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .big-cta__small-text {
        font-size:.9rem;
        line-height: 1.6rem
    }
}

.banner-component--v2 .big-cta__large-text {
    font-size: 2rem;
    line-height: 2rem
}

@media screen and (max-width: 1399px) {
    .banner-component--v2 .big-cta__large-text {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media(max-width: 1020px) {
    .banner-component--v2 .big-cta__large-text {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.banner-component--v2 .big-cta:after {
    line-height: 2rem
}

@media(max-width: 1020px) {
    .banner-component--v2 .big-cta:after {
        line-height:1.6rem
    }
}

.breadcrumb {
    margin-bottom: 22px;
    padding: 0;
    background-color: transparent
}

.breadcrumb a {
    font-size: 1.9rem;
    line-height: 16px;
    color: #000;
    border-bottom-color: #000;
    margin-left: 4px
}

.breadcrumb a:first-child {
    margin-left: 0
}

.breadcrumb a:hover,.breadcrumb a:active,.breadcrumb a:focus {
    border-bottom-color: #000;
    color: #000
}

.breadcrumb span {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.9rem;
    line-height: 16px;
    color: #000;
    border-bottom: 1px solid transparent;
    margin-right: 0;
    margin-left: 4px
}

@media screen and (max-width: 1020px) {
    .breadcrumb {
        margin-bottom:12px
    }
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        margin-bottom:14px
    }
}

.calculator-link {
    border-radius: 4px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.13);
    clear: both;
    position: relative
}

@media screen and (max-width: 991px) {
    .calculator-link {
        margin-bottom:20px
    }
}

.calculator-link .calculator-link-wrapper {
    padding: 20px 20px 20px 20px
}

.calculator-link .calculator-link-wrapper .calculator-link-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    color:  #19503e;
    text-transform: uppercase;
    letter-spacing: -.41px;
    margin-bottom: 30px
}

.calculator-link .calculator-link-wrapper .calculator-link-detail-wrapper {
    padding-bottom: 20px
}

.calculator-link .calculator-link-wrapper .calculator-link-detail-wrapper:last-child {
    padding-bottom: 10px
}

@media screen and (max-width: 767px) {
    .calculator-link .calculator-link-wrapper .calculator-link-detail-wrapper:last-child {
        padding-bottom:0
    }
}

.calculator-link .calculator-link-wrapper .calculator-link-detail-wrapper .calculator-link-text {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    text-transform: uppercase;
    position: relative
}

.calculator-link .calculator-link-wrapper .calculator-link-detail-wrapper .calculator-link-text:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    font-size: 1rem;
    position: absolute;
    right: 10px;
    color:  #19503e;
    top: 50%;
    margin-top: -5px
}

.two-columns .component.calculator-link {
    margin-bottom: 12px
}

.like-component {
    display: inline-block
}

@media(max-width: 767px) {
    .like-component {
        margin-right:7px
    }
}

.like-component .increment {
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.like-component .increment .icon {
    font-size: 1.4rem;
    color: #000;
    line-height: 16px;
    margin: 0
}

.like-component .increment .icon.icon-downvote {
    color:  #19503e
}

.like-component .increment .icon:before {
    top: 1px;
    position: relative
}

@media screen and (max-width: 1200px) {
    .like-component .increment .icon {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1020px) {
    .like-component .increment .icon {
        font-size:1rem
    }
}

.like-component .count-wrapper {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    color: #000;
    margin-left: 5px;
    line-height: 16px;
    letter-spacing: -.32px
}

.like-component .count-wrapper span {
    margin-left: 2px
}

@media screen and (max-width: 1200px) {
    .like-component .count-wrapper {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1020px) {
    .like-component .count-wrapper {
        font-size:1rem;
        margin-left: 2px
    }
}

#modal-popup-dialog .modal-body {
    padding: 20px
}

#modal-popup-dialog .error-msg {
    color:  #19503e;
    font-size: 1.6rem;
    margin-bottom: 10px
}

#modal-popup-dialog label {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.6rem;
    line-height: 20px;
    display: block;
    width: 50%
}

#modal-popup-dialog form>div {
    margin-top: 15px
}

#modal-popup-dialog input[type="text"],#modal-popup-dialog input[type="email"],#modal-popup-dialog input[type="password"] {
    width: 100%;
    margin-bottom: 10px;
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    text-align: left;
    color: #000;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 1px #cdcece
}

#modal-popup-dialog input[type="submit"] {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    padding: 9px 22px;
    outline: none;
    background-color: #fff;
    border: solid 1px  #19503e;
    color:  #19503e;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px
}

#modal-popup-dialog input[type="submit"]:hover,#modal-popup-dialog input[type="submit"]:active,#modal-popup-dialog input[type="submit"]:focus {
    background-color:  #19503e;
    color: #fff;
    text-decoration: none
}

.pagination {
    display: block;
    text-align: center
}

.pagination ul {
    padding-left: 0;
    margin-top: 0;
    display: inline-block
}

.pagination li,.pagination .page-dots {
    margin: 0 .2em;
    display: inline-block;
    min-width: auto
}

.pagination li:before,.pagination .page-dots:before {
    display: none
}

.pagination li a,.pagination .page-dots a {
    border-bottom: none !important
}

.pagination li a,.pagination li span,.pagination .page-dots a,.pagination .page-dots span {
    font-family: "pfencoresanspro-medium",sans-serif;
    font-size: 1.6rem;
    letter-spacing: .7px;
    text-align: center;
    color: #5a5a5a;
    padding: 8px 12px;
    vertical-align: middle;
    width: 38px;
    height: 38px;
    border-radius: 2px;
    background-color: #f6f6f6;
    border: solid 1px transparent !important
}

.pagination li.active a,.pagination li.active span,.pagination li:hover a,.pagination li:hover span,.pagination .page-dots.active a,.pagination .page-dots.active span,.pagination .page-dots:hover a,.pagination .page-dots:hover span {
    border: solid 1px  #19503e !important;
    color:  #19503e
}

.pagination .page-dots.active a,.pagination .page-dots.active span,.pagination .page-dots:hover a,.pagination .page-dots:hover span {
    border: solid 1px transparent !important;
    color: #5a5a5a
}

.pagination .button a {
    position: relative
}

.pagination .button.active a,.pagination .button:hover a {
    border: solid 1px transparent !important;
    color: #fff
}

.pagination .prev>span,.pagination .next>span {
    position: relative;
    display: inline-block;
    cursor: pointer
}

.pagination .prev>span:after,.pagination .next>span:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    position: absolute;
    top: 11px;
    left: 10px;
    color: #fff
}

.pagination .prev.active span,.pagination .prev:hover span,.pagination .next.active span,.pagination .next:hover span {
    color: #fff;
    border: solid 1px transparent !important
}

.pagination .page-item.first>span,.pagination .page-item.last>span {
    position: relative;
    background-color:  #19503e;
    width: 38px;
    height: 38px;
    border-radius: 2px;
    display: inline-block;
    cursor: pointer
}

.pagination .page-item.first>span:after,.pagination .page-item.first>span:before,.pagination .page-item.last>span:after,.pagination .page-item.last>span:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    position: absolute;
    color: #fff
}

.pagination .page-item.first>span:after,.pagination .page-item.last>span:after {
    top: 11px;
    right: 5px
}

.pagination .page-item.first>span:before,.pagination .page-item.last>span:before {
    top: 11px;
    left: 3px
}

.pagination .page-item.first.disabled>span,.pagination .page-item.last.disabled>span {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #6c7173
}

.pagination .page-item.last>span:after,.pagination .page-item.last>span:before {
    transform: rotateY(180deg)
}

.pagination .page-item.last>span:after {
    right: 3px
}

.pagination .page-item.last>span:before {
    left: 5px
}

.pagination .prev>span {
    width: 38px;
    height: 38px;
    border-radius: 2px;
    color: #fff;
    background-color:  #19503e
}

.pagination .prev.disabled>span {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #6c7173
}

.pagination .next>span {
    width: 38px;
    height: 38px;
    border-radius: 2px;
    color: #fff;
    background-color:  #19503e
}

.pagination .next>span:after {
    transform: rotateY(180deg)
}

.pagination .next.disabled>span {
    pointer-events: none;
    cursor: not-allowed;
    background-color: #6c7173
}

.poll-component {
    float: left;
    width: 100%;
    position: relative
}

.poll-component.top-margin {
    margin-top: 75px
}

.poll-item {
    box-shadow: 0 2px 8px rgba(0,0,0,.13);
    margin-bottom: 20px;
    padding: 1px;
    text-align: center;
    border-radius: 4px
}

.poll-content-wrapper {
    border: 1px solid #979797;
    padding: 20px;
    border-radius: 4px;
    min-height: 361px
}

.poll-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #d0021b;
    font-size: 2rem;
    line-height: 23px;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: -.45px
}

.poll-question {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    font-size: 2rem;
    line-height: 25px;
    margin-bottom: 30px
}

.poll-submit {
    margin-bottom: 5px
}

.poll-submit .read-more {
    background-color:  #19503e;
    border-color:  #19503e;
    color: #fff;
    width: 160px
}

.poll-submit .read-more.disabled {
    background-color: #565f66;
    border-color: #565f66
}

.poll-answer-wrapper,.result-answer-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 45px
}

.poll-msg p,.poll-no-result-wrapper p {
    font-family: "pfhandbookpro-bold",sans-serif
}

.poll-result-wrapper .poll-answer .poll-answer-title {
    position: relative;
    bottom: 0;
    font-size: 1.2rem;
    line-height: 16px
}

.poll-result-wrapper .poll-answer .result-number,.poll-result-wrapper .poll-answer .result-percent {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    line-height: 20px;
    color: #000;
    display: none
}

.poll-result-wrapper .poll-no-result-wrapper {
    display: none
}

.poll-result-wrapper.number .result-number {
    display: block !important
}

.poll-result-wrapper.percent .result-percent {
    display: block !important
}

.poll-result-wrapper.no-result .result-answer-wrapper,.poll-result-wrapper.no-result+.poll-msg {
    display: none !important
}

.poll-result-wrapper.no-result .poll-no-result-wrapper {
    display: block !important;
    margin-top: 40px;
    float: left;
    width: 100%
}

.poll-result-wrapper.display .poll-answer {
    min-width: 85px
}

.poll-answer {
    border: 1px solid #e1e2e3;
    background-color: #fefeff;
    border-radius: 9px;
    margin: 0 21px;
    min-height: 104px;
    min-width: 76px;
    padding: 10px;
    position: relative;
    overflow: hidden
}

@media screen and (max-width: 1299px) {
    .poll-answer {
        margin:0 5px
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .poll-answer {
        margin:0 20px
    }
}

@media screen and (max-width: 767px) and (min-width:360px) {
    .poll-answer {
        margin:0 10px
    }
}

.poll-answer.active .radio {
    border: solid 1px  #19503e !important
}

.poll-answer.active>span {
    color:  #19503e
}

.poll-answer.active .poll-answer-title {
    color: #000
}

.poll-answer.active .poll-progressbar:after {
    border-bottom: 3px solid  #19503e
}

.poll-answer.selected .radio {
    border: solid 1px  #19503e !important;
    background-color: #fff !important
}

.poll-answer.selected .radio:after {
    top: 1px;
    left: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:  #19503e;
    display: block
}

.poll-answer.selected .poll-answer-title {
    color: #000
}

.poll-answer.selected .poll-progressbar {
    background-color:  #19503e
}

.poll-answer.selected .poll-progressbar:after {
    border-bottom: 3px solid  #19503e
}

.poll-answer.selected.white .poll-answer-title {
    color: #fff;
    transition: color .4s linear 1.5s
}

.poll-answer.selected.white>span {
    color: #fff;
    transition: color .4s linear 1.5s
}

.poll-answer.selected.white .radio {
    border: solid 1px #fff !important;
    background-color:  #19503e !important;
    transition: all .4s linear 1.5s
}

.poll-answer.selected.white .radio:after {
    background: #fff
}

.poll-answer .radio-wrapper {
    margin: 0 auto
}

.poll-answer>span {
    display: block;
    width: 100%;
    color: #6a4742;
    font-size: 1.2rem;
    position: relative
}

.poll-answer .poll-answer-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.7rem;
    line-height: 18px;
    color: #000;
    margin-top: 12px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0
}

.poll-answer .poll-progressbar {
    height: 0%;
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    background-color: rgba(68,73,81,.2);
    border-radius: 4px 4px 0 0;
    transition: height 2s linear .5s
}

.poll-answer .poll-progressbar:after {
    border-bottom: 3px solid rgba(68,73,81,.2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
    content: ""
}

.multipollwrap.pollhide {
    display: none
}

.poll-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    right: 0
}

.pollPrev,.pollNext {
    margin-left: 10px;
    margin-bottom: 25px
}

.pollPrev>a,.pollNext>a {
    position: relative;
    display: inline-block;
    cursor: pointer
}

.pollPrev>a:after,.pollNext>a:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    position: absolute;
    top: 11px;
    left: 10px;
    color: #fff
}

.pollPrev.disabled>a {
    border-radius: 2px;
    color: #fff;
    background-color: #6c7173;
    cursor: not-allowed
}

.pollPrev>a {
    width: 38px;
    height: 38px;
    border-radius: 2px;
    color: #fff;
    background-color:  #19503e
}

@media screen and (max-width: 1200px) {
    .pollPrev>a {
        width:35px;
        height: 35px;
        font-size: 1.4rem
    }
}

.pollPrev>a:hover,.pollPrev>a:active,.pollPrev>a:focus {
    border-color: transparent
}

.pollNext.disabled>a {
    border-radius: 2px;
    color: #fff;
    background-color: #6c7173;
    cursor: not-allowed
}

.pollNext.disabled>a:after {
    transform: rotateY(180deg)
}

.pollNext>a {
    width: 38px;
    height: 38px;
    border-radius: 2px;
    color: #fff;
    background-color:  #19503e
}

@media screen and (max-width: 1200px) {
    .pollNext>a {
        width:35px;
        height: 35px;
        font-size: 1.4rem
    }
}

.pollNext>a:hover,.pollNext>a:active,.pollNext>a:focus {
    border-color: transparent
}

.pollNext>a:after {
    transform: rotateY(180deg)
}

.searchContentWrapper {
    margin-bottom: 25px
}

.main-content.HideOverflow {
    overflow: hidden
}

.search-page-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline
}

.search-page-heading .col-12 {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.show-result {
    font-size: 2rem;
    color: #9dafbd;
    margin-left: 18px
}

@media screen and (max-width: 1020px) {
    .show-result {
        display:none
    }
}

.search-bottom-section {
    margin-top: 22px;
    margin-bottom: 16px
}

@media screen and (max-width: 1020px) {
    .search-bottom-section {
        margin-top:18px;
        margin-bottom: 0
    }
}

.alt .search-bottom-section {
    margin-bottom: 9px
}

.searchContentItem {
    padding-top: 25px;
    padding-bottom: 25px
}

.searchContentItem:first-child {
    padding-top: 0
}

.searchContentItem.alt {
    position: relative;
    background-color: #f9fbfc
}

.searchContentItem.alt:before,.searchContentItem.alt:after {
    background-color: #f9fbfc;
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    z-index: -1
}

.searchContentItem.alt:before {
    left: -100vw
}

.searchContentItem.alt:after {
    left: 100%
}

.searchContentItem .search-content-section a {
    color: #000
}

.searchContentItem .search-content-section a:hover,.searchContentItem .search-content-section a:active,.searchContentItem .search-content-section a:focus {
    color: #000;
    border-bottom: 1px solid #000 !important
}

.searchContentItem .search-content-section h2 {
    margin-bottom: 15px;
    font-family: "pfhandbookpro-light",sans-serif;
    letter-spacing: -.1px
}

@media screen and (max-width: 1020px) {
    .searchContentItem .search-content-section h2 {
        margin-bottom:7px
    }
}

.searchContentItem .search-content-section p {
    color: #6c7174
}

@media screen and (max-width: 1020px) {
    .searchContentItem .search-content-section p {
        font-size:1.6rem;
        line-height: 18px
    }
}

.searchContentItem .search-top-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 11px
}

@media screen and (max-width: 767px) {
    .searchContentItem .search-top-section {
        margin-bottom:5px;
        display: block
    }
}

.searchContentItem .search-top-section .search-date {
    font-size: 1.4rem;
    line-height: 16px;
    color: #9dafbd;
    letter-spacing: -.32px
}

@media screen and (max-width: 1020px) {
    .searchContentItem .search-top-section .search-date {
        font-size:1.3rem;
        color: #000
    }
}

.searchContentItem .search-top-section .search-tag {
    background-color:  #19503e
}

@media screen and (max-width: 767px) {
    .searchContentItem .search-top-section .search-tag {
        display:inline-block;
        margin-bottom: 14px
    }
}

.searchContentItem .search-top-section .search-tag a {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.4rem;
    line-height: 20px;
    padding: 10px 22px 9px 22px;
    color: #000;
    border-bottom: none;
    display: inline-block
}

.searchContentItem .search-top-section .search-tag a:hover,.searchContentItem .search-top-section .search-tag a:active,.searchContentItem .search-top-section .search-tag a:focus {
    border-bottom: none
}

.searchContentItem .search-top-section .search-tag.pink {
    background-color: #da9089
}

.searchContentItem .search-top-section .search-tag.green {
    background-color: #969f6e
}

.searchContentItem .search-top-section .search-tag.yellow {
    background-color: #d4ae69
}

@media screen and (max-width: 1020px) {
    .searchContentItem .search-top-section .search-tag {
        background-color: #19503e
    }

    .searchContentItem .search-top-section .search-tag.pink {
        background-color: #da9089
    }

    .searchContentItem .search-top-section .search-tag.green {
        background-color: #969f6e
    }

    .searchContentItem .search-top-section .search-tag.yellow {
        background-color: #d4ae69
    }

    .searchContentItem .search-top-section .search-tag a {
        font-size: 1.2rem;
        line-height: 20px;
        color: #fff;
        padding: 6px 11px 5px 11px
    }
}

.share-component {
    display: inline-block;
    margin-left: 18px;
    position: relative
}

.share-component .share-wrapper {
    cursor: pointer;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.share-component .share-wrapper .icon {
    font-size: 1.4rem;
    color: #000;
    line-height: 1;
    margin: 0
}

.share-component .share-wrapper .icon:before {
    top: 1px;
    position: relative
}

@media screen and (max-width: 1200px) {
    .share-component .share-wrapper .icon {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1020px) {
    .share-component .share-wrapper .icon {
        font-size:1rem
    }
}

.share-component .count-wrapper {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    color: #000;
    margin: 0 5px;
    line-height: 16px;
    letter-spacing: -.32px
}

.share-component .count-wrapper span {
    margin-left: 2px
}

@media screen and (max-width: 1200px) {
    .share-component .count-wrapper {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1020px) {
    .share-component .count-wrapper {
        font-size:1rem;
        margin-left: 2px
    }
}

.share-component a {
    font-family: "pfhandbookpro-light",sans-serif;
    border-bottom: 1px solid transparent !important
}

.share-component .share-content {
    position: absolute;
    width: 200px;
    right: 0;
    top: 20px;
    display: none
}

@media screen and (max-width: 1200px) {
    .share-component .share-content {
        width:200px;
        right: -75px;
        top: 25px
    }
}

.share-component .st-btn {
    display: inline-block !important;
    height: 28px !important;
    margin-right: 5px !important;
    padding: 0 6px !important;
    border-radius: 0 !important
}

.share-component .st-btn:last-child {
    margin-right: 0 !important
}

.share-component .st-btn>img {
    top: 6px !important
}

@media screen and (max-width: 1200px) {
    .share-component .st-btn {
        height:30px !important;
        line-height: 20px !important;
        margin-right: 2px !important;
        padding: 0 5px !important
    }

    .share-component .st-btn>img {
        height: 30px !important;
        width: 25px !important;
        top: 0 !important
    }
}

.share-component .st-total {
    display: none !important
}

.like-shares .share-component {
    margin-left: 8px
}

@media screen and (max-width: 1200px) {
    .like-shares .share-component {
        margin-left:5px
    }
}

@media screen and (max-width: 767px) {
    .like-shares .share-component {
        margin-left:0
    }
}

@media screen and (max-width: 1020px) {
    .like-shares {
        margin-top:5px
    }
}

@media(max-width: 767px) {
    .trending-widget-banner-wrapper .share-component .share-content {
        right:-29px !important;
        z-index: 9
    }
}

@media(max-width: 767px) {
    .trending-item .share-component .share-content {
        right:-45px;
        z-index: 9
    }
}

.share-component .share-content-inline {
    position: absolute;
    width: 200px;
    left: -15px;
    top: -4px;
    display: none
}

@media screen and (max-width: 1200px) {
    .share-component .share-content-inline {
        width:200px;
        left: 0 !important;
        top: -4px
    }
}

.spacer-gray {
    background-color: #808080
}

.spacer-breakpoint {
    display: -ms-flexbox !important;
    display: flex !important
}

@media screen and (max-width: 991px) {
    .spacer-breakpoint {
        height:unset !important
    }
}

.close {
    font-size: 3.5rem;
    padding: 0 !important;
    position: absolute;
    right: 28px;
    top: 17px;
    z-index: 99
}

.modal-header {
    border-bottom: none;
    position: relative
}

.form-subscribe {
    position: relative;
    margin: 5px 5px 20px 5px
}

.form-subscribe #frm-loading {
    background: url("../images/loading.gif") no-repeat center center;
    position: absolute;
    top: 0;
    left: -1px;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #fff
}

.form-subscribe label {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.6rem;
    line-height: 20px;
    display: block;
    width: 50%
}

.form-subscribe label+label {
    font-family: "pfhandbookpro-regular",sans-serif
}

.form-subscribe form>div {
    margin-top: 15px
}

.form-subscribe input[type="text"],.form-subscribe input[type="email"],.form-subscribe input[type="password"] {
    width: 100%;
    margin-bottom: 10px;
    opacity: .7;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    text-align: left;
    color: #000;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: #fff;
    border: solid 1px #cdcece;
    max-width: 300px
}

.form-subscribe input[type="radio"],.form-subscribe input[type="checkbox"] {
    margin-right: 10px
}

.form-subscribe input[type="submit"] {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    border-radius: 2px;
    padding: 9px 22px;
    outline: none;
    background-color: #fff;
    border: solid 1px  #19503e;
    color:  #19503e;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 10px
}

.form-subscribe input[type="submit"]:hover,.form-subscribe input[type="submit"]:active,.form-subscribe input[type="submit"]:focus {
    background-color:  #19503e;
    color: #fff;
    text-decoration: none
}

.field-validation-error {
    color:  #19503e;
    font-size: 1.4rem;
    margin-bottom: 10px;
    float: left;
    width: 100%
}

.validation-summary-errors ul {
    padding-left: 0
}

.validation-summary-errors ul li {
    color:  #19503e !important;
    font-size: 1.4rem;
    margin-bottom: 10px
}

.validation-summary-errors ul li:before {
    display: none
}

.blog-subscription-wrapper {
    border: solid 1px  #19503e !important;
    background-color: #fff !important;
    padding: 15px 15px !important;
    border-radius: 5px !important
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper {
        padding:15px 15px 0 !important
    }
}

.blog-subscription-wrapper .blog-subscription-container.right {
    -ms-flex-direction: column;
    flex-direction: column
}

.blog-subscription-wrapper .blog-subscription-container.right .title-wrpper {
    padding: 0
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-field {
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    margin-right: 0 !important
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-field:first-child {
    margin: 10px 0 15px !important
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-field:first-child {
        margin:8px 0 10px !important
    }
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-field .fieldgroup {
    margin-bottom: 0 !important
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .btn-wrapper {
    display: contents !important
}

.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .terms-conditions,.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .error-wrapper {
    position: inherit;
    margin-top: 8px
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .terms-conditions,.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .error-wrapper {
        padding:0 !important
    }
}

@media screen and (min-width: 768px) {
    .blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .terms-conditions span.checkbox-label::before,.blog-subscription-wrapper .blog-subscription-container.right .fieldgroup-blogSub-btn .error-wrapper span.checkbox-label::before {
        top:0 !important
    }
}

.blog-subscription-wrapper .blog-subscription-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .title-wrpper {
        padding:0
    }
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

.blog-subscription-wrapper .blog-subscription-container .title {
    font-size: 24px;
    line-height: 24px;
    color: #000
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .title {
        font-size:20px;
        margin-bottom: 10px !important
    }
}

.blog-subscription-wrapper .blog-subscription-container .title span {
    color:  #19503e;
    font-weight: bold
}

.blog-subscription-wrapper .blog-subscription-container .delivery-title {
    font-size: 20px;
    display: none;
    font-family: 'pfhandbookpro-regular'
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .blog-subscription-field-wrapper {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-field {
    -ms-flex: 1 0 33%;
    flex: 1 0 33%;
    margin-right: 10px
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-field .fieldgroup {
    margin-bottom: 0 !important
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-field .fieldgroup {
        margin-bottom:10px !important
    }
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-field .fieldgroup {
        margin-bottom:0 !important
    }
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-field {
        margin-bottom:10px !important
    }
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .terms-conditions {
    display: block;
    position: absolute;
    right: 0
}

@media screen and (min-width: 768px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .terms-conditions span.checkbox-label::before {
        top:0 !important
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .terms-conditions P {
    font-family: "pfhandbookpro-regular" !important
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .terms-conditions {
        position:inherit
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .error-wrapper {
    display: none;
    position: absolute;
    left: 0;
    padding-bottom: 5px
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .error-wrapper {
        position:inherit;
        padding: 5px 0 10px 0
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .blog-error {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    color: #6c7174;
    border: none !important;
    background-color: transparent !important;
    display: block;
    position: relative;
    padding-left: 28px
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .blog-error {
        font-size:1.2rem
    }
}

.blog-subscription-wrapper .blog-subscription-container .fieldgroup-blogSub-btn .blog-error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

.blog-subscription-wrapper .blog-subscription-container .btn-wrapper {
    display: block !important;
    padding: 0 0 17px 0 !important
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .blog-subscription-container .btn-wrapper {
        padding:0 0 15px 0 !important
    }
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .btn-wrapper {
        display:-ms-flexbox;
        display: flex
    }
}

.blog-subscription-wrapper .blog-subscription-container .btn-wrapper .form-btn {
    padding: 12px 27px 12px 18px !important
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .btn-wrapper .form-btn {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media screen and (max-width: 576px) {
    .blog-subscription-wrapper .blog-subscription-container .btn-wrapper .form-btn {
        width:100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.blog-subscription-wrapper .blog-subscription-container .btn-wrapper .promotion-cta:after {
    top: 44%;
    right: 2%
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .blog-subscription-container .btn-wrapper .promotion-cta:after {
        content:""
    }
}

.blog-subscription-wrapper .blog-subscription-container .btn-wrapper #blogSub-submit {
    font-size: 20px !important
}

.blog-subscription-wrapper .leadForm-span-error {
    display: none
}

@media screen and (max-width: 1200px) {
    .blog-subscription-wrapper .leadForm-span-error {
        position:relative;
        bottom: 4px
    }
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper .leadForm-span-error {
        margin-top:6px
    }
}

.blog-subscription-wrapper.right {
    border: none !important
}

@media screen and (max-width: 767px) {
    .blog-subscription-wrapper.right {
        padding:15px 15px !important
    }
}

.blog-subscription-wrapper.right .promotion-cta:after {
    content: ""
}

.blog-subscription-thankyou-wrapper {
    padding: 15px 15px;
    display: none
}

@media screen and (max-width: 767px) {
    .blog-subscription-thankyou-wrapper {
        padding:15px 15px 30px
    }
}

.blog-subscription-thankyou-wrapper .thank-you {
    height: auto
}

.blog-subscription-thankyou-wrapper .thankyou-txt {
    font-size: 18px !important
}

.blog-subscription-thankyou-wrapper .thankyou-txt strong {
    color:  #19503e;
    font-weight: bold
}

.blog-subscription-thankyou-wrapper #blogSub-thankyou-close {
    display: none
}

.blog-subscription-thankyou-wrapper.right {
    padding: 0;
    display: none
}

.blog-subscription-thankyou-wrapper.right .thank-you {
    margin: 0 0 10px;
    text-align: left
}

.blog-subscription-thankyou-wrapper.right .thank-you strong {
    color:  #19503e
}

.blog-subscription-thankyou-wrapper.right .thankyou-txt {
    text-align: left
}

.blog-subscription-thankyou-wrapper.right #blogSub-thankyou-close {
    display: block;
    margin-top: 80px;
    width: 100%
}

#blogSubscription-modal .modal-dialog-custom {
    max-width: 730px !important
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .modal-dialog-custom {
        max-width:330px !important
    }
}

#blogSubscription-modal .modalContainer {
    width: 730px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .modalContainer {
        width:330px;
        min-height: 100%;
        padding: 0 0 0 10px
    }
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .close-btn-lead button {
        width:35px;
        height: 35px
    }
}

#blogSubscription-modal .blogSubscription-modal-container {
    display: block;
    border: none;
    box-shadow: none;
    padding: 0 18px 0 0;
    margin-bottom: 25px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container {
        padding:0 10px 0 0
    }
}

#blogSubscription-modal .blogSubscription-modal-container .title-wrpper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

#blogSubscription-modal .blogSubscription-modal-container .title-wrpper p {
    text-align: left;
    font-size: 42px;
    width: 100%;
    line-height: 46px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .title-wrpper p {
        font-size:19px;
        line-height: 24px
    }
}

#blogSubscription-modal .blogSubscription-modal-container .title-wrpper p span {
    color:  #19503e
}

#blogSubscription-modal .blogSubscription-modal-container .title-wrpper .delivery-title {
    text-align: left;
    font-size: 24px;
    font-family: 'pfhandbookpro-regular'
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .title-wrpper .delivery-title {
        font-size:14px
    }
}

#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 20px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper {
        -ms-flex-direction:column;
        flex-direction: column;
        padding-top: 10px
    }
}

#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1,#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 {
    -ms-flex: 1;
    flex: 1
}

#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1 .fieldgroup,#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 .fieldgroup {
    margin-bottom: 8px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1 .fieldgroup,#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 .fieldgroup {
        margin-bottom:0
    }
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1,#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 {
        margin-bottom:10px
    }
}

#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1 {
    padding-right: 10px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-1 {
        padding-right:0
    }
}

#blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 {
    padding-left: 10px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .blog-subscription-modal-field-wrapper .fieldgroup-blogSub-modal-field-2 {
        padding-left:0
    }
}

@media screen and (min-width: 768px) {
    #blogSubscription-modal .blogSubscription-modal-container .terms-conditions {
        padding-top:5px
    }
}

@media screen and (min-width: 768px) {
    #blogSubscription-modal .blogSubscription-modal-container .terms-conditions span.checkbox-label::before {
        top:0 !important
    }
}

#blogSubscription-modal .blogSubscription-modal-container .terms-conditions p {
    font-family: "pfhandbookpro-regular" !important
}

#blogSubscription-modal .blogSubscription-modal-container .error-wrapper {
    display: none;
    padding-bottom: 7px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .error-wrapper {
        padding-bottom:10px
    }
}

#blogSubscription-modal .blogSubscription-modal-container .error-wrapper .blog-error {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    color: #6c7174;
    border: none !important;
    background-color: transparent !important;
    display: block;
    position: relative;
    padding-left: 28px
}

@media screen and (max-width: 1200px) {
    #blogSubscription-modal .blogSubscription-modal-container .error-wrapper .blog-error {
        font-size:1.2rem
    }
}

#blogSubscription-modal .blogSubscription-modal-container .error-wrapper .blog-error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

#blogSubscription-modal .blogSubscription-modal-container .btn-wrapper {
    display: block !important;
    padding-bottom: 0 !important
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-modal-container .btn-wrapper #blogSub-modal-submit {
        width:100%;
        font-size: 20px
    }
}

#blogSubscription-modal .blogSubscription-thankyou-modal-container {
    display: none;
    border: none;
    box-shadow: none;
    padding: 0 20px 0 10px;
    margin-bottom: 25px
}

#blogSubscription-modal .blogSubscription-thankyou-modal-container .thank-you {
    font-size: 42px;
    height: auto;
    text-align: left;
    margin-bottom: 10px
}

#blogSubscription-modal .blogSubscription-thankyou-modal-container .thank-you strong {
    color:  #19503e
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-thankyou-modal-container .thank-you {
        font-size:19px;
        margin-bottom: 5px
    }
}

#blogSubscription-modal .blogSubscription-thankyou-modal-container .thankyou-txt {
    font-size: 24px;
    text-align: left;
    margin-bottom: 20px
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-thankyou-modal-container .thankyou-txt {
        font-size:14px;
        margin-bottom: 10px;
        line-height: 17px
    }
}

#blogSubscription-modal .blogSubscription-thankyou-modal-container .submit-btn {
    display: block
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .blogSubscription-thankyou-modal-container .submit-btn {
        width:100%
    }
}

#blogSubscription-modal .leadForm-span-error {
    display: none
}

@media screen and (max-width: 767px) {
    #blogSubscription-modal .leadForm-span-error {
        margin-top:4px
    }
}

#myDropdown-blogSub {
    width: 360px !important
}

@media screen and (max-width: 767px) {
    #myDropdown-blogSub {
        margin-right:17px !important;
        top: 16px
    }
}

@media screen and (max-width: 576px) {
    #myDropdown-blogSub {
        margin-right:17px !important;
        top: 16px;
        border-radius: 0 0 15px 15px !important;
        width: 100vw !important;
        min-width: 360px
    }
}

#myDropdown-blogSub .arrow_up {
    display: block
}

@media screen and (max-width: 767px) {
    #myDropdown-blogSub .arrow_up {
        display:none
    }
}

.blog-subscription-top-wrapper {
    display: block;
    border: none !important;
    box-shadow: none !important;
    padding: 10px 20px !important;
    background-color: transparent !important
}

.blog-subscription-top-wrapper .blog-subscription-top-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.blog-subscription-top-wrapper .blog-subscription-top-container .title-wrpper p.title {
    color: #000;
    text-transform: initial;
    font-size: 24px;
    line-height: 24px;
    font-weight: bold
}

.blog-subscription-top-wrapper .blog-subscription-top-container .title-wrpper p.title span {
    color:  #19503e
}

.blog-subscription-top-wrapper .blog-subscription-top-container .title-wrpper .delivery-title {
    color: #000;
    text-transform: initial;
    font-size: 20px;
    font-family: 'pfhandbookpro-regular'
}

.blog-subscription-top-wrapper .blog-subscription-top-container .blog-subscription-top-field-wrapper {
    margin-top: 10px
}

.blog-subscription-top-wrapper .blog-subscription-top-container .blog-subscription-top-field-wrapper .fieldgroup {
    margin-bottom: 12px !important
}

.blog-subscription-top-wrapper .blog-subscription-top-container .blog-subscription-top-field-wrapper .fieldgroup input {
    font-size: 16px !important
}

@media screen and (min-width: 768px) {
    .blog-subscription-top-wrapper .blog-subscription-top-container .terms-conditions span.checkbox-label::before {
        top:0 !important
    }
}

.blog-subscription-top-wrapper .blog-subscription-top-container .terms-conditions p {
    font-family: "pfhandbookpro-regular" !important;
    text-transform: initial
}

.blog-subscription-top-wrapper .blog-subscription-top-container .terms-conditions p a {
    color:  #19503e
}

.blog-subscription-top-wrapper .blog-subscription-top-container .error-wrapper {
    display: none;
    margin-bottom: 10px
}

.blog-subscription-top-wrapper .blog-subscription-top-container .error-wrapper .blog-error {
    font-family: "pfhandbookpro-regular",sans-serif;
    text-transform: initial;
    font-size: 1.6rem;
    color: #6c7174;
    border: none !important;
    background-color: transparent !important;
    display: block;
    position: relative;
    padding-left: 24px
}

@media screen and (max-width: 1200px) {
    .blog-subscription-top-wrapper .blog-subscription-top-container .error-wrapper .blog-error {
        font-size:1.2rem
    }
}

.blog-subscription-top-wrapper .blog-subscription-top-container .error-wrapper .blog-error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -1px;
    color: #f7a500;
    font-size: 20px;
    text-align: center;
    font-family: FontAwesome
}

@media screen and (max-width: 1200px) {
    .blog-subscription-top-wrapper .blog-subscription-top-container .error-wrapper .blog-error:before {
        top:-5px
    }
}

.blog-subscription-top-wrapper .blog-subscription-top-container .btn-wrapper {
    padding: 0 !important;
    display: block !important
}

.blog-subscription-top-wrapper .blog-subscription-top-container .btn-wrapper #blogSub-top-submit {
    width: 100%;
    font-size: 20px !important
}

.blog-subscription-top-wrapper .leadForm-span-error {
    display: none;
    position: relative;
    top: 3px;
    text-transform: initial
}

@media screen and (max-width: 767px) {
    .blog-subscription-top-wrapper .leadForm-span-error {
        top:0;
        margin-top: 4px
    }
}

.blog-subscription-top-dropdown>a {
    background-color: #fff;
    color: #8b151b !important;
    padding: 4px 10px !important;
    border-radius: 20px
}

.blog-subscription-top-dropdown>a:hover {
    color: #8b151b !important
}

.blog-subscription-top-dropdown .arrow_up {
    right: 19% !important
}

@media screen and (max-width: 1020px) and (min-width:767px) {
    .blog-subscription-top-dropdown .arrow_up {
        right:15% !important
    }
}

.blog-subscription-top-thankyou-wrapper {
    display: none
}

@media screen and (max-width: 767px) {
    .blog-subscription-top-thankyou-wrapper {
        padding:5px 5px 8px
    }
}

.blog-subscription-top-thankyou-wrapper .thank-you {
    height: auto;
    text-align: left;
    text-transform: initial
}

.blog-subscription-top-thankyou-wrapper .thank-you strong {
    color:  #19503e
}

.blog-subscription-top-thankyou-wrapper .thankyou-txt {
    text-align: left !important;
    font-size: 20px !important;
    text-transform: initial
}

.blog-subscription-top-thankyou-wrapper .thankyou-txt span {
    color: #000
}

.blog-subscription-top-thankyou-wrapper #blogSub-top-thankyou-close {
    display: block;
    width: 100%;
    margin-top: 30px
}

#blogSub-submit:disabled,#blogSub-modal-submit:disabled,#blogSub-top-submit:disabled {
    background-color: #9dafbd !important
}

.marginTop86 {
    margin-top: 74px !important
}

.trending-wrapper {
    float: left;
    width: 100%;
    margin-bottom: 55px
}

@media screen and (max-width: 991px) {
    .trending-wrapper {
        margin-bottom:20px;
        float: left;
        width: 100%
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .trending-item {
        width:calc(50% - 10px);
        float: left;
        margin-right: 20px
    }

    .trending-item:nth-child(even) {
        margin-right: 0
    }
}

.trending-item .article {
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    margin-bottom: 8px;
    border-left-width: 0;
    padding: 0;
    height: 190px
}

@media screen and (max-width: 767px) {
    .trending-item .article {
        height:126px;
        font-size: 16px;
        line-height: normal
    }
}

@media(max-width: 767px) {
    .trending-item .article .like-shares {
        display:block
    }
}

@media(max-width: 767px) {
    .trending-item .article .like-shares .icon {
        font-size:1.8rem
    }
}

.trending-item.red .article-tag {
    background:  #19503e
}

.trending-item.pink .article-tag {
    background: #da9089
}

.trending-item.green .article-tag {
    background: #a3ab80
}

.trending-item.yellow .article-tag {
    background: #d4ae69
}

.trending-item .article-tag {
    background:  #19503e;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding: 4px 5px 4px 5px;
    letter-spacing: -.41px;
    border-radius: 2px;
    text-transform: uppercase;
    display: inline-block
}

@media screen and (max-width: 1020px) and (min-width:992px) {
    .trending-item .article-tag {
        font-size:1.2rem;
        padding: 0 5px 0 5px
    }
}

.trending-item .article-desc h3 {
    margin-bottom: 5px;
    margin: 0 auto;
    font-size: 1.7rem;
    line-height: 1.2
}

@media screen and (max-width: 1200px) {
    .trending-item .article-desc h3 {
        font-size:1.7rem
    }
}

@media screen and (max-width: 1020px) and (min-width:992px) {
    .trending-item .article-desc h3 {
        margin-bottom:0
    }
}

.trending-item .article-details {
    padding: 18px 17px
}

@media screen and (max-width: 1020px) {
    .trending-item .article-details {
        padding:10px
    }
}

.trending-item .article-desc {
    padding: 5px 5px 7px
}

@media screen and (max-width: 1020px) and (min-width:992px) {
    .trending-item .article-desc {
        padding:5px 5px 0
    }
}

.trending-item .article-desc p {
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 38.4px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.2
}

@media screen and (max-width: 1200px) {
    .trending-item .article-desc p {
        font-size:1.6rem;
        line-height: 20px
    }
}

@media screen and (max-width: 1020px) {
    .trending-item .article-desc p {
        font-size:1.4rem;
        line-height: 18px
    }
}

@media screen and (max-width: 767px) {
    .trending-item .article-desc p {
        display:none
    }
}

.trending-item .article-updates {
    padding: 0 5px;
    position: absolute;
    bottom: 18px
}

.trending-widget-banner-wrapper {
    margin-top: -15px
}

.trending-widget-banner-wrapper .trending-wrapper {
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.trending-widget-banner-wrapper .count-wrapper,.trending-widget-banner-wrapper .count-wrapper>span,.trending-widget-banner-wrapper .count-wrapper .count {
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (max-width: 1020px) {
    .trending-widget-banner-wrapper {
        margin-top:15px
    }

    .trending-widget-banner-wrapper .trending-wrapper {
        margin-bottom: 0
    }

    .trending-widget-banner-wrapper .article-tag {
        padding: 0 5px 0 5px;
        font-size: 1.2rem
    }
}

.trending-widget-banner-wrapper .trending-item {
    max-width: 303px;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: calc(50% - 30px)
}

@media screen and (max-width: 767px) {
    .trending-widget-banner-wrapper .trending-item {
        max-width:100%;
        width: calc(50% - 7.5px);
        margin-right: 15px
    }
}

.trending-widget-banner-wrapper .trending-item:nth-child(even) {
    margin-right: 0
}

.trending-widget-banner-wrapper .trending-item .article-desc h3 {
    font-size: 1.8rem;
    line-height: 1.39
}

.trending-widget-banner-wrapper .trending-item .article {
    border-left-width: 4px;
    box-shadow: 0 18px 36px 0 rgba(0,0,0,.1);
    display: block;
    position: relative;
    margin-bottom: 0;
    height: auto
}

.trending-widget-banner-wrapper .trending-item .article .blur-background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: -1
}

.trending-widget-banner-wrapper .trending-item .article .blur-background:before {
    content: "";
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 32px 64px 0 rgba(0,0,0,.1),0 6px 30px 0 rgba(0,0,0,.06);
    background-color: rgba(255,255,255,.53);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

@media screen and (max-width: 767px) {
    .trending-widget-banner-wrapper .trending-item .article-details {
        padding:5px
    }

    .trending-widget-banner-wrapper .trending-item .article-details .article-desc {
        padding: 5px 5px 0
    }

    .trending-widget-banner-wrapper .trending-item .article-details .like-shares {
        margin-top: 0
    }

    .trending-widget-banner-wrapper .trending-item .article-details .like-shares .icon {
        font-size: 1.8rem
    }

    .trending-widget-banner-wrapper .trending-item .article-details .count-wrapper {
        font-size: 1rem;
        margin-left: 3px
    }
}

.trending-widget-banner-wrapper .article-updates {
    padding: 0 5px;
    position: relative;
    bottom: 0
}

.top-margin .block-heading {
    margin-top: 150px
}

@media screen and (max-width: 1200px) {
    .top-margin .block-heading {
        margin-top:142px;
        margin-bottom: 7px
    }
}

@media screen and (max-width: 1020px) {
    .top-margin .block-heading {
        margin-top:96px;
        margin-bottom: 0
    }
}

.two-columns .trending-item .article-desc h3 {
    height: auto !important;
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 5px
}

@media screen and (max-width: 767px) {
    .two-columns .trending-item .article-desc h3 {
        font-size:16px;
        line-height: normal
    }
}

@media only screen and (max-width: 800px) {
    .trending-widget-banner-wrapper .article-tag {
        font-size:1.2rem !important
    }

    .trending-widget-banner-wrapper .trending-item .article-desc h3 {
        font-size: 14px !important;
        line-height: 1.16 !important
    }

    .trending-item .article-details {
        padding: 15px
    }
}

.two-columns .component.trending-component .trending-wrapper {
    margin-bottom: 25px
}

.two-columns .component.calculator-link .calculator-link-wrapper {
    margin-bottom: 25px
}

.blog-detail .img-right {
    float: right;
    margin-left: 30px
}

.blog-detail .img-left {
    float: left;
    margin-right: 30px
}

.blog-detail p {
    margin-bottom: 50px
}

.blog-detail .author-tag {
    font-size: 1.8rem;
    line-height: 16px;
    font-family: "pfhandbookpro-bold",sans-serif;
    color:  #19503e;
    margin-bottom: 13px
}

@media screen and (max-width: 1020px) {
    .blog-detail {
        margin-bottom:20px
    }

    .blog-detail p {
        margin-bottom: 20px
    }

    .blog-detail .author-tag {
        font-size: 1.6rem;
        line-height: 16px
    }
}

@media screen and (max-width: 768px) {
    .blog-detail .img-right,.blog-detail .img-left {
        float:none;
        margin-left: 0
    }
}

#blogForm-modal .modal-content {
    border-radius: 0;
    width: 410px
}

@media screen and (max-width: 600px) {
    #blogForm-modal .modal-content {
        width:344px
    }
}

#blogForm-modal .modalContainer {
    width: 408px;
    max-height: 100%;
    border-radius: 0;
    margin: 1px;
    border: solid 1px #979797
}

@media screen and (max-width: 600px) {
    #blogForm-modal .modalContainer {
        width:342px
    }
}

#blogForm-modal .modalContainer .blog-form-wrapper {
    box-shadow: none;
    border: none;
    padding: 0 15px 0 0
}

#blogForm-modal .modalContainer .blog-form-wrapper ul.radio-group-plan li:last-child {
    margin-top: 10px
}

#blogForm-modal .modalContainer .blog-form-wrapper .blog-form-text {
    padding-bottom: 10px
}

#blogForm-modal .modalContainer .blog-form-wrapper .blog-form-text p {
    line-height: 22px
}

#blogForm-modal .modalContainer .blog-form-wrapper .btn-wrapper {
    display: block !important;
    padding-bottom: 15px
}

#blogFormThankyou .Thank-you-A-represe {
    font-size: 16px;
    display: block
}

@media screen and (max-width: 575px) {
    #blogFormThankyou .Thank-you-A-represe {
        padding:0 20px
    }
}

#blogFormThankyou .Continue-to-ABHI-web {
    text-transform: uppercase
}

.blog-form-wrapper {
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.13);
    border: solid 1px #979797;
    background-color: #fff;
    padding: 18px 20px;
    position: relative
}

.blog-form-wrapper .blog-form-text {
    padding-bottom: 15px
}

.blog-form-wrapper .blog-form-text p {
    font-size: 20px;
    line-height: 29px;
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin-bottom: 10px
}

.blog-form-wrapper .blog-form-text .brand-highlight {
    color:  #19503e
}

.blog-form-wrapper .blog-form-failure-message {
    text-align: center;
    display: none
}

.blog-form-wrapper .blog-form-failure-message p {
    color: #bd2b2b;
    margin-bottom: 10px
}

.blog-form-wrapper #blogPost p {
    margin-bottom: 10px !important
}

.blog-form-wrapper #blogPost .btn-wrapper {
    display: block;
    padding-top: 5px;
    padding-bottom: 25px
}

@media screen and (max-width: 1020px) {
    .blog-form-wrapper #blogPost .btn-wrapper {
        display:none
    }
}

.blog-form-wrapper #blogPost label {
    display: block;
    opacity: .7;
    margin-bottom: 8px
}

.blog-form-wrapper #blogPost input {
    padding: 10px 15px 12px;
    border-radius: 4px;
    border: solid 1px #cdcece;
    width: 100%;
    color: #000
}

.blog-form-wrapper #blogPost input::-webkit-input-placeholder {
    opacity: .25;
    color: #000
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost input {
        padding:7px 10px 7px;
        font-size: 1.4rem
    }
}

.blog-form-wrapper #blogPost input:-ms-input-placeholder {
    opacity: .25;
    color: #000
}

.blog-form-wrapper #blogPost input::placeholder {
    opacity: .25;
    color: #000
}

.blog-form-wrapper #blogPost input.error:-ms-input-placeholder {
    opacity: 1;
    color: #bd2b2b
}

.blog-form-wrapper #blogPost input.error::placeholder {
    opacity: 1;
    color: #bd2b2b
}

.blog-form-wrapper #blogPost .cityfield,.blog-form-wrapper #blogPost .statefield {
    display: inline-block;
    width: 44.5%;
    margin-bottom: 25px
}

@media screen and (max-width: 1020px) {
    .blog-form-wrapper #blogPost .cityfield,.blog-form-wrapper #blogPost .statefield {
        display:none
    }
}

.blog-form-wrapper #blogPost .statefield {
    float: right
}

.blog-form-wrapper #blogPost .form-btn {
    background-color:  #19503e;
    color: #fff;
    -webkit-appearance: none;
    font-family: "pfhandbookpro-bold",sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    border: 0;
    border-radius: 2px;
    padding: 12px 32px
}

.blog-form-wrapper #blogPost .form-btn.disabled {
    background-color: #9dafbd
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .form-btn {
        font-size:16px;
        padding: 8px 27px
    }
}

.blog-form-wrapper #blogPost .fieldgroup {
    margin-bottom: 20px
}

.blog-form-wrapper #blogPost .fieldgroup textarea {
    padding: 10px 15px 12px;
    resize: none;
    height: 65px;
    width: 100%;
    border: solid 1px #cdcece;
    border-radius: 4px
}

.blog-form-wrapper #blogPost .fieldgroup textarea:-ms-input-placeholder {
    opacity: .25;
    color: #000
}

.blog-form-wrapper #blogPost .fieldgroup textarea::placeholder {
    opacity: .25;
    color: #000
}

.blog-form-wrapper #blogPost .fieldgroup textarea.error:-ms-input-placeholder {
    opacity: 1;
    color: #bd2b2b
}

.blog-form-wrapper #blogPost .fieldgroup textarea.error::placeholder {
    opacity: 1;
    color: #bd2b2b
}

.blog-form-wrapper #blogPost .fieldgroup span.error {
    background: transparent !important;
    border: none !important;
    font-size: 12.6px;
    font-family: "pfencoresanspro-book",sans-serif;
    color:  #19503e
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup {
        margin-bottom:10px
    }
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field {
    position: relative
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-txt {
    position: absolute;
    display: none;
    right: 30px;
    width: 215.1px;
    padding: 7px 9px;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.16);
    border: solid 1px #dfdfdf;
    background-color: #fff;
    border-radius: 3px;
    margin-right: 6px;
    top: -9px;
    z-index: 9
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-txt:after,.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-txt:before {
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-txt:after {
    top: 11px;
    border-color: transparent transparent transparent #fff;
    border-width: 7px
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-txt:before {
    top: 10px;
    border-color: transparent transparent transparent #dfdfdf;
    border-width: 8px
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .otp-label {
    width: auto;
    display: inline-block
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .icon-help {
    float: right;
    font-size: 8px;
    border: 1px solid #cdcece;
    border-radius: 50%;
    padding: 5px 5px 3px 5px;
    line-height: normal;
    margin: 0;
    color: #000;
    cursor: pointer
}

.blog-form-wrapper #blogPost .fieldgroup.otp-field .resend-otp,.blog-form-wrapper #blogPost .fieldgroup.otp-field .resend-otp-timer {
    visibility: hidden;
    cursor: pointer;
    color:  #19503e;
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 15px 0 0;
    font-weight: 500
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.otp-field .resend-otp,.blog-form-wrapper #blogPost .fieldgroup.otp-field .resend-otp-timer {
        padding:8px 15px 0 0;
        font-size: 1.4rem
    }
}

.blog-form-wrapper #blogPost .fieldgroup.phone-field {
    position: relative
}

.blog-form-wrapper #blogPost .fieldgroup.phone-field input {
    width: 73%;
    display: inline-block;
    float: left;
    border-right: 0 !important;
    border-right-style: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.blog-form-wrapper #blogPost .fieldgroup.phone-field .otp-button {
    cursor: pointer;
    background-color:  #19503e;
    padding: 12px 8px;
    float: right;
    text-align: center;
    color: #fff;
    width: 27%;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 0 none
}

@media screen and (max-width: 1120px) {
    .blog-form-wrapper #blogPost .fieldgroup.phone-field .otp-button {
        padding:12px 3px
    }
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.phone-field .otp-button {
        padding:8px 3px;
        font-size: 1.4rem
    }
}

.blog-form-wrapper #blogPost .fieldgroup.phone-field .otp-button.disabled {
    background-color: #9dafbd
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions {
    height: auto !important;
    margin-bottom: 7px
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions p {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.terms-conditions p {
        font-size:1.4rem
    }
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions a {
    text-decoration: underline !important;
    border-bottom: none !important;
    font-family: "pfhandbookpro-medium",sans-serif
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.terms-conditions a {
        font-size:1.4rem
    }
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions input:checked~.checkbox-label:before {
    border: 2px solid #000
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions input:checked~.checkbox-label:after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0 !important;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid  #19503e
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.terms-conditions input:checked~.checkbox-label:after {
        left:6px;
        top: 5px;
        width: 5px;
        height: 8px
    }
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions .checkbox-label {
    position: relative;
    padding-left: 35px;
    display: block
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.terms-conditions .checkbox-label {
        padding-left:25px
    }
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions .checkbox-label:before {
    content: "";
    top: -2px;
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px;
    z-index: 1;
    border: solid 2px #cdcece;
    border-radius: 3px
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.terms-conditions .checkbox-label:before {
        top:2px;
        height: 16px;
        width: 16px
    }
}

.blog-form-wrapper #blogPost .fieldgroup.terms-conditions input {
    margin-right: 15px;
    float: left;
    height: 20px;
    width: 20px;
    z-index: 10;
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.blog-form-wrapper #blogPost .fieldgroup.zip-field input {
    width: 73%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.blog-form-wrapper #blogPost .fieldgroup.zip-field .pin-search-button {
    background-color:  #19503e;
    cursor: pointer;
    padding: 12px 8px;
    float: right;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 27%;
    border: 0 none
}

.blog-form-wrapper #blogPost .fieldgroup.zip-field .pin-search-button.disabled {
    background-color: #9dafbd
}

@media(max-width: 767px) {
    .blog-form-wrapper #blogPost .fieldgroup.zip-field .pin-search-button {
        padding:8px 8px;
        font-size: 1.4rem
    }
}

.blog-form-wrapper #blogPost .fieldgroup.otp-error #otp-error {
    color:  #19503e;
    margin-top: 5px;
    display: block;
    position: relative
}

@media screen and (max-width: 1020px) {
    .blog-form-wrapper #blogPost .mandatory-div {
        display:none
    }
}

.blog-form-wrapper #blogPost .mandatory-div p {
    font-family: "pfhandbookpro-lightitalic",sans-serif;
    color: #000
}

.blog-form-wrapper .submit-btn {
    background-color:  #19503e;
    color: #fff;
    -webkit-appearance: none;
    font-family: "pfhandbookpro-bold",sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    border: 0;
    padding: 12px 32px;
    display: none;
    cursor: pointer
}

@media screen and (max-width: 1020px) {
    .blog-form-wrapper .submit-btn {
        display:block
    }
}

.blog-form-wrapper .thankyou-msg {
    position: absolute;
    top: 50%;
    display: none;
    left: 50%;
    width: 70%;
    margin-left: -35%;
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%)
}

.blog-form-wrapper .thankyou-txt {
    font-size: 16px;
    line-height: 25px;
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    text-align: center
}

@media(max-width: 767px) {
    .blog-form-wrapper.thankyou-msg-wrapper {
        height:350px
    }
}

.lead-form-title {
    display: none
}

.blog-post-expanded .lead-form-title--expaned {
    display: block
}

.blog-post-expanded #blogPost .fieldgroup,.blog-post-expanded #blogPost .btn-wrapper,.blog-post-expanded #blogPost .mandatory-div {
    display: block
}

@media(max-width: 1020px) {
    .blog-post-expanded #blogPost .cityfield,.blog-post-expanded #blogPost .statefield {
        display:inline-block
    }
}

.blog-post-expanded #submit-click,.blog-post-expanded #submit-click-lead {
    display: none
}

.blog-post-expanded.blog-post-full-width-expanded .blog-form-text {
    padding-left: 5px;
    padding-right: 5px
}

@media screen and (max-width: 767px) {
    .blog-post-expanded.blog-post-full-width-expanded .blog-form-text {
        padding-left:0;
        padding-right: 0
    }
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost {
    margin-left: -20px;
    margin-right: -20px
}

@media screen and (max-width: 767px) {
    .blog-post-expanded.blog-post-full-width-expanded #blogPost {
        margin-left:0;
        margin-right: 0
    }
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .fieldgroup {
    float: left;
    width: calc(50% - 50px);
    margin-left: 25px;
    margin-right: 25px;
    height: 50px
}

@media screen and (max-width: 767px) {
    .blog-post-expanded.blog-post-full-width-expanded #blogPost .fieldgroup {
        width:100%;
        margin-left: 0;
        margin-right: 0;
        height: auto !important
    }
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .fieldgroup.captchafield {
    height: 120px
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .fieldgroup.captchafield,.blog-post-expanded.blog-post-full-width-expanded #blogPost .fieldgroup.clearfield {
    clear: both
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .btn-wrapper {
    float: left;
    width: calc(50% - 50px);
    margin-left: 25px;
    margin-right: 25px
}

@media screen and (max-width: 767px) {
    .blog-post-expanded.blog-post-full-width-expanded #blogPost .btn-wrapper {
        width:100%;
        margin-left: 0;
        margin-right: 0;
        height: auto !important
    }
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .mandatory-div {
    margin-top: 5px
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .mandatory-div p {
    font-family: "pfhandbookpro-lightitalic",sans-serif
}

.blog-post-expanded.blog-post-full-width-expanded #blogPost .blog-checkbox,.blog-post-expanded.blog-post-full-width-expanded #blogPost .blog-radio {
    width: calc(100% - 50px);
    margin-bottom: 10px
}

@media(max-width: 767px) {
    .blog-post-expanded.blog-post-full-width-expanded #blogPost .cityfield,.blog-post-expanded.blog-post-full-width-expanded #blogPost .statefield {
        width:calc(50% - 9px)
    }

    .blog-post-expanded.blog-post-full-width-expanded #blogPost .cityfield {
        margin-left: 9px
    }

    .blog-post-expanded.blog-post-full-width-expanded #blogPost .statefield {
        margin-right: 9px
    }
}

.blog-post-collapsed .lead-form-title--collapsed {
    display: block
}

.blog-post-collapsed #blogPost .fieldgroup,.blog-post-collapsed #blogPost .cityfield,.blog-post-collapsed #blogPost .statefield,.blog-post-collapsed #blogPost .btn-wrapper,.blog-post-collapsed #blogPost .mandatory-div {
    display: none
}

.blog-post-collapsed #submit-click,.blog-post-collapsed #submit-click-lead {
    display: block
}

@media(max-width: 1020px) {
    .blog-post-expanded--mobile .lead-form-title--expanded {
        display:block
    }
}

@media(max-width: 1020px) {
    .blog-post-expanded--mobile #blogPost .fieldgroup,.blog-post-expanded--mobile #blogPost .btn-wrapper,.blog-post-expanded--mobile #blogPost .mandatory-div {
        display:block
    }
}

@media(max-width: 1020px) {
    .blog-post-expanded--mobile #blogPost .cityfield,.blog-post-expanded--mobile #blogPost .statefield {
        display:inline-block
    }
}

@media(max-width: 1020px) {
    .blog-post-expanded--mobile #submit-click,.blog-post-expanded--mobile #submit-click-lead {
        display:none
    }
}

@media(max-width: 1020px) {
    .blog-post-collapsed--mobile .lead-form-title--collapsed {
        display:block
    }
}

@media(max-width: 1020px) {
    .blog-post-collapsed--mobile .lead-form-title--expaned {
        display:none
    }
}

@media(max-width: 1020px) {
    .blog-post-collapsed--mobile #blogPost .fieldgroup,.blog-post-collapsed--mobile #blogPost .cityfield,.blog-post-collapsed--mobile #blogPost .statefield,.blog-post-collapsed--mobile #blogPost .btn-wrapper,.blog-post-collapsed--mobile #blogPost .mandatory-div {
        display:none
    }
}

@media(max-width: 1020px) {
    .blog-post-collapsed--mobile #submit-click,.blog-post-collapsed--mobile #submit-click-lead {
        display:block
    }
}

.blog-post-card #blogPost .fieldgroup,.blog-post-card #blogPost .cityfield,.blog-post-card #blogPost .statefield,.blog-post-card #blogPost .btn-wrapper,.blog-post-card #blogPost .mandatory-div {
    display: none
}

.blog-post-card #submit-click,.blog-post-card #submit-click-lead {
    display: block
}

.terms-conditions-div {
    display: none;
    position: fixed;
    background: transparent;
    z-index: 99999;
    color: #000;
    display: none;
    border: 0 solid #525252;
    text-align: left;
    top: 50%;
    left: 50%;
    background-color: #fff;
    width: 820px;
    padding: 30px 30px 30px;
    left: 50%;
    max-height: 550px;
    overflow-y: scroll
}

@media screen and (max-width: 1020px) {
    .terms-conditions-div {
        width:712px
    }
}

@media screen and (max-width: 767px) {
    .terms-conditions-div {
        width:80%;
        height: 93%;
        overflow: auto
    }
}

.terms-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .75
}

.popup {
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: fixed
}

.popup .terms-overlay {
    position: fixed;
    z-index: 10;
    background-color: #000
}

.popup .terms-conditions-title {
    font-size: 20px;
    line-height: 29px;
    color:  #19503e;
    font-family: "pfhandbookpro-medium",sans-serif;
    margin-bottom: 20px
}

.popup .terms-conditions-content p {
    font-size: 1.4rem;
    margin-bottom: 44px
}

.popup .terms-conditions-content p:last-child {
    margin-bottom: 0
}

.popup .popup-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 52px;
    background-color: #5a5a5a
}

.popup .popup-close:hover {
    background-color:  #19503e
}

.popup .popup-close:before,.popup .popup-close:after {
    position: absolute;
    left: 50%;
    content: " ";
    height: 33px;
    width: 2px;
    background-color: #fff;
    top: 10px
}

.popup .popup-close:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.popup .popup-close:after {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.popover-body {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    color: #000;
    padding: 9px 14px
}

.check-ok {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px
}

.check-ok-svg {
    width: 212px;
    height: 212px;
    display: block
}

.blog-checkbox {
    height: auto !important
}

.blog-checkbox input:checked~.checkbox-label:before {
    border: 2px solid #000
}

.blog-checkbox input:checked~.checkbox-label:after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0 !important;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid  #19503e
}

@media(max-width: 767px) {
    .blog-checkbox input:checked~.checkbox-label:after {
        left:6px;
        top: 5px;
        width: 5px;
        height: 8px
    }
}

.blog-checkbox .checkbox-label {
    position: relative;
    padding-left: 30px;
    display: block
}

@media(max-width: 767px) {
    .blog-checkbox .checkbox-label {
        padding-left:25px
    }

    .blog-checkbox .checkbox-label p {
        font-size: 1.4rem
    }
}

.blog-checkbox .checkbox-label:before {
    content: "";
    top: 0;
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px;
    z-index: 1;
    border: solid 2px #cdcece;
    border-radius: 3px
}

@media(max-width: 767px) {
    .blog-checkbox .checkbox-label:before {
        top:2px;
        height: 16px;
        width: 16px
    }
}

.blog-checkbox input {
    margin-right: 15px;
    float: left;
    height: 20px;
    width: 20px;
    z-index: 10;
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.blog-checkbox--label-container label:first-child {
    margin-bottom: 15px !important
}

@media(max-width: 767px) {
    .blog-checkbox--label-container label:first-child {
        margin-bottom:20px !important;
        font-size: 1.4rem
    }
}

.blog-radio {
    height: auto !important
}

.blog-radio ul {
    padding-top: 10px;
    padding-left: 0
}

.blog-radio ul.full-width {
    width: 60%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 0
}

@media screen and (max-width: 767px) {
    .blog-radio ul.full-width {
        column-count:1;
        padding-top: 0;
        width: 100%
    }
}

.blog-radio ul.full-width--rhs {
    width: 100%
}

.blog-radio ul.full-width--rhs li {
    width: 33%
}

.blog-radio ul li {
    font-size: 18px;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 15px;
    width: 33%
}

.blog-radio ul li:before {
    display: none
}

.blog-radio ul li span {
    opacity: .7
}

@media screen and (max-width: 767px) {
    .blog-radio ul li {
        margin-bottom:21px;
        width: 33%
    }
}

.blog-radio .form-check {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0;
    padding-top: 1px;
    cursor: pointer;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media(max-width: 767px) {
    .blog-radio .form-check {
        font-size:1.4rem;
        padding-left: 25px
    }
}

.blog-radio .form-check .radio {
    opacity: 1 !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #cdcece
}

.blog-radio .form-check .radio:after {
    content: "";
    position: absolute;
    display: none;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%
}

@media(max-width: 767px) {
    .blog-radio .form-check .radio:after {
        top:2px;
        left: 2px;
        width: 8px;
        height: 8px
    }
}

@media(max-width: 767px) {
    .blog-radio .form-check .radio {
        height:16px;
        width: 16px
    }
}

.blog-radio .form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 1
}

.blog-radio .form-check input:checked~.checkmark {
    border-radius: 4px;
    box-shadow: 0 0 6px 0 #cdcece;
    background-color: #fff;
    border: 2px solid #cdcece;
    outline: none
}

.blog-radio .form-check input:checked~.checkmark:after {
    display: block
}

.blog-radio .form-check input:checked~.radio {
    background-color: #fff;
    border: 2px solid #cdcece;
    box-shadow: 0 0 6px 0 #cdcece
}

.blog-radio .form-check input:checked~.radio:after {
    display: block
}

.two-columns .blog-form-wrapper {
    margin-bottom: 25px
}

.radio-group-plan li {
    margin-bottom: 0 !important
}

@media screen and (max-width: 576px) {
    ul.radio-group-plan li:last-child {
        margin-top:10px
    }
}

#blogForm.right ul.radio-group-plan li:last-child {
    margin-top: 10px !important
}

@media screen and (max-width: 767px) {
    #blogForm .blog-radio label:first-child {
        font-size:1.4rem
    }
}

.blog-form-wrapper .blog-error {
    font-size: 1.4rem;
    color:  #19503e
}

@media screen and (max-width: 767px) {
    .blog-form-wrapper .blog-error {
        font-size:1.2rem
    }
}

.blog-form-wrapper #otpText,.blog-form-wrapper #otpText-popup,.blog-form-wrapper #otpText-lead {
    visibility: hidden;
    color: #000
}

.blog-form-wrapper .dynamic-tnc-allfields {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

.blog-form-wrapper .dynamic-tnc-allfields .terms-conditions {
    margin-bottom: 0 !important
}

@media screen and (max-width: 898px) and (min-width:768px) {
    .otp-button {
        font-size:1.4rem
    }
}

@media screen and (max-width: 576px) {
    #blogForm .lhs-checkbox>div {
        padding-right:0
    }
}

@media screen and (max-width: 576px) {
    #blogForm-lead .lhs-checkbox>div {
        padding-right:0
    }
}

#blogForm-lead #dropdown-field {
    opacity: 1;
    padding-left: 5px !important
}

#blogForm-lead .selectize-input {
    cursor: pointer;
    width: 100%
}

@media screen and (max-width: 767px) {
    #blogForm-lead .selectize-input {
        height:40px
    }
}

#blogForm-lead .selectize-dropdown-content .option {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #f1f3f6
}

#blogForm-lead .selectize-dropdown-content .capital-radio {
    width: 20px;
    height: 20px
}

#blogForm-lead .selectize-dropdown-content .capital-radio::after {
    width: 6px;
    height: 6px
}

@media screen and (max-width: 767px) {
    #blogForm-lead .selectize-dropdown-content .capital-radio {
        width:16px;
        height: 16px
    }

    #blogForm-lead .selectize-dropdown-content .capital-radio::after {
        top: 3px;
        left: 3px
    }
}

#blogForm-lead .blogform-lead-dropdown {
    display: none;
    width: 100%;
    top: 45px;
    left: 0;
    visibility: visible
}

@media screen and (max-width: 767px) {
    #blogForm-lead .blogform-lead-dropdown {
        top:42px
    }
}

#blogForm-lead .blog-radio-lead {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center;
    align-items: center
}

#blogForm-lead .blog-radio-lead .age-label {
    font-size: 18px;
    -ms-flex: 1;
    flex: 1
}

@media screen and (max-width: 767px) {
    #blogForm-lead .blog-radio-lead .age-label {
        font-size:14px
    }
}

#blogForm-lead .blog-radio-lead ul.check-age {
    display: -ms-flexbox;
    display: flex;
    margin-right: 17px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

#blogForm-lead .blog-radio-lead ul.check-age li {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0
}

#blogForm-lead .blog-radio-lead ul.check-age li:first-child {
    -ms-grid-column-align: flex-end;
    justify-items: flex-end
}

@media screen and (min-width: 1201px) {
    #blogForm-lead .blog-radio-lead ul.check-age li:first-child {
        margin-right:20px
    }
}

#blogForm-lead .resend-otp-timer {
    color: #9dafbd !important
}

#blogForm-lead .thankyou-txt span {
    font-weight: bold
}

#blogForm-lead #phonelead {
    padding-left: 42px
}

@media screen and (max-width: 767px) {
    #blogForm-lead #phonelead {
        padding-left:38px
    }
}

@media screen and (max-width: 767px) {
    #blogForm-lead .country-code-India {
        padding:7px 5px 7px 7px
    }
}

#blogForm-lead .country-code-India .country-code-India-inner {
    font-size: 18px
}

@media screen and (max-width: 767px) {
    #blogForm-lead .country-code-India .country-code-India-inner {
        font-size:14px
    }
}

.block-heading {
    clear: both
}

.dashboard__main-wrapper {
    margin-top: 24px;
    border-radius: 3px;
    box-shadow: 0 6px 20px -9px rgba(0,0,0,.22);
    background-color: #fff
}

@media screen and (min-width: 1200px) {
    .dashboard__main-wrapper {
        margin-top:30px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__main-wrapper {
        margin-top:29px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__main-wrapper {
        margin-left:-15px;
        margin-right: -15px;
        box-shadow: none
    }
}

@media screen and (max-width: 575px) {
    .dashboard__main-wrapper {
        margin-top:15px
    }
}

.dashboard__main-title {
    width: 22.187%;
    line-height: 1.07;
    letter-spacing: normal;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.4rem;
    padding: 7px 14px 0 14px
}

@media screen and (min-width: 1200px) {
    .dashboard__main-title {
        font-size:1.7rem;
        padding: 11px 17px 0 17px
    }
}

@media screen and (min-width: 1830px) {
    .dashboard__main-title {
        font-size:2.2rem;
        padding: 25px 17px 12px 24px
    }
}

@media screen and (max-width: 1830px) and (min-width:1680px) {
    .dashboard__main-title {
        font-size:2.1rem;
        padding: 25px 17px 12px 24px
    }
}

.dashboard__main-title.theme-investing {
    background-color: rgba(217,220,203,.3);
    color: #3e593c
}

.dashboard__main-title.theme-protecting {
    background-color: rgba(237,201,198,.4);
    color: #6a4742
}

.dashboard__main-title.theme-financing {
    background-color: rgba(236,221,192,.5);
    color: #695934
}

@media screen and (max-width: 991px) {
    .dashboard__main-title {
        display:block;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
        padding: 10px 16px;
        font-size: 1.8rem
    }
}

@media screen and (max-width: 767px) {
    .dashboard__main-title {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__main-title {
        font-size:1.1rem;
        padding: 6px 16px
    }
}

.dashboard__top-wrapper {
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 991px) {
    .dashboard__top-wrapper {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

.dashboard__bottom-wrapper {
    display: none
}

.dashboard__bottom-wrapper.active {
    display: block
}

.dashboard__bottom-wrapper.theme-investing .dashboard__left-inner-wrapper {
    background-color: rgba(217,220,203,.3)
}

@media screen and (max-width: 991px) {
    .dashboard__bottom-wrapper.theme-investing .dashboard__left-inner-wrapper {
        background-color:transparent;
        position: relative
    }
}

.dashboard__bottom-wrapper.theme-protecting .dashboard__left-inner-wrapper {
    background-color: rgba(237,201,198,.4)
}

@media screen and (max-width: 991px) {
    .dashboard__bottom-wrapper.theme-protecting .dashboard__left-inner-wrapper {
        background-color:transparent;
        position: relative
    }
}

.dashboard__bottom-wrapper.theme-financing .dashboard__left-inner-wrapper {
    background-color: rgba(236,221,192,.5)
}

@media screen and (max-width: 991px) {
    .dashboard__bottom-wrapper.theme-financing .dashboard__left-inner-wrapper {
        background-color:transparent;
        position: relative
    }
}

.dashboard__bottom-inner-wrapper {
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 991px) {
    .dashboard__bottom-inner-wrapper {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.dashboard__left-inner-wrapper {
    width: 22.187%;
    padding: 0
}

@media screen and (max-width: 991px) {
    .dashboard__left-inner-wrapper {
        width:100%
    }
}

.dashboard__right-inner-wrapper {
    width: 77.814%;
    padding: 15px 15px 20px 18px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-inner-wrapper {
        padding:16px 20px 20px 15px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-inner-wrapper {
        padding:25px 35px 20px 26px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__right-inner-wrapper {
        width:100%;
        position: relative
    }
}

.dashboard__inner-content-wrapper {
    display: none
}

.dashboard__inner-content-wrapper.active {
    display: block
}

.dashboard__inner-content-wrapper .normal-link {
    padding-right: 20px;
    padding-bottom: 30px;
    padding-top: 20px
}

.dashboard__inner-content-wrapper .normal-link a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    color: #000;
    display: inline-block;
    border-bottom: 1px solid transparent
}

.dashboard__inner-content-wrapper .normal-link a:hover {
    border-color: #000
}

.dashboard__inner-content-wrapper .dashboard__cta {
    margin-bottom: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__inner-content-wrapper .dashboard__cta {
        margin-bottom:12px;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__inner-content-wrapper .dashboard__cta {
        margin-bottom:16.8px;
        line-height: 33.6px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__inner-content-wrapper .dashboard__cta {
        margin-bottom:20px
    }
}

.dashboard__inner-content-wrapper .dashboard__cta a,.dashboard__inner-content-wrapper .dashboard__cta button {
    padding: 12px 21px;
    border-radius: 2px
}

@media screen and (min-width: 1200px) {
    .dashboard__inner-content-wrapper .dashboard__cta a,.dashboard__inner-content-wrapper .dashboard__cta button {
        border-radius:3px;
        padding-left: 27px;
        padding-right: 27px;
        padding-top: 18px;
        padding-bottom: 18px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__inner-content-wrapper .dashboard__cta a,.dashboard__inner-content-wrapper .dashboard__cta button {
        border-radius:3.4px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 13px;
        padding-bottom: 13px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__inner-content-wrapper .dashboard__cta a,.dashboard__inner-content-wrapper .dashboard__cta button {
        font-size:10px;
        line-height: 12px;
        padding: 8px
    }
}

.dashboard__static-content-wrapper {
    display: -ms-flexbox;
    display: flex
}

.dashboard__static--left-content-wrapper {
    width: 22.187%;
    padding: 14px
}

@media screen and (min-width: 1200px) {
    .dashboard__static--left-content-wrapper {
        padding:23px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__static--left-content-wrapper {
        padding:23px
    }
}

.dashboard__static--left-content-wrapper.theme-investing {
    background-color: rgba(217,220,203,.3)
}

.dashboard__static--left-content-wrapper.theme-protecting {
    background-color: rgba(237,201,198,.4)
}

.dashboard__static--left-content-wrapper.theme-financing {
    background-color: rgba(236,221,192,.5)
}

@media screen and (max-width: 991px) {
    .dashboard__static--left-content-wrapper {
        display:none
    }
}

.dashboard__static--right-content-wrapper {
    width: 77.814%;
    padding: 20px 0 31px 0
}

@media screen and (max-width: 991px) {
    .dashboard__static--right-content-wrapper {
        width:100%;
        padding: 0 0 21px 0
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__static--right-content-wrapper {
        padding:0 0 31px 0
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__static--right-content-wrapper {
        padding:0 0 13px 1px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__static--right-content-wrapper {
        padding:0 0 13px 1px
    }
}

.dashboard__cta {
    display: inline-block;
    margin-top: auto
}

.dashboard__cta a,.dashboard__cta button {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    text-align: center;
    color: #fff;
    padding: 7px 40px 8px;
    border-radius: 1.6px;
    display: inline-block;
    text-decoration: none;
    border: none
}

.theme-investing .dashboard__cta a,.theme-investing .dashboard__cta button {
    background-color: #969f6e
}

.theme-protecting .dashboard__cta a,.theme-protecting .dashboard__cta button {
    background-color: #da9089
}

.theme-financing .dashboard__cta a,.theme-financing .dashboard__cta button {
    background-color: #d4ae69
}

.dashboard__cta a:hover,.dashboard__cta a:focus,.dashboard__cta button:hover,.dashboard__cta button:focus {
    color: #fff;
    border-bottom: none
}

.dashboard__table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
    margin-bottom: 26px
}

.dashboard__table-wrapper::-webkit-scrollbar {
    height: 5px
}

.dashboard__table-wrapper::-webkit-scrollbar-track {
    background: rgba(153,153,153,.25)
}

.dashboard__table-wrapper::-webkit-scrollbar-thumb {
    background: #999
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper {
        margin-bottom:12px
    }
}

.dashboard__table-wrapper table {
    border-right: 1px solid #e5e5e5;
    min-width: 690px;
    width: 100%
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table {
        min-width:440px
    }
}

.dashboard__table-wrapper table tr th {
    background-color: #999;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.4rem;
    padding: 14px 10px;
    color: #fff
}

@media screen and (min-width: 1200px) {
    .dashboard__table-wrapper table tr th {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__table-wrapper table tr th {
        font-size:2.4rem
    }
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr th {
        font-size:.9rem;
        line-height: 11px;
        padding: 9px 7px
    }
}

.dashboard__table-wrapper table tr th.center {
    text-align: center
}

.dashboard__table-wrapper table tr th:first-child {
    padding-left: 20px
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr th:first-child {
        padding-left:14px
    }
}

.dashboard__table-wrapper table tr th:last-child {
    padding-right: 20px
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr th:last-child {
        padding-right:14px
    }
}

.dashboard__table-wrapper table tr td {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    line-height: 18px;
    padding: 26px 10px;
    color: #353535;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top
}

@media screen and (min-width: 1200px) {
    .dashboard__table-wrapper table tr td {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__table-wrapper table tr td {
        font-size:2.4rem
    }
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr td {
        font-size:.9rem;
        line-height: 11px;
        padding: 16px 7px
    }
}

.dashboard__table-wrapper table tr td.center {
    text-align: center
}

.dashboard__table-wrapper table tr td:first-child {
    padding-left: 20px
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr td:first-child {
        padding-left:14px
    }
}

.dashboard__table-wrapper table tr td:last-child {
    padding-right: 20px
}

@media screen and (max-width: 575px) {
    .dashboard__table-wrapper table tr td:last-child {
        padding-right:14px
    }
}

.dashboard__no-data-copy {
    height: 256px;
    padding: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: column;
    flex-flow: column;
    border: 1px solid #e5e5e5;
    margin-top: 12px;
    margin-bottom: 20px
}

@media screen and (max-width: 767px) {
    .dashboard__no-data-copy {
        border:0 none
    }
}

@media screen and (max-width: 575px) {
    .dashboard__no-data-copy {
        height:175px
    }
}

.dashboard__no-data-copy p {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.8rem;
    line-height: 20px;
    color: #000;
    letter-spacing: .2px
}

@media screen and (max-width: 575px) {
    .dashboard__no-data-copy p {
        font-size:1.1rem;
        line-height: 13px;
        margin-bottom: 8px
    }
}

.dashboard__no-data-copy .dashboard__cta {
    margin-top: 0
}

@media screen and (max-width: 575px) {
    .dashboard__invest-now-content-wrapper,.dashboard__my-services-content-wrapper,.dashboard__right-protect-now-content-wrapper {
        min-height:auto
    }
}

.dashboard__portfolio-inner-content-wrapper,.dashboard__right-copy-wrapper {
    clear: both
}

.dashboard__table-wrapper .dashboard__table-v2 tr th,.dashboard__table-wrapper .dashboard__table-v2 tr td {
    text-align: center
}

.dashboard__table-wrapper .dashboard__table-v2 tr th:first-child,.dashboard__table-wrapper .dashboard__table-v2 tr td:first-child {
    text-align: left
}

.dashboard__table-wrapper .dashboard__table-v2 tr td {
    padding: 10px 25px;
    border-bottom: none
}

@media screen and (min-width: 1200px) {
    .dashboard__table-wrapper .dashboard__table-v2 tr td {
        padding:18px 25px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__table-wrapper .dashboard__table-v2 tr td {
        padding:25px 25px
    }
}

.dashboard__table-wrapper .dashboard__table-v2 tbody tr {
    display: none
}

.dashboard__table-wrapper .dashboard__table-v2 tbody tr.visible {
    display: table-row
}

.formatMaxWidth {
    max-width: 286px !important
}

@media screen and (min-width: 1200px) {
    .formatMaxWidth {
        max-width:328px !important
    }
}

@media screen and (min-width: 1680px) {
    .formatMaxWidth {
        max-width:469px !important
    }
}

.hr {
    width: 100%;
    border-top: 2px solid rgba(151,151,151,.2) !important;
    height: 1px;
    margin: 12px 0 15px 0
}

@media screen and (min-width: 1200px) {
    .hr {
        height:2px;
        margin-top: 14px;
        margin-bottom: 18px;
        border-top-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .hr {
        height:2px;
        margin-top: 20.7px;
        margin-bottom: 25px;
        border-top-width: 1px
    }
}

.tr-view-more {
    font-size: 1.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    text-decoration: underline;
    border: none;
    margin-left: 20px;
    text-transform: uppercase;
    display: inline-block
}

.theme-investing .tr-view-more {
    color: #969f6e
}

.theme-protecting .tr-view-more {
    color: #da9089
}

.theme-financing .tr-view-more {
    color: #d4ae69
}

.tr-view-more:hover,.tr-view-more:focus,.tr-view-more:active {
    border: none !important;
    text-decoration: underline
}

.breadcrumbs {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    color: #6d7278
}

@media screen and (min-width: 1200px) {
    .breadcrumbs {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .breadcrumbs {
        font-size:2.3rem
    }
}

.breadcrumbs span {
    padding-left: 2px;
    padding-right: 2px;
    line-height: 20px
}

@media screen and (min-width: 1200px) {
    .breadcrumbs span {
        padding-left:2.4px;
        padding-right: 2.4px;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .breadcrumbs span {
        padding-left:4px;
        padding-right: 4px;
        line-height: 34px
    }
}

.breadcrumbs span:last-child {
    padding-left: 0;
    color:  #19503e
}

.breadcrumbs a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.4rem;
    color: #6d7278;
    border-color: #6d7278
}

@media screen and (min-width: 1200px) {
    .breadcrumbs a {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .breadcrumbs a {
        font-size:2.3rem
    }
}

.breadcrumbs a:hover {
    border-bottom: none
}

.breadcrumbs-component {
    margin-bottom: 0
}

@media screen and (max-width: 767px) {
    .breadcrumbs {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }

    .breadcrumbs a {
        font-size: calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.tooltip-custom {
    cursor: pointer;
    position: relative;
    z-index: 9;
    color: #6a4742;
    width: 12px;
    height: 12px;
    display: inline-block
}

.tooltip-custom span {
    display: none
}

.tooltip-custom:hover span {
    display: block;
    position: absolute;
    font-size: 10px;
    line-height: 14px;
    top: 100%;
    width: 82px;
    left: 80%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    border-radius: .3px;
    box-shadow: 4px 4px 16px 0 rgba(0,0,0,.08);
    background-color: #fff;
    color: #000;
    z-index: 99;
    font-family: "pfhandbookpro-medium",sans-serif;
    padding: 3px;
    margin-top: 5px
}

.tooltip-custom:before {
    content: "";
    border: 1px solid #6a4742;
    border-radius: 50%;
    position: absolute;
    left: 0;
    width: 12px;
    height: 12px;
    top: 0
}

.tooltip-custom:after {
    content: "i";
    font-style: normal;
    font-size: 10px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: -4px;
    left: 0;
    margin-left: 6px
}

.dropdown-form {
    padding-left: 24px;
    padding-right: 24px
}

@media screen and (max-width: 575px) {
    .dropdown-form {
        padding-left:12px;
        padding-right: 12px
    }
}

.dropdown-form .dashboard__right-content-select.full-width {
    max-width: none
}

@media screen and (max-width: 575px) {
    .dropdown-form .dashboard__right-content-select {
        max-width:100%
    }
}

@media screen and (max-width: 767px) {
    .dropdown-form .dashboard__right-content-select .item {
        padding-top:5px;
        font-size: calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dropdown-form .form-group__datepicker-container {
    max-width: 276px;
    position: relative
}

.dropdown-form .form-group__datepicker-container .form-calendar-icon {
    position: absolute;
    right: 3px;
    top: 50%;
    margin: 0;
    display: block;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 2rem;
    cursor: pointer
}

.dropdown-form .selectize-control.single .selectize-input:after {
    color: #565f66 !important
}

.dropdown-form .dashboard__cta {
    display: inline-block;
    margin-top: auto;
    margin-bottom: 10px
}

@media screen and (min-width: 1200px) {
    .dropdown-form .dashboard__cta {
        margin-bottom:12px
    }
}

@media screen and (min-width: 1680px) {
    .dropdown-form .dashboard__cta {
        margin-bottom:17px
    }
}

@media screen and (max-width: 575px) {
    .dropdown-form .dashboard__cta {
        margin-bottom:20px
    }
}

.dropdown-form .dashboard__cta a,.dropdown-form .dashboard__cta button,.dropdown-form .dashboard__cta input {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    padding: 12px 16.5px 12px 16.5px;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
    border: none;
    min-width: 161px
}

@media screen and (min-width: 1200px) {
    .dropdown-form .dashboard__cta a,.dropdown-form .dashboard__cta button,.dropdown-form .dashboard__cta input {
        padding-top:13.2px;
        padding-left: 19.8px;
        padding-bottom: 13.2px;
        padding-right: 19.8px;
        border-radius: 3px;
        font-size: 2.4rem;
        min-width: 160px
    }
}

@media screen and (min-width: 1680px) {
    .dropdown-form .dashboard__cta a,.dropdown-form .dashboard__cta button,.dropdown-form .dashboard__cta input {
        padding-top:18.4px;
        padding-left: 27.7px;
        padding-bottom: 18.4px;
        padding-right: 27.7px;
        border-radius: 4px;
        font-size: 3.3rem;
        min-width: 160px
    }
}

.theme-investing .dropdown-form .dashboard__cta a,.theme-investing .dropdown-form .dashboard__cta button,.theme-investing .dropdown-form .dashboard__cta input {
    background-color: #969f6e
}

.theme-protecting .dropdown-form .dashboard__cta a,.theme-protecting .dropdown-form .dashboard__cta button,.theme-protecting .dropdown-form .dashboard__cta input {
    background-color: #da9089
}

.theme-financing .dropdown-form .dashboard__cta a,.theme-financing .dropdown-form .dashboard__cta button,.theme-financing .dropdown-form .dashboard__cta input {
    background-color: #d4ae69
}

@media screen and (max-width: 767px) {
    .dropdown-form .dashboard__cta a,.dropdown-form .dashboard__cta button,.dropdown-form .dashboard__cta input {
        font-size:calc(10px + (16 - 10)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dropdown-form .dashboard__cta a,.dropdown-form .dashboard__cta button,.dropdown-form .dashboard__cta input {
        padding:10px;
        min-width: auto
    }
}

.dropdown-form .dashboard__cta a:hover,.dropdown-form .dashboard__cta a:focus,.dropdown-form .dashboard__cta button:hover,.dropdown-form .dashboard__cta button:focus,.dropdown-form .dashboard__cta input:hover,.dropdown-form .dashboard__cta input:focus {
    color: #fff;
    border-bottom: none
}

.dropdown-form .dashboard__cta+.dashboard__cta-v2 {
    margin-left: 30px
}

@media screen and (min-width: 1200px) {
    .dropdown-form .dashboard__cta+.dashboard__cta-v2 {
        margin-left:36px
    }
}

@media screen and (min-width: 1680px) {
    .dropdown-form .dashboard__cta+.dashboard__cta-v2 {
        margin-left:50px
    }
}

@media screen and (max-width: 575px) {
    .dropdown-form .dashboard__cta+.dashboard__cta-v2 {
        margin-left:10px
    }
}

.dropdown-form .dashboard__cta.dashboard__cta-v2 a,.dropdown-form .dashboard__cta.dashboard__cta-v2 button,.dropdown-form .dashboard__cta.dashboard__cta-v2 input {
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    padding: 11px 16.5px 11px 16.5px
}

@media screen and (min-width: 1200px) {
    .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.dropdown-form .dashboard__cta.dashboard__cta-v2 button,.dropdown-form .dashboard__cta.dashboard__cta-v2 input {
        border-width:2px;
        padding-top: 13px;
        padding-bottom: 13px;
        padding-left: 19px;
        padding-right: 19px
    }
}

@media screen and (min-width: 1680px) {
    .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.dropdown-form .dashboard__cta.dashboard__cta-v2 button,.dropdown-form .dashboard__cta.dashboard__cta-v2 input {
        border-width:1.6px;
        padding-top: 18px;
        padding-bottom: 18px;
        padding-left: 27px;
        padding-right: 27px
    }
}

.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 button,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 input {
    color: #969f6e;
    border-color: #969f6e
}

.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 button,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 input {
    color: #da9089;
    border-color: #da9089
}

.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 button,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 input {
    color: #d4ae69;
    border-color: #d4ae69
}

@media screen and (max-width: 575px) {
    .dropdown-form .dashboard__cta.dashboard__cta-v2 a,.dropdown-form .dashboard__cta.dashboard__cta-v2 button,.dropdown-form .dashboard__cta.dashboard__cta-v2 input {
        padding:10px
    }
}

.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 a:hover,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 a:focus,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 button:hover,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 button:focus,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 input:hover,.theme-investing .dropdown-form .dashboard__cta.dashboard__cta-v2 input:focus {
    color: #969f6e;
    border-color: #969f6e
}

.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 a:hover,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 a:focus,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 button:hover,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 button:focus,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 input:hover,.theme-protecting .dropdown-form .dashboard__cta.dashboard__cta-v2 input:focus {
    color: #da9089;
    border-color: #da9089
}

.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 a:hover,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 a:focus,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 button:hover,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 button:focus,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 input:hover,.theme-financing .dropdown-form .dashboard__cta.dashboard__cta-v2 input:focus {
    color: #d4ae69;
    border-color: #d4ae69
}

.small-info-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-right: 25px
}

@media screen and (min-width: 1200px) {
    .small-info-text {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .small-info-text {
        font-size:2rem
    }
}

.pl-clearfix {
    clear: both
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper {
    width: 100%;
    background-color: rgba(161,172,123,.1);
    padding: 12px 19px 8px 19px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-checkbox {
    cursor: pointer
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-checkbox label {
    font-size: 1.4rem;
    color: #3e593c
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-checkbox label:before {
    width: 15px;
    height: 15px;
    top: 4px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-checkbox input[type="checkbox"]:checked+label:after {
    left: 5px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-width: 0 1px 1px 0 !important;
    border: solid #3e593c
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .download-save__cta {
    min-width: 160px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms__title {
    margin-bottom: 8px;
    color: rgba(0,0,0,.7)
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio {
    margin-top: 14px;
    margin-bottom: 22px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check {
    margin-right: 24px;
    font-size: 1.8rem;
    color: #000;
    padding-left: 25px;
    padding-top: 0
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check {
        margin-right:15px
    }
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check .radio {
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    border: 1px solid #3e593c
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check .radio:after {
    top: 2px;
    left: 2px;
    width: 9px;
    height: 9px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check.disabled {
    opacity: .5
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check .disabled+.radio {
    opacity: .5
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check input:checked~.radio {
    background-color: #fff;
    border: 1px solid #3e593c;
    box-shadow: none
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .inline-radio .form-check input:checked~.radio:after {
    background-color: #3e593c
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-content-top {
    display: -ms-flexbox;
    display: flex;
    padding-top: 6px;
    padding-bottom: 4px
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-content-top .float-50 {
    width: 50%
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-content-top {
        display:block;
        padding-bottom: 14px
    }

    .abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-content-top .float-50 {
        width: 100%
    }
}

.abc-form.abc-post-login-form .account-statement-sms-main-wrapper .account-statement-sms-content-bottom {
    padding-bottom: 8px
}

.abc-form.abc-post-login-form .select+span.error {
    width: 100%
}

.abc-form.abc-post-login-form .form-group__datepicker-container+span.error {
    width: 100%
}

.abc-form input.error,.abc-form .selectized.error+.selectize-control>.selectize-input {
    border: 1px solid #cdcece !important;
    background: #fff !important
}

.listsummary-error-content-wrapper {
    min-height: 239px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (min-width: 1200px) {
    .listsummary-error-content-wrapper {
        min-height:287px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-error-content-wrapper {
        min-height:401px
    }
}

.listsummary-error-content-wrapper .error {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.6rem !important;
    margin-top: 0 !important;
    color: #6c7174;
    width: 80%;
    padding-left: 28px !important
}

@media screen and (min-width: 1200px) {
    .listsummary-error-content-wrapper .error {
        font-size:1.9rem;
        padding-left: 33px;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-error-content-wrapper .error {
        font-size:2.6rem;
        padding-left: 47px;
        line-height: 33px
    }
}

.listsummary-error-content-wrapper .error:before {
    font-size: 23px !important;
    width: 20px !important;
    height: 20px !important
}

@media screen and (min-width: 1200px) {
    .listsummary-error-content-wrapper .error:before {
        width:24px;
        height: 34px;
        font-size: 2.7rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-error-content-wrapper .error:before {
        width:34px;
        height: 47px;
        font-size: 3.8rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-error-content-wrapper .error {
        font-size:calc(12px + (16 - 12)*(100vw - 360px)/(768 - 360)) !important
    }

    .listsummary-error-content-wrapper .error:before {
        font-size: calc(20px + (23 - 20)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .listsummary-error-content-wrapper {
        min-height:300px;
        padding-left: 20px;
        padding-right: 20px
    }

    .listsummary-error-content-wrapper .error {
        line-height: 20px
    }
}

.modal-error-body {
    margin-top: 10px;
    padding: 4px 50px 4px 20px !important
}

.modal-error-body+.modal-footer {
    padding: 11px 20px 16px 20px !important
}

.errorModalLabel span.error-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: #f7a500
}

.errorModalLabel span.success-icon {
    font-size: 2rem;
    margin-right: 10px;
    color: #3e593c
}

.modal-error-body,.modal-error-body p {
    font-family: "pfencoresanspro-book",sans-serif !important;
    font-size: 1.6rem !important;
    line-height: 1.5
}

.modal-error-btn {
    min-width: 193px
}

.selectize-control.single .selectize-input.dropdown-active:after {
    margin-top: 0 !important
}

.padding-zero-x {
    padding-left: 0 !important;
    padding-right: 0 !important
}

body.modal-open {
    padding-right: 0 !important
}

.modal-custom-component .modal-title {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 2.4rem;
    line-height: 1.17;
    color: #000
}

@media screen and (min-width: 1200px) {
    .modal-custom-component .modal-title {
        font-size:2.9rem;
        margin-bottom: 10px
    }
}

@media screen and (min-width: 1680px) {
    .modal-custom-component .modal-title {
        font-size:4.1rem;
        margin-bottom: 15px
    }
}

.modal-custom-component .modal-content {
    border: none
}

.modal-custom-component .modal-header {
    padding: 13px 20px 0 20px
}

@media screen and (min-width: 1200px) {
    .modal-custom-component .modal-header {
        padding:19px 20px 0 20px
    }
}

@media screen and (min-width: 1680px) {
    .modal-custom-component .modal-header {
        padding:25px 20px 0 20px
    }
}

.modal-custom-component .modal-header .close {
    width: 40px;
    height: 40px;
    border-radius: 0 2px 0 0;
    background-color: #5a5a5a;
    opacity: 1;
    margin: 0;
    right: 0;
    top: 0;
    text-shadow: none
}

.modal-custom-component .modal-header .close span {
    color: #fff;
    font-size: 45px;
    font-weight: normal;
    text-shadow: none;
    opacity: 1;
    position: absolute;
    right: 8px;
    top: -6px
}

.modal-custom-component .modal-body {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    line-height: 1.25;
    color: #6c7174;
    padding: 4px 20px
}

.modal-custom-component .modal-body ul li {
    margin-left: 5px;
    position: relative;
    padding-bottom: 3px
}

@media screen and (min-width: 1200px) {
    .modal-custom-component .modal-body ul li {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .modal-custom-component .modal-body ul li {
        font-size:2.7rem
    }
}

.modal-custom-component .modal-body ul li:before {
    width: .6em;
    margin-left: -.6em;
    font-size: 34px;
    line-height: 0;
    position: absolute;
    top: 16px
}

.modal-custom-component .modal-footer {
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-top: none;
    padding: 26px 20px 26px 20px
}

.modal-custom-component .modal-btn {
    background-color:  #19503e;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding: 12px 44px;
    border: none;
    margin: 0
}

@media screen and (min-width: 1200px) {
    .modal-custom-component .modal-btn {
        font-size:2.9rem
    }
}

@media screen and (min-width: 1680px) {
    .modal-custom-component .modal-btn {
        font-size:3.4rem
    }
}

.modal-custom-component .modal {
    z-index: 99991
}

@media screen and (min-width: 1200px) {
    .modal-custom-component .modal-dialog {
        max-width:547px !important
    }
}

@media screen and (min-width: 1680px) {
    .modal-custom-component .modal-dialog {
        max-width:782px !important
    }
}

@media(min-width: 576px) {
    .modal-custom-component .modal-dialog {
        max-width:460px
    }
}

.modal-backdrop.show {
    opacity: .6 !important
}

.cta-bg {
    background-color: #f7a500;
    font-size: 1.8rem
}

.cta-bg>p {
    color: #000 !important;
    font-size: 1.8rem !important
}

.cta-bg::after {
    color: #000 !important
}

.tooltipBackground {
    background-color: #f7a500;
    color: #000;
    width: 14px;
    height: 14px;
    text-align: center;
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2rem;
    line-height: 14px;
    border-radius: 50%;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .li-documents-breadcrumbs a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .li-documents-breadcrumbs a {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1200px) {
    .li-documents-breadcrumbs span {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .li-documents-breadcrumbs span {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .dropdown-form {
        padding-left:24px;
        padding-right: 24px
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .dropdown-form {
        padding-left:39px;
        padding-right: 39px
    }
}

@media screen and (min-width: 1200px) {
    .tooltip-inner {
        max-width:220px
    }
}

@media screen and (min-width: 1680px) {
    .tooltip-inner {
        max-width:327px
    }
}

.dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
    position: absolute;
    border: 1px solid  #19503e;
    border-radius: 35px;
    background:  #19503e;
    color: #fff;
    bottom: 0;
    width: 33px;
    height: 33px;
    padding: 6px 6px 4px 8px !important;
    left: 120px
}

.dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next span {
    position: relative;
    text-align: center;
    bottom: 5px;
    font-size: 33px
}

.dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.disabled {
    border: 1px solid #d1d7e0 !important;
    background: #d1d7e0 !important;
    display: unset !important
}

.dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev {
    position: absolute;
    left: 35px;
    border: 1px solid  #19503e;
    border-radius: 40px;
    background:  #19503e;
    color: #fff;
    bottom: 0;
    width: 33px;
    height: 33px;
    padding: 6px 6px 4px 3px !important
}

.dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev span {
    position: relative;
    text-align: center;
    bottom: 5px;
    font-size: 33px
}

.dashboard__horizontal-tab-main-wrapper {
    width: 77.814%;
    position: relative
}

@media screen and (max-width: 991px) {
    .dashboard__horizontal-tab-main-wrapper {
        width:100%
    }
}

.dashboard__horizontal-tab-main-wrapper ul {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0
}

.dashboard__horizontal-tab-main-wrapper ul li {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    text-align: center;
    background-color: #f1f3f6;
    color: rgba(0,0,0,.5) !important;
    padding-left: 0;
    white-space: nowrap;
    z-index: 1;
    display: inline-block;
    position: relative;
    cursor: pointer;
    line-height: normal;
    margin-right: 35px
}

@media screen and (max-width: 786px) and (min-width:568px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        margin-right:42px
    }
}

@media screen and (min-width: 786px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        margin-right:37px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        margin-right:44px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        font-size:22px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        font-size:3.1rem
    }
}

.dashboard__horizontal-tab-main-wrapper ul li:before {
    content: "";
    background-color: #f1f3f6;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 48px;
    bottom: 0;
    z-index: -1;
    -ms-transform: skew(12deg);
    transform: skew(12deg);
    left: 35px;
    border-top-right-radius: 6.6px
}

@media screen and (max-width: 562px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:40px
    }
}

@media screen and (max-width: 576px) and (min-width:562px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:41px
    }
}

@media screen and (max-width: 730px) and (min-width:576px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:60px
    }
}

@media screen and (max-width: 768px) and (min-width:730px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:61px
    }
}

@media screen and (max-width: 1200px) and (min-width:768px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:41px
    }
}

@media screen and (max-width: 1680px) and (min-width:1200px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:53px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        height:75px;
        left: 43px
    }
}

@media screen and (max-width: 567px) {
    .dashboard__horizontal-tab-main-wrapper ul li:before {
        left:29px
    }
}

.dashboard__horizontal-tab-main-wrapper ul li:after {
    content: "";
    background-color: #f1f3f6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -ms-transform: skew(168deg);
    transform: skew(168deg);
    right: 13px;
    left: auto;
    bottom: 0;
    z-index: -1;
    border-top-left-radius: 6.6px;
    height: 48px
}

@media screen and (max-width: 562px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:40px
    }
}

@media screen and (max-width: 576px) and (min-width:562px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:41px
    }
}

@media screen and (max-width: 730px) and (min-width:576px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:60px
    }
}

@media screen and (max-width: 768px) and (min-width:730px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:61px
    }
}

@media screen and (max-width: 1200px) and (min-width:768px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:41px
    }
}

@media screen and (max-width: 1680px) and (min-width:1200px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:53px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-main-wrapper ul li:after {
        height:75px
    }
}

.dashboard__horizontal-tab-main-wrapper ul li.active {
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #fff !important
}

.dashboard__horizontal-tab-main-wrapper ul li.active:before.theme-investing {
    background-color: #969f6e
}

.dashboard__horizontal-tab-main-wrapper ul li.active:before.theme-protecting {
    background-color: #da9089
}

.dashboard__horizontal-tab-main-wrapper ul li.active:before.theme-financing {
    background-color: #d4ae69
}

.dashboard__horizontal-tab-main-wrapper ul li.active:after.theme-investing {
    background-color: #969f6e
}

.dashboard__horizontal-tab-main-wrapper ul li.active:after.theme-protecting {
    background-color: #da9089
}

.dashboard__horizontal-tab-main-wrapper ul li.active:after.theme-financing {
    background-color: #d4ae69
}

@media screen and (max-width: 1680px) and (min-width:1200px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        padding:14px 12px 13px 12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        padding:19px 12px 19px 12px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        font-size:2.1rem;
        padding: 9px 12px 6px 12px
    }

    .dashboard__horizontal-tab-main-wrapper ul li.active {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 9px;
        box-shadow: -10px -8px 42px 0 rgba(0,0,0,.05)
    }
}

@media screen and (max-width: 767px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        font-size:calc(13px + (21 - 13)*(100vw - 360px)/(768 - 360)) !important;
        padding: 19px 12px 18px 12px
    }

    .dashboard__horizontal-tab-main-wrapper ul li.active {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 19px;
        box-shadow: -10px -8px 42px 0 rgba(0,0,0,.05)
    }
}

@media screen and (max-width: 576px) {
    .dashboard__horizontal-tab-main-wrapper ul li {
        padding:11px 12px 10px 12px
    }

    .dashboard__horizontal-tab-main-wrapper ul li.active {
        padding-top: 11px
    }
}

.dashboard__horizontal-tab-main-wrapper ul li.for-you-tab.active {
    background-color:  #19503e
}

.dashboard__horizontal-tab-main-wrapper ul li.for-you-tab.active:after {
    background-color:  #19503e
}

.dashboard__horizontal-tab-main-wrapper ul li.for-you-tab.active:before {
    background-color:  #19503e
}

.dashboard__horizontal-tab-main-wrapper ul li.for-you-tab:after {
    -ms-transform: skew(180deg);
    transform: skew(180deg);
    right: 18px;
    border-top-left-radius: 1px
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-investing.active {
    background-color: #969f6e
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-investing.active:after {
    background-color: #969f6e
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-investing.active:before {
    background-color: #969f6e
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-protecting.active {
    background-color: #da9089
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-protecting.active:after {
    background-color: #da9089
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-protecting.active:before {
    background-color: #da9089
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-financing.active {
    background-color: #c4a166
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-financing.active:after {
    background-color: #c4a166
}

.dashboard__horizontal-tab-main-wrapper ul li.theme-financing.active:before {
    background-color: #c4a166
}

.dashboard__horizontal-tab-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    transition: all .2s;
    will-change: transform;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-overflow-style: none;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.dashboard__horizontal-tab-scroll-wrapper::-webkit-scrollbar {
    display: none
}

.dashboard__horizontal-tab-scroll-cta {
    position: absolute;
    background-color: #f7a500;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0 none;
    color: #fff;
    border-radius: 50%;
    top: 5px;
    z-index: 1;
    text-align: center
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta {
        width:28px;
        height: 28px;
        top: 9px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta {
        width:40px;
        height: 40px;
        top: 10px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__horizontal-tab-scroll-cta {
        top:5px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__horizontal-tab-scroll-cta {
        top:5px
    }
}

.dashboard__horizontal-tab-scroll-cta .icon {
    display: block;
    font-size: 1.2rem;
    line-height: 22px
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta .icon {
        font-size:14px;
        line-height: 26px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta .icon {
        font-size:20px;
        line-height: 36px
    }
}

.dashboard__horizontal-tab-scroll-cta.scroll-left {
    left: -12px
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-left {
        left:-10px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-left {
        left:-10px
    }
}

.dashboard__horizontal-tab-scroll-cta.scroll-left .icon {
    margin: 1px 1px 0 0
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-left .icon {
        margin:1px 1px 0 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-left .icon {
        margin:2px 2px 0 0
    }
}

@media screen and (max-width: 991px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-left {
        left:5px
    }
}

.dashboard__horizontal-tab-scroll-cta.scroll-right {
    right: -12px
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-right {
        right:-10px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-right {
        right:-10px
    }
}

.dashboard__horizontal-tab-scroll-cta.scroll-right .icon {
    margin: 1px 0 0 1px
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-right .icon {
        margin:1px 0 0 1px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-right .icon {
        margin:2px 0 0 2px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__horizontal-tab-scroll-cta.scroll-right {
        right:5px
    }
}

.capital-red {
    color: #fff !important;
    background-color:  #19503e !important
}

.border-bottom-investing {
    border-bottom: 3px solid #969f6e
}

@media screen and (min-width: 1200px) {
    .border-bottom-investing {
        border-bottom:4px solid #969f6e
    }
}

@media screen and (min-width: 1680px) {
    .border-bottom-investing {
        border-bottom:5px solid #969f6e
    }
}

.border-bottom-protecting {
    border-bottom: 3px solid #da9089
}

@media screen and (min-width: 1200px) {
    .border-bottom-protecting {
        border-bottom:4px solid #da9089
    }
}

@media screen and (min-width: 1680px) {
    .border-bottom-protecting {
        border-bottom:5px solid #da9089
    }
}

.border-bottom-financing {
    border-bottom: 3px solid #c4a166
}

@media screen and (min-width: 1200px) {
    .border-bottom-financing {
        border-bottom:4px solid #c4a166
    }
}

@media screen and (min-width: 1680px) {
    .border-bottom-financing {
        border-bottom:5px solid #c4a166
    }
}

.border-bottom-advising {
    border-bottom: 3px solid  #19503e
}

@media screen and (min-width: 1200px) {
    .border-bottom-advising {
        border-bottom:4px solid  #19503e
    }
}

@media screen and (min-width: 1680px) {
    .border-bottom-advising {
        border-bottom:5px solid  #19503e
    }
}

.dashboard__vertical-tab-main-wrapper ul {
    padding-left: 0
}

@media screen and (max-width: 767px) {
    .dashboard__vertical-tab-main-wrapper ul {
        overflow:visible
    }
}

.dashboard__vertical-tab-main-wrapper ul li {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
    line-height: normal
}

.dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.4rem;
    color: #6d7278;
    margin: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 70px;
    padding-right: 10px;
    position: relative;
    display: block;
    cursor: pointer;
    line-height: 22px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
        font-size:17px;
        padding-top: 9px;
        padding-bottom: 10px;
        padding-left: 79px;
        padding-right: 10px;
        line-height: 26px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
        font-size:2.4rem;
        padding-top: 20px;
        padding-bottom: 19px;
        padding-left: 113px;
        line-height: 26px
    }
}

.dashboard__vertical-tab-main-wrapper ul li>a:hover,.dashboard__vertical-tab-main-wrapper ul li>a:focus,.dashboard__vertical-tab-main-wrapper ul li>a:active {
    border-bottom: 0 none
}

.dashboard__vertical-tab-main-wrapper ul li .data-info .icon-info+span {
    display: none
}

.dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info {
    width: 12px;
    height: 12px;
    position: absolute;
    border: 1px solid #6a4742;
    border-radius: 50%;
    color: #6a4742;
    margin-left: 5px;
    margin-top: 4px;
    z-index: 9;
    display: none
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info {
        margin-top:4px;
        margin-left: 6px;
        width: 28px;
        height: 28px;
        border-width: 14px;
        display: none
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info {
        margin-top:6.7px;
        margin-left: 8.4px;
        width: 40px;
        height: 40px;
        border-width: 20px;
        display: none
    }
}

.dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:after {
    content: "i";
    font-style: normal;
    font-size: 10px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: -6px;
    left: 4px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:after {
        top:-7px;
        left: 5px;
        width: 14px;
        height: 14px;
        font-size: 1.2rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:after {
        top:-10px;
        left: 7px;
        width: 20px;
        height: 20px;
        font-size: 1.7rem
    }
}

.dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:hover+span {
    display: block;
    position: absolute;
    font-size: 1rem;
    line-height: 14px;
    width: 100%;
    top: 10px;
    max-width: 82px;
    left: 75%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    border-radius: .3px;
    box-shadow: 4px 4px 16px 0 rgba(0,0,0,.08);
    background-color: #fff;
    color: #000;
    z-index: 99;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 3px;
    white-space: break-spaces
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:hover+span {
        font-size:1.2rem;
        line-height: 16.8px;
        top: 12px;
        max-width: 98.4px;
        border-radius: 4px;
        padding: 5px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li .data-info.active .icon-info:hover+span {
        font-size:1.7rem;
        line-height: 23px;
        top: 16px;
        max-width: 137px;
        border-radius: 5px;
        padding: 5px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child>span .icon {
    position: absolute;
    line-height: 22px;
    font-size: .7rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 12px;
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child>span .icon {
        font-size:.9rem;
        line-height: 27px;
        margin-left: 7px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child>span .icon {
        font-size:1.1rem;
        line-height: 27px;
        margin-left: 7px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child>span .icon {
        font-size:7px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.is-lob>span .icon {
    top: 9px;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 13px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.is-lob>span .icon {
        right:8px;
        top: 11px;
        font-size: 1rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.is-lob>span .icon {
        right:10px;
        top: 21px;
        font-size: 1.3rem
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 7px;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
        margin-left:9px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
        margin-left:9px
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
    color: #3e593c
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
    color: #6a4742
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
    color: #695934
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.active.is-lob>span .icon {
    top: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.is-lob>span .icon {
        top:12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.is-lob>span .icon {
        top:21px
    }
}

.dashboard__vertical-tab-main-wrapper ul li>a .icon {
    position: absolute;
    right: 20px;
    top: 8px;
    line-height: 22px;
    font-size: 9px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 12px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li>a .icon {
        font-size:1rem;
        right: 8px;
        top: 12px;
        line-height: 26px;
        margin-left: 14px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li>a .icon {
        font-size:13px;
        right: 8px;
        top: 17px;
        line-height: 35px;
        margin-left: 12px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li>a .icon {
        font-size:7px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.active>span {
    font-family: "pfhandbookpro-bold",sans-serif;
    position: relative;
    padding-right: 5px;
    font-size: 1.8rem
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.active>span {
        font-size:21px;
        padding-right: 7px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.active>span {
        font-size:3rem;
        padding-right: 7px
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul li.active>span {
    color: #3e593c
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.active>span {
    color: #6a4742
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul li.active>span {
    color: #695934
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul li.active:before {
    color: #3e593c
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.active:before {
    color: #6a4742
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul li.active:before {
    color: #695934
}

.dashboard__vertical-tab-main-wrapper ul li:before {
    color: #6d7278;
    width: 20px;
    height: auto;
    font-size: 2rem;
    position: absolute;
    left: 48px;
    top: 7px;
    z-index: 9;
    text-align: center
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li:before {
        font-size:2.2rem;
        width: 20px;
        left: 57px;
        top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li:before {
        font-size:32px;
        width: 31px;
        left: 81px;
        top: 14px
    }
}

.dashboard__vertical-tab-main-wrapper ul li:not(.icon):before {
    content: ""
}

.dashboard__vertical-tab-main-wrapper ul li:not(.icon)>span:after {
    content: "" !important
}

.dashboard__vertical-tab-main-wrapper ul li.active.has-child.level-1 ul {
    display: block
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul {
    display: none;
    position: relative;
    margin-top: 0;
    padding-top: 0
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul:before {
    border-left: solid 1px rgba(151,151,151,.3);
    content: "";
    display: block;
    left: 40px;
    position: absolute;
    height: calc(100% - 10px);
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 5px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul:before {
        border-left:solid .1vw rgba(151,151,151,.3);
        left: 48px;
        height: 100%;
        margin-top: 7px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul:before {
        border-left:solid .1vw rgba(151,151,151,.3);
        left: 67px;
        height: 100%;
        margin-top: 7px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a {
    font-size: 1.2rem;
    margin-left: 78px;
    padding-bottom: 5px;
    padding-top: 5px;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-right: 16px;
    color: #6d7278
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a {
        font-size:1.4rem;
        margin-left: 93px;
        padding-bottom: 6px;
        padding-top: 6px;
        padding-right: 19.2px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a {
        font-size:2rem;
        margin-left: 95px;
        padding-bottom: 10px;
        padding-top: 10px;
        padding-right: 22px
    }
}

@media screen and (min-width: 767px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a {
        font-size:calc(12px + (14 - 12)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a:hover,.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li a:focus {
    border: none
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span {
    font-size: 1.2rem;
    padding-left: 78px;
    padding-bottom: 5px;
    padding-top: 5px;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-right: 16px;
    word-break: break-word
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span {
        word-break: break-all
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span {
        font-size:17px;
        padding-top: 9px;
        padding-bottom: 10px;
        padding-left: 79px;
        padding-right: 10px;
        line-height: 26px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span {
        font-size:20px;
        padding-left: 131px;
        padding-bottom: 8px;
        padding-top: 8px;
        padding-right: 26px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
    padding: 1px 8px;
    border-radius: 12px;
    margin-left: -8px;
    display: inline-block
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
        padding:1px 9px;
        margin-left: -10px;
        border-radius: 30px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
        padding:2px 13px;
        margin-left: -13px;
        border-radius: 30px
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
    background-color: rgba(192,197,168,.26)
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
    background-color: rgba(226,167,162,.26)
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li>span .pill {
    background-color: rgba(224,198,150,.26)
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li:first-child>span {
    padding-top: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li:first-child>span {
        padding-top:12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li:first-child>span {
        padding-top:16.8px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li:last-child>span {
    padding-bottom: 2px;
    margin-bottom: 8px
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
    font-family: "pfhandbookpro-bold",sans-serif;
    background-color: transparent;
    font-size: 1.6rem
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
        font-size:2.7rem
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
    color: #3e593c
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
    color: #6a4742
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 ul li.active>span {
    color: #695934
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2.active ul {
    display: block
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul {
    display: none
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul:before {
    display: none
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li a {
    font-size: 1.2rem;
    margin-left: 85px;
    padding-bottom: 5px;
    padding-top: 5px;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-right: 16px;
    color: #6d7278
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li a:hover,.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li a:focus {
    border: none
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li>span {
    font-size: 1.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-left: 85px;
    padding-bottom: 3px;
    padding-top: 5px;
    padding-right: 7px
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li>span {
        font-size:1.8rem !important;
        padding-top: 10px !important
    }
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li:first-child>span {
    padding-top: 5px
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li:last-child>span {
    padding-bottom: 0;
    margin-bottom: 4px
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li:last-child:after {
    border-bottom: solid 1px rgba(151,151,151,.1);
    content: "";
    width: calc(100% - 70px);
    height: 1px;
    display: block;
    margin-bottom: 5px;
    margin-top: 7px;
    position: relative;
    left: 30%;
    top: 0
}

.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li.active>span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .level-2 ul li.active>span {
        font-size:2rem !important;
        padding-top: 10px
    }
}

.dashboard__vertical-tab-main-wrapper ul li.is-external a {
    padding-right: 40px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul li.is-external a {
        padding-right:23px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul li.is-external a {
        padding-right:35px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li {
        display:inline-block;
        margin-left: 17px;
        margin-right: 17px;
        white-space: nowrap
    }

    .dashboard__vertical-tab-main-wrapper ul li.level-1:first-child {
        margin-left: 21px
    }

    .dashboard__vertical-tab-main-wrapper ul li.level-1:last-child {
        padding-right: 21px
    }

    .dashboard__vertical-tab-main-wrapper ul li.active>span {
        background-color: transparent !important;
        padding-left: 10px;
        padding-right: 10px
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul li.active>span {
        border-bottom: 3px solid #3e593c
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul li.active>span {
        border-bottom: 3px solid #6a4742
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul li.active>span {
        border-bottom: 3px solid #695934
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child>span .icon {
        margin-top: 11px;
        margin-left: 7px;
        top: 11px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .tab-back,.dashboard__vertical-tab-main-wrapper ul li.has-child.level-1 .icon-left-arrow-mob {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
        margin-top: 11px;
        margin-left: 7px;
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }
}

@media screen and (max-width: 991px) and (max-width:767px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active>span .icon {
        -ms-transform:rotate(0deg);
        transform: rotate(0deg)
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 {
        display:-ms-flexbox;
        display: flex;
        position: absolute;
        width: 100%;
        z-index: 9;
        -ms-flex-align: end;
        align-items: flex-end;
        overflow-x: auto
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 {
        background-color: #fafbf8
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 {
        background-color: #fdf9f9
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 {
        background-color: #fdfbf7
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .tab-back,.dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .icon-left-arrow-mob {
        display: block;
        font-size: 21px;
        color: #fff;
        position: relative;
        z-index: 101;
        padding: 0 6px;
        margin-bottom: 18px
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .tab-back,.theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .icon-left-arrow-mob {
        background-color: #3e593c
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .tab-back,.theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .icon-left-arrow-mob {
        background-color: #6a4742
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .tab-back,.theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .icon-left-arrow-mob {
        background-color: #695934
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1>ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-left: 28px;
        margin-left: 10px;
        padding-bottom: 0
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1>ul:before {
        margin-top: 5px;
        height: 33px;
        left: 25px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1>ul li>span {
        font-size: 2rem;
        border-bottom: none;
        padding-top: 20.5px;
        padding-bottom: 23.5px;
        margin-bottom: 0;
        padding-left: 17px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2 {
        margin-left: 10px;
        margin-right: 10px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2:last-child {
        padding-right: 50px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active>span:after {
        content: "" !important;
        display: block !important;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: "font-icons";
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        text-transform: none;
        position: absolute;
        left: 50%;
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 10px;
        top: 45px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active .icon-info {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active ul {
        position: fixed;
        height: 48px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        width: 100vw;
        top: 66px;
        left: 0;
        z-index: 99
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active ul {
        background-color: rgba(150,159,110,.21)
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active ul {
        background-color: rgba(218,144,137,.21)
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2.active ul {
        background-color: rgba(212,174,105,.21)
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2 ul li {
        margin-left: 20px;
        margin-right: 5px
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2 ul li.level-3>span {
        padding-top: 13px !important;
        padding-bottom: 13px;
        margin-bottom: 0
    }

    .dashboard__vertical-tab-main-wrapper ul li.has-child.active.level-1 .level-2 ul li:last-child:after {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 2rem;
        padding-bottom: 13px;
        border-bottom: 3px solid transparent
    }
}

@media screen and (max-width: 991px) and (max-width:991px) {
    .dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
        padding-top:20.5px;
        padding-bottom: 20.5px;
        font-family: "pfhandbookpro-regular",sans-serif;
        line-height: 22px
    }
}

@media screen and (max-width: 991px) and (max-width:767px) {
    .dashboard__vertical-tab-main-wrapper ul li>span,.dashboard__vertical-tab-main-wrapper ul li>a {
        font-size:calc(13px + (21 - 13)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul li>span:after,.dashboard__vertical-tab-main-wrapper ul li>a:after {
        display:none !important
    }

    .dashboard__vertical-tab-main-wrapper ul li:before {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul li.is-external a {
        padding-right: 10px
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul>li.active>span {
    background-color: rgba(150,159,110,.3)
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul>li.active>span {
    background-color: #e2a7a2
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul>li.active>span {
    background-color: #d4ae69
}

.dashboard__vertical-tab-main-wrapper ul>li.active:before {
    top: 7px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul>li.active:before {
        top:9px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul>li.active:before {
        top:13px
    }
}

.dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    top: 50%;
    right: -3px;
    position: absolute;
    border-radius: 2px;
    content: "";
    display: block;
    z-index: 9
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
    background-color: #d7dac9
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
    background-color: #e2a7a2
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
    background-color: #d4ae69
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
        width:13.43px;
        height: 13.43px;
        right: -5.4px;
        border-radius: 3px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul>li.active.level-1>span:after {
        width:13.43px;
        height: 13.43px;
        right: -5.4px;
        border-radius: 3px
    }
}

.dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
    padding: 1px 30px 2px 50px;
    border-radius: 12px;
    margin-left: -50px;
    display: inline-block;
    margin-top: -1px;
    margin-bottom: -2px
}

@media screen and (min-width: 1200px) {
    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
        padding:2px 36px 2px 60px;
        border-radius: 15px;
        margin-left: -51px;
        margin-top: -2px;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
        border-radius:50px;
        margin-left: -72px;
        margin-top: -11px;
        margin-bottom: -4px;
        padding: 9px 50px 9px 84px
    }
}

.theme-investing .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
    background-color: rgba(192,197,168,.26);
    color: #3e593c
}

.theme-protecting .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
    background-color: rgba(226,167,162,.26);
    color: #6a4742
}

.theme-financing .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill {
    background-color: rgba(224,198,150,.26);
    color: #695934
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul {
        display:-ms-flexbox;
        display: flex;
        margin-bottom: 0;
        height: 66px;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .pill {
        padding: 5px 15px;
        border-radius: 25px;
        margin-left: 0;
        margin: -5px -15px
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill,.theme-investing .dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .pill {
        background-color: rgba(192,197,168,.26);
        color: #3e593c
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill,.theme-protecting .dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .pill {
        background-color: rgba(226,167,162,.26);
        color: #6a4742
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill,.theme-financing .dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .pill {
        background-color: rgba(224,198,150,.26);
        color: #695934
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1>a .icon {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1 {
        position: unset;
        width: auto;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

@media screen and (max-width: 991px) and (max-width:575px) {
    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1 {
        position:unset
    }
}

@media screen and (max-width: 991px) and (max-width:767px) {
    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1 {
        position:unset
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        position:absolute;
        top: 66px;
        left: 0;
        padding-left: 0;
        margin-left: 0;
        padding-bottom: 0;
        height: auto;
        width: 100%;
        overflow-x: auto
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul:before {
        display: none
    }

    .theme-investing .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        background-color: rgba(150,159,110,.21)
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        background-color: rgba(218,144,137,.21)
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        background-color: rgba(212,174,105,.21)
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2>span {
        line-height: 35px;
        font-size: 20px;
        font-family: "pfhandbookpro-medium",sans-serif;
        padding-top: 6px;
        padding-bottom: 6px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2>span:after {
        display: none !important
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2>span .pill {
        padding: 0 20px;
        border-radius: 25px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2.active>span {
        font-family: "pfhandbookpro-bold",sans-serif
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>span {
        font-family: "pfhandbookpro-bold",sans-serif
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1 .tab-back {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>span,.dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>a {
        padding-top: 20.5px;
        padding-bottom: 20.5px;
        font-family: "pfhandbookpro-regular",sans-serif;
        line-height: 22px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>span .icon,.dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>a .icon {
        display: none
    }
}

@media screen and (max-width: 575px) {
    .dashboard__vertical-tab-main-wrapper ul {
        height:42px
    }

    .dashboard__vertical-tab-main-wrapper ul>li {
        margin-left: 7px;
        margin-right: 7px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span,.dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>a,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>a {
        line-height: 22px;
        font-size: 13px;
        padding: 8.5px 10px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .pill,.dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>a .pill,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .pill,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>a .pill {
        padding: 0 9px;
        border-radius: 11px;
        margin: 0
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>span .icon,.dashboard__vertical-tab-main-wrapper ul>li.level-1:not(.active)>a .icon,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>span .icon,.dashboard__vertical-tab-main-wrapper ul>li.level-1.active>a .icon {
        top: -1px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.level-1>a .icon {
        display: none
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1 .icon-left-arrow-mob {
        margin-bottom: 8px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul {
        margin-left: 0
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul:before {
        margin-top: 0;
        height: 27px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li>span {
        font-size: 1.3rem;
        padding: 8.5px 10px;
        border-bottom: 3px solid transparent
    }
}

@media screen and (max-width: 575px) and (max-width:575px) {
    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li>span {
        border-bottom:0
    }
}

@media screen and (max-width: 575px) {
    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li.level-2.active>span:after {
        font-size:7px;
        top: 28px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li.level-2.active ul {
        top: 42px;
        height: 30px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li.level-2.active ul li.level-3 {
        margin-left: 5px;
        margin-right: 5px
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li.level-2.active ul li.level-3>span {
        font-size: 1.3rem !important;
        padding-top: 4px !important;
        padding-bottom: 4px;
        border-bottom: 0 none
    }

    .dashboard__vertical-tab-main-wrapper ul>li.has-child.active.level-1>ul li.level-2.active ul li:first-child {
        margin-left: 20px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob {
        height: 42px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        top: 42px;
        padding-left: 20px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2 {
        margin-left: 0;
        margin-right: 0
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2:last-child {
        padding-right: 0
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2>span {
        line-height: 22px;
        font-size: 11px;
        padding: 4px 11px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul li.level-2>span .pill {
        padding: 0 13px;
        border-radius: 11px
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1 {
        margin-right: 0
    }

    .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>span,.dashboard__vertical-tab-main-wrapper ul.is-type-lob li.level-1>a {
        padding-top: 8.5px;
        padding-bottom: 8.5px;
        font-size: 13px
    }
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper {
        overflow-x:hidden;
        transition: all .2s;
        will-change: transform;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -ms-overflow-style: none
    }

    .dashboard__vertical-tab-main-wrapper>ul {
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none
    }

    .dashboard__vertical-tab-main-wrapper>ul::-webkit-scrollbar {
        display: none
    }
}

@media screen and (max-width: 991px) and (max-width:576px) {
    .dashboard__vertical-tab-main-wrapper>ul {
        position:initial
    }
}

@media screen and (max-width: 991px) {
    .theme-investing .dashboard__vertical-tab-main-wrapper>ul {
        background-color:#fafbf8
    }

    .theme-protecting .dashboard__vertical-tab-main-wrapper>ul {
        background-color: #fdf9f9
    }

    .theme-financing .dashboard__vertical-tab-main-wrapper>ul {
        background-color: #fdfbf7
    }
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0 none;
    color: #fff;
    border-radius: 50%;
    top: 14px;
    z-index: 11;
    text-align: center
}

.theme-investing .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
    background-color: #969f6e
}

.theme-protecting .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
    background-color: #da9089
}

.theme-financing .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
    background-color: #d4ae69
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
        top:20px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta {
        top:8px
    }
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta .icon {
    display: block;
    font-size: 12px;
    line-height: 22px
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-left {
    left: -12px
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-left .icon {
    margin: 1px 1px 0 0
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-left {
        left:0
    }
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-right {
    right: -12px
}

.dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-right .icon {
    margin: 1px 0 0 1px
}

@media screen and (max-width: 991px) {
    .dashboard__vertical-tab-main-wrapper .level1-mobile-scroll-cta.scroll-right {
        right:0
    }
}

@media(max-width: 767px) {
    .lOBQuickLinks ul.link-list__list--column li:nth-child(odd) {
        clear:both
    }
}

@media screen and (max-width: 991px) {
    .dashboard__bottom-wrapper[data-id="insurance-advisory"] .dashboard__vertical-tab-main-wrapper,.dashboard__bottom-wrapper[data-id="motor-insurance"] .dashboard__vertical-tab-main-wrapper {
        height:115px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__bottom-wrapper[data-id="insurance-advisory"] .dashboard__vertical-tab-main-wrapper,.dashboard__bottom-wrapper[data-id="motor-insurance"] .dashboard__vertical-tab-main-wrapper {
        height:72px
    }
}

@media(max-width: 767px) {
    .dashboard__bottom-wrapper[data-id="insurance-advisory"] .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul,.dashboard__bottom-wrapper[data-id="motor-insurance"] .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        position:absolute;
        top: 66px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__bottom-wrapper[data-id="insurance-advisory"] .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul,.dashboard__bottom-wrapper[data-id="motor-insurance"] .dashboard__vertical-tab-main-wrapper ul.is-type-lob li.has-child.active.level-1>ul {
        position:absolute;
        top: 42px
    }
}

.dashboard__nbo-cards-wrapper .hide-last-2-nbo {
    display: none
}

.dashboard__nbo-cards-wrapper.change-position {
    position: static;
    height: auto !important
}

.dashboard__nbo-cards-wrapper.change-position .hide-last-2-nbo {
    display: inline-block
}

.dashboard__nbo-cards-wrapper.change-position .cta-label {
    max-width: none
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg {
        border-radius:2px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg {
        border-radius:3px
    }
}

.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg+.txt-mobile {
    display: none
}

.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-info-icon .btn-box .btn-orange {
    display: -ms-inline-flexbox;
    display: inline-flex
}

@media screen and (max-width: 767px) {
    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item-wrapper {
        padding:0 15px
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-recommended {
        display: none
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item {
        margin: 0 0 20px
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item {
        max-width: none
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--content,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--button,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.foot-notes {
        display: block !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo-cards-wrapper.change-position .cta-label {
        font-size:1.4rem
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--content,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--button {
        display: block
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.foot-notes {
        display: block !important
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-info-icon .desc {
        min-height: auto
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-cards-wrapper.change-position .cta-label {
        font-size:1.4rem;
        line-height: 16px
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--button.dashboard__cta {
        display: -ms-inline-flexbox;
        display: inline-flex
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.initial-bg+.txt-mobile {
        display: none
    }

    .dashboard__nbo-cards-wrapper.change-position .curve-lbl {
        font-size: 1.6rem
    }

    .dashboard__nbo-cards-wrapper.change-position .curve-lbl,.dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--content {
        display: block !important
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--initial.btn-orange {
        min-width: 66px;
        min-height: auto
    }

    .dashboard__nbo-cards-wrapper.change-position .foot-notes.dashboard__nbo--initial {
        font-size: 1.4rem;
        display: block !important
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item {
        font-size: 1.3rem;
        border: 0
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-card-item:first-of-type {
        margin-top: 12px
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo-info-icon .btn-box {
        text-align: right
    }

    .dashboard__nbo-cards-wrapper.change-position .dashboard__nbo--label .btn-mini {
        font-size: 1.2rem
    }
}

@media(max-width: 767px) {
    .dashboard__nbo-cards-wrapper {
        position:fixed;
        bottom: 0;
        width: 100%;
        z-index: 99
    }
}

.dashboard__nbo-cards-innerwrapper {
    padding-left: 5px;
    padding-right: 5px
}

@media screen and (max-width: 767px) {
    .dashboard__nbo-cards-innerwrapper .mobile-button-center {
        text-align:center;
        width: 100%;
        display: inline-block;
        position: fixed;
        bottom: 0
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo-cards-innerwrapper .mobile-button-center {
        text-align:center;
        width: 100%;
        display: inline-block
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-cards-innerwrapper .mobile-button-center {
        text-align:center;
        width: 100%;
        display: inline-block
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-cards-innerwrapper {
        padding-left:6px;
        padding-right: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-cards-innerwrapper {
        padding-left:8px;
        padding-right: 0
    }
}

@media(max-width: 767px) {
    .dashboard__nbo-cards-innerwrapper {
        margin-top:17px;
        position: relative
    }

    .dashboard__nbo-cards-innerwrapper.active {
        box-shadow: 3px -5px 13px 0 rgba(0,0,0,.08);
        background-color: #fff
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo-cards-innerwrapper {
        margin-top:0
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-cards-innerwrapper {
        margin-top:0
    }
}

.dashboard__nbo-card-item {
    margin-left: 13px;
    margin-right: 13px;
    border-radius: 2px;
    box-shadow: 0 6px 20px -9px rgba(0,0,0,.22);
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.dashboard__nbo-card-item-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .dashboard__nbo-card-item-wrapper {
        overflow-x:auto;
        padding-bottom: 10px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-card-item-wrapper {
        padding-top:10px
    }
}

@media screen and (max-width: 990px) {
    .dashboard__nbo-card-item {
        width:47%
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo-card-item {
        margin-left:14px;
        margin-right: 13px;
        border-radius: 2px;
        box-shadow: 0 2px 2px -11px rgba(0,0,0,.22)
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo-card-item {
        margin-right:15px !important;
        margin-left: 15px !important;
        border-radius: 2px;
        box-shadow: 0 2px 2px -11px rgba(0,0,0,.22)
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo-card-item {
        margin-right:0 !important;
        margin-left: 0 !important
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-card-item {
        margin-right:0 !important;
        margin-left: 0 !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-card-item {
        margin-left:17px;
        margin-right: 17px;
        border-radius: 3px;
        box-shadow: 0 2px 2px -11px rgba(0,0,0,.22)
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-card-item {
        margin-left:22px;
        margin-right: 22px;
        border-radius: 4px;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22)
    }
}

@media screen and (max-width: 991px) {
    .dashboard__nbo-card-item {
        margin-left:10px;
        margin-right: 10px;
        border: none;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22)
    }
}

@media(max-width: 767px) {
    .dashboard__nbo-card-item {
        width:100%;
        padding: 0;
        margin-top: 30px;
        border-radius: 3px;
        max-width: 220px;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22)
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-card-item {
        margin-top:10px;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22)
    }
}

.dashboard__nbo-info-icon {
    position: relative
}

.dashboard__nbo-info-icon .abolute-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-info-icon .abolute-link {
        font-size:1.7rem;
        line-height: .99
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-info-icon .abolute-link {
        font-size:2.8rem;
        line-height: .97
    }
}

.dashboard__nbo-info-icon .btn-orange {
    background-color: #f7a500;
    min-width: 78px;
    font-size: 1.4rem;
    color: #000;
    display: -ms-inline-flexbox;
    display: inline-flex;
    min-height: 26px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding: 0 2px
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-info-icon .btn-orange {
        font-size:2rem;
        min-width: 120px;
        min-height: 30px;
        padding: 4px 8px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-info-icon .btn-orange {
        font-size:2.8rem;
        min-width: 132px;
        min-height: 43px;
        padding: 6px 11px
    }
}

.dashboard__nbo-info-icon .btn-orange:hover {
    border: 0
}

@media screen and (max-width: 991px) {
    .dashboard__nbo-info-icon .btn-orange {
        font-size:1.6rem
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-info-icon .btn-orange {
        display:none
    }
}

.dashboard__nbo-info-icon .btn-box {
    text-align: right;
    margin-bottom: 10px;
    padding: 0 15px 0 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-info-icon .btn-box {
        margin-bottom:15px;
        padding: 4px 12px 7px 12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-info-icon .btn-box {
        margin-bottom:17px;
        padding: 5px 13px 8px 12px
    }
}

@media(max-width: 767px) {
    .dashboard__nbo-info-icon .btn-box {
        padding:0 10px
    }
}

.dashboard__nbo-info-icon .foot-notes {
    font-size: 1.6rem;
    padding: 0 10px;
    font-family: "pfhandbookpro-medium",sans-serif
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-info-icon .foot-notes {
        padding:0 20px;
        font-size: 1.5rem;
        line-height: 19px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-info-icon .foot-notes {
        padding:0 20px;
        font-size: 2.1rem;
        line-height: 27px
    }
}

.theme-investing .dashboard__nbo-info-icon .foot-notes {
    color: #3e593c
}

.theme-protecting .dashboard__nbo-info-icon .foot-notes {
    color: #6a4742
}

.theme-financing .dashboard__nbo-info-icon .foot-notes {
    color: #695934
}

@media(max-width: 767px) {
    .dashboard__nbo-info-icon .foot-notes {
        display:-ms-flexbox !important;
        display: flex !important;
        font-size: 10px;
        line-height: normal;
        border-radius: 0;
        padding: 4px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-info-icon .foot-notes {
        display:-ms-flexbox;
        display: flex;
        font-size: .9rem;
        padding: 4px 2px
    }
}

.dashboard__nbo-info-icon .desc {
    margin: 5px 0 4px 0;
    max-height: 100px;
    height: 100%
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-info-icon .desc {
        margin:5px 0 5px 0;
        max-height: 120px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-info-icon .desc {
        margin:8px 0 6px 0;
        max-height: 169px
    }
}

.dashboard__nbo-recommended {
    padding: 0 10px 10px 10px;
    font-size: 1.8rem;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (max-width: 768px) {
    .dashboard__nbo-recommended {
        padding:0 10px 10px 17px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo-recommended {
        font-size:2.2rem;
        padding: 0 1px 15px 16px;
        margin-bottom: 5px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-recommended {
        font-size:3.2rem;
        padding: 0 1px 15px 19px;
        margin-bottom: 10px
    }
}

@media only screen and (min-width: 768px) {
    .dashboard__nbo-recommended {
        pointer-events:none;
        cursor: default
    }
}

@media(max-width: 767px) {
    .dashboard__nbo-recommended {
        display:block;
        border-top-left-radius: 3.2px;
        border-top-right-radius: 3.2px;
        background-color:  #19503e;
        height: 34px;
        padding: 3px 14px 6px 22px;
        color: #fff;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 2.3rem;
        letter-spacing: -.26px;
        position: relative;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 9
    }

    .dashboard__nbo-recommended .icon-stickyfooter {
        font-size: 2.1rem;
        position: relative;
        top: 2px;
        left: 3px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__nbo-recommended {
        font-size:calc(16px + (23 - 16)*(100vw - 360px)/(768 - 360)) !important;
        padding: 0 10px;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        left: 0;
        bottom: 0
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo-recommended {
        padding:0 10px;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        left: 0;
        bottom: 0
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-recommended {
        font-size:1.6rem;
        padding: 0 10px;
        height: auto;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        top: 0;
        left: 0;
        bottom: 0
    }
}

.dashboard__nbo--label {
    font-size: 1.6rem;
    line-height: 1.25;
    background-color:  #19503e;
    color: #fff;
    margin-bottom: 7px;
    z-index: 1;
    position: relative;
    padding: 4px 15px 5px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--label {
         padding:4px 16px 7px 8px !important
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--label {
        min-height:26px;
              padding: 4px 16px 6px 8px;
        margin-bottom: 5px !important
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .dashboard__nbo--label {
        margin-bottom:5px !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--label {
        font-size:1.7rem;
        padding: 4px 19px 4px 11px;
        margin-bottom: 7px;
        min-height: 48px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--label {
        font-size:2.7rem;
         min-height: 42px;
         margin: 0  0 19px;
         padding: 6px 25 .6px 10px 13px
    }
}

@media(max-width: 767px) {
    .dashboard__nbo--label {
        min-height:24px;
        margin-bottom: 0;
        padding: 10px 10px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--label {
        font-size:1.1rem;
        min-height: 42px;
              padding: 6px 24 .6px 10px 13px
    }
}

@media(max-width: 767px) {
    .dashboard__nbo--label .dashboard__nbo--button {
        display:block
    }
}

.dashboard__nbo--label .cta-label {
    line-height: 1.6rem;
    width: 100%
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--label .cta-label {
        line-height:19px;
        font-size: 1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--label .cta-label {
        line-height:27px;
        font-size: 2.6rem
    }
}

@media(max-width: 767px) {
    .dashboard__nbo--label .cta-label {
        max-width:none;
        font-size: 1.4rem
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--label .cta-label {
        font-size:1.4rem;
        line-height: 15px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--label .cta-label {
        font-size:1.4rem;
        line-height: normal
    }
}

.dashboard__nbo--label .btn-mini {
    font-size: 1.2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding: 0 4px;
    white-space: nowrap;
    min-width: 100px;
    line-height: 20px
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--label .btn-mini {
        font-size:2rem;
        min-width: 163px;
        line-height: 33px
    }
}

@media screen and (max-width: 450px) {
    .dashboard__nbo--label .btn-mini {
        font-size:1.8rem;
        min-width: 124px;
        line-height: 31px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--label .btn-mini {
        font-size:1.5rem;
        padding: 3px 11px;
        min-width: 119px;
        line-height: 18px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--label .btn-mini {
        font-size:2.1rem;
        padding: 5px 15px;
        min-width: 168px;
        line-height: normal
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--label .btn-mini {
        min-width:98px;
        font-size: .7rem;
        height: 20px;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.dashboard__nbo--initial {
    font-size: 2rem;
    padding: 2px 10px;
    line-height: 2rem
}

.dashboard__nbo--initial.curve-lbl {
    border-radius: 12px;
    color: #000
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--initial.curve-lbl {
        border-radius:20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--initial.curve-lbl {
        border-radius:calc(1680/992*1.2rem)
    }
}

.theme-investing .dashboard__nbo--initial.curve-lbl {
    background-color: rgba(150,159,110,.25)
}

.theme-protecting .dashboard__nbo--initial.curve-lbl {
    background-color: rgba(218,144,137,.25)
}

.theme-financing .dashboard__nbo--initial.curve-lbl {
    background-color: rgba(212,174,105,.25)
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--initial.curve-lbl {
        display:block;
        font-size: 1.1rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--initial {
        font-size:1.7rem;
        padding: 2px 10px;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--initial {
        font-size:2.4rem;
        padding: 3px 16px 3px 16px;
        line-height: 33px
    }
}

.theme-investing .dashboard__nbo--initial.foot-notes {
    color: #2d370c;
    background-color: rgba(150,159,110,.5)
}

.theme-protecting .dashboard__nbo--initial.foot-notes {
    color: #6a4742;
    background-color: rgba(218,144,137,.5)
}

.theme-financing .dashboard__nbo--initial.foot-notes {
    color: #6a4742;
    background-color: rgba(212,174,105,.5)
}

@media(max-width: 767px) {
    .dashboard__nbo--initial {
        font-size:1.9rem;
        border-radius: 2.5px
    }
}

.dashboard__nbo--initial.initial-bg {
    display: none;
    margin-right: 7px;
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--initial.initial-bg {
        font-size:14px;
        width: 32px;
        height: 23px;
        margin-right: 7px
    }
}

.theme-investing .dashboard__nbo--initial.initial-bg {
    background-color: #969f6e
}

.theme-protecting .dashboard__nbo--initial.initial-bg {
    background-color: #da9089
}

.theme-financing .dashboard__nbo--initial.initial-bg {
    background-color: #d4ae69
}

@media(max-width: 767px) {
    .dashboard__nbo--initial.initial-bg {
        display:none;
        width: 32px;
        height: 32px;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .theme-investing .dashboard__nbo--initial.initial-bg {
        color: #2d370c;
        background-color: rgba(150,159,110,.5)
    }

    .theme-protecting .dashboard__nbo--initial.initial-bg {
        color: #6a4742;
        background-color: rgba(218,144,137,.5)
    }

    .theme-financing .dashboard__nbo--initial.initial-bg {
        color: #6a4742;
        background-color: rgba(212,174,105,.5)
    }
}

@media screen and (max-width: 767px) and (max-width:360px) {
    .dashboard__nbo--initial.initial-bg {
        display:none
    }
}

.dashboard__nbo--initial.initial-bg+.txt-mobile {
    display: none
}

@media(max-width: 767px) {
    .dashboard__nbo--initial.initial-bg+.txt-mobile {
        display:none;
        margin-left: 10px;
        font-size: 2.4rem;
        font-family: "pfhandbookpro-medium",sans-serif
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--initial.initial-bg+.txt-mobile {
        margin-left:0;
        font-size: 2rem;
        white-space: normal
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--initial.initial-bg+.txt-mobile {
        display:none
    }
}

.dashboard__nbo--title {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2rem;
    color: #000;
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--title {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--title {
        font-size:3.4rem
    }
}

.dashboard__nbo--title-cta {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 2rem;
    color: #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
    padding: 0 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--title-cta {
        font-size:1.7rem;
        padding: 0 10px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--title-cta {
        font-size:2.4rem;
        padding: 1px 13px 1px 13px
    }
}

.dashboard__nbo--title-cta:hover,.dashboard__nbo--title-cta:focus {
    color: #000;
    border-bottom: none
}

@media(max-width: 767px) {
    .dashboard__nbo--title-cta {
        padding:0;
        white-space: nowrap;
        pointer-events: auto;
        padding: 12px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--title-cta {
        padding:4px 0 0 4px
    }
}

.dashboard__nbo--content {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    color: #000;
    min-height: 78px;
    padding: 0 10px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--content {
        font-size:1.7rem;
        padding: 0 11px;
        min-height: 94px;
        line-height: 1.13
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--content {
        font-size:2.4rem;
        padding: 0 11px;
        min-height: 132px;
        line-height: 27px
    }
}

@media(max-width: 767px) {
    .dashboard__nbo--content {
        display:none
    }
}

@media(max-width: 767px) {
    .dashboard__nbo--button {
        display:none
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--button {
        display:block
    }
}

.nbo-modal {
    z-index: 99991
}

.nbo-modal .modal-body {
    padding: 0
}

.nbo-modal .modal-header {
    padding: 0
}

.nbo-modal .modal-header .close {
    margin: 0;
    font-size: 2.5rem;
    right: 3%;
    top: 15px;
    background-color: #fff !important;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    opacity: 1
}

@media(max-width: 767px) {
    .nbo-modal .modal-header .close {
        z-index:99
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .modal-header .close {
        font-size:3.9rem;
        width: 39px;
        height: 39px;
        right: -3%
    }
}

@media screen and (max-width: 360px) {
    .nbo-modal .modal-header .close {
        right:2%;
        top: 0
    }
}

.nbo-modal .modal-header .close span {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 26px;
    height: 25px;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 4px;
    font-weight: normal
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .modal-header .close span {
        font-size:3.9rem;
        width: 40px;
        height: 39px
    }
}

.nbo-modal .modal-content {
    background-color: transparent;
    padding: 0;
    border: none
}

.nbo-modal .dashboard__nbo-card-item {
    max-width: 90%;
    border: none;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-shadow: 0 4px 11px -2px rgba(0,0,0,.22)
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo-card-item {
        max-width:100%
    }
}

.nbo-modal .dashboard__nbo--label {
    margin-bottom: 6px;
    padding: 4px 10px 4px 10px;
    min-height: 38px
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--label {
        min-height:60px;
        margin-bottom: 11px;
        padding-left: 15px;
        padding-right: 15px
    }
}

.nbo-modal .dashboard__nbo--label .cta-label {
    font-size: 1.6rem
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--label .cta-label {
        font-size:1.6rem;
        line-height: 1
    }
}

.nbo-modal .dashboard__nbo--label .dashboard__cta {
    margin-right: 15px !important
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--label .dashboard__cta {
        margin-right:20px !important
    }
}

.nbo-modal .dashboard__nbo--label .dashboard__cta .btn-mini {
    display: block;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.2rem;
    padding: 4px;
    display: inline-block;
    line-height: 1;
    height: 20px
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--label .dashboard__cta .btn-mini {
        height:30px;
        font-size: 1.8rem;
        padding: 5px 24px
    }
}

.nbo-modal .dashboard__nbo--title-cta {
    padding: 0 0 0 8px
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--title-cta {
        padding:0 15px 0 15px
    }
}

.nbo-modal .dashboard__nbo--initial.initial-bg {
    display: none
}

.nbo-modal .dashboard__nbo--initial.initial-bg+.txt-mobile {
    display: none
}

.nbo-modal .dashboard__nbo--initial.curve-lbl {
    display: block;
    padding: 0 8px 3px 7px;
    font-size: 1.9rem
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--initial.curve-lbl {
        padding:8px 12px 8px 12px;
        font-size: 3rem;
        border-radius: 17.5px
    }
}

.nbo-modal .dashboard__nbo--initial.foot-notes {
    display: block;
    padding: 4px 9px
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--initial.foot-notes {
        font-size:1.6rem;
        line-height: 2.4rem
    }
}

.nbo-modal .dashboard__nbo--content {
    display: block;
    font-size: 1.5rem
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo--content {
        font-size:2.4rem;
        line-height: normal;
        padding: 0 15px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo-info-icon .desc {
        margin:8px 0 auto 0
    }
}

.nbo-modal .dashboard__nbo-info-icon .btn-box.dashboard__nbo--button {
    text-align: right;
    display: block
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo-info-icon .btn-box.dashboard__nbo--button {
        margin-top:16px;
        margin-bottom: 16px
    }
}

.nbo-modal .dashboard__nbo-info-icon .btn-box.dashboard__nbo--button .dashboard__nbo--initial.btn-orange {
    font-size: 1.5rem;
    background-color: #f7a500;
    color: #2a2a2a;
    min-width: 88px;
    min-height: 30px
}

@media(max-width: 767px) {
    .nbo-modal .dashboard__nbo-info-icon .btn-box.dashboard__nbo--button .dashboard__nbo--initial.btn-orange {
        display:-ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .nbo-modal .dashboard__nbo-info-icon .btn-box.dashboard__nbo--button .dashboard__nbo--initial.btn-orange {
        font-size:2.4rem;
        min-width: 141px;
        min-height: 48px
    }
}

.shift-left {
    padding: 0;
    width: 0;
    position: relative;
    left: -100%
}

@media screen and (max-width: 991px) {
    .shift-left {
        width:100%
    }
}

.shift-left.dashboard__main-title {
    display: none
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .change-position .dashboard__nbo-card-item {
        margin-left:19px
    }
}

.change-position .dashboard__nbo-card-item .dashboard__nbo--btnrequest {
    margin-right: 18px
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-card-item .dashboard__nbo--btnrequest {
        margin-right:27px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .change-position .dashboard__nbo-card-item .dashboard__nbo--btnrequest .nbo--btncallback {
        margin:2px 0 18px
    }
}

@media screen and (max-width: 576px) {
    .change-position .dashboard__nbo-card-item-wrapper {
        display:block
    }
}

@media screen and (max-width: 360px) {
    .change-position .dashboard__nbo-card-item-wrapper {
        display:block
    }
}

.change-position .dashboard__nbo-recommended-tab-title {
    display: block
}

.change-position .dashboard__nbo-recommended-tab-title p {
    color: #030303;
    font-weight: normal;
    padding-top: 1%
}

@media screen and (max-width: 990px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2.2rem;
        font-weight: normal;
        line-height: 25px;
        padding-left: 1%;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 768px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2rem;
        font-weight: normal;
        line-height: 25px;
        padding-left: 2%;
        margin-bottom: 25px;
        padding-top: 15px
    }
}

@media screen and (max-width: 767px) and (min-width:577px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2.4rem;
        padding-left: 5%
    }
}

@media screen and (max-width: 576px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2.4rem;
        padding-left: 3%;
        margin-bottom: 25px;
        padding-top: 20px
    }
}

@media screen and (max-width: 575px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2rem;
        font-weight: normal;
        line-height: 25px;
        padding-left: 4%;
        margin-bottom: 20px;
        padding-top: 15px
    }
}

@media screen and (max-width: 360px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:1.5rem;
        padding-left: 4%;
        margin-bottom: 15px;
        padding-top: 12px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2rem;
        font-weight: normal;
        line-height: 25px;
        padding-left: 2%;
        margin-bottom: 15px;
        padding-top: 16px
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:2.4rem;
        font-weight: normal;
        line-height: 30px;
        padding-left: 21px;
        margin-bottom: 15px;
        padding-top: 15px
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-recommended-tab-title p {
        font-size:3.4rem;
        font-weight: normal;
        line-height: 42px;
        padding-left: 21px;
        margin-bottom: 24px;
        padding-top: 26px
    }
}

.change-position .dashboard__nbo-recommended {
    display: none
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-recommended {
        font-size:2.4rem;
        padding: 0 16px 19px 19px;
        line-height: 30px;
        font-weight: normal
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-recommended {
        font-size:3.4rem;
        padding: 0 16px 24px 24px;
        line-height: 42px;
        font-weight: normal
    }
}

.change-position .dashboard__nbo-card-item {
    box-shadow: 0 4px 11px -2px rgba(0,0,0,.22)
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-card-item {
        margin-right:35px;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22);
        height: max-content;
        min-height: fit-content
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-card-item {
        margin-right:38px;
        box-shadow: 0 6px 20px -9px rgba(0,0,0,.22)
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo--label .cta-label {
        line-height:17px;
        font-size: 1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo--label .cta-label {
        line-height:27px;
        font-size: 2.6rem
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo--label .btn-mini {
        font-size:1.3rem;
        padding: 3px 16px;
        min-width: 104px;
        line-height: normal
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo--label .btn-mini {
        font-size:2.1rem;
        padding: 5px 15px;
        min-width: 168px;
        line-height: normal
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo--title {
        font-size:1.5rem;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo--title {
        font-size:2.4rem;
        line-height: 27px
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo--title.-cta {
        font-size:1.5rem;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo--title.-cta {
        font-size:2.4rem;
        line-height: 27px
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo--content {
        font-size:1.5rem;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo--content {
        font-size:2.4rem;
        line-height: 27px
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-info-icon .desc {
        margin:5px 8px;
        max-height: max-content;
        min-height: min-content
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-info-icon .desc {
        margin:8px 6px;
        max-height: max-content;
        min-height: min-content
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-info-icon .btn-orange {
        font-size:1.7rem;
        min-width: 120px;
        min-height: 27px;
        padding: 0 2px;
        line-height: normal
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-info-icon .btn-orange {
        font-size:2.8rem;
        min-width: 132px;
        min-height: 43px;
        padding: 0 2px
    }
}

@media screen and (min-width: 1200px) {
    .change-position .dashboard__nbo-info-icon .foot-notes {
        font-size:1.3rem;
        padding: 0 20px;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .change-position .dashboard__nbo-info-icon .foot-notes {
        font-size:2.1rem;
        padding: 0 20px;
        line-height: 27px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .change-position .dashboard__nbo--footer-red .footer-lob {
        min-width:227px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo-card-item-wrapper {
        display:none
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo-card-item-wrapper {
        display:none
    }
}

.dashboard__nbo--title {
    display: none
}

.dashboard__nbo-card-item {
    box-shadow: 0 4px 6px 0 rgba(0,0,0,.22)
}

.dashboard__nbo-recommended-tab-title {
    display: none
}

.dashboard__nbo--product-desciption {
    font-weight: 500;
    color: #000;
    font-weight: 500;
    min-height: 35px;
    font-size: 1.6rem;
    font-family: "pfhandbookpro-medium",sans-serif
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .dashboard__nbo--product-desciption {
        min-height:21px
    }
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 20px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 500;
        padding: 0 5px
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 17px;
        color: #000;
        margin-bottom: 5px;
        font-weight: 500;
        padding: 1px 5px 0;
        min-height: 21px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 26px;
        color: #000;
        margin-bottom: 5px;
        font-weight: 500;
        padding: 5px 9px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 20px;
        color: #000;
        margin-bottom: 5px;
        font-weight: 500;
        padding: 0 9px 0
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 16px;
        padding: 5px 5px 0;
        font-weight: 500
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 17px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 500;
        padding: 0 5px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 17px;
        margin-bottom: 10px;
        padding: 0 32px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--product-desciption {
        font-size:2.6rem;
        line-height: 27px;
        margin-bottom: 10px;
        padding: 0 9px
    }
}

.dashboard__nbo--title-why {
    width: 100%
}

.dashboard__nbo--title-why p {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--title-why p {
        margin:9px auto 5px;
        padding: 1px 21px 2.8px 23px;
        border-radius: 3.4px;
        font-size: 1.5rem;
        line-height: 20px;
        width: 115px;
        color: #000
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--title-why p {
        margin:2px auto 2px;
        padding: 1px 21px 2.8px 23px;
        border-radius: 3.4px;
        font-size: 1.3rem;
        line-height: 17px;
        width: 105px;
        color: #000
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--title-why p {
        font-size:2rem;
        line-height: 26px;
        width: 140px;
        margin: 4px auto 2px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--title-why p {
        margin:4px auto 2px;
        padding: 1px 21px 2.8px 23px;
        border-radius: 3.4px;
        font-size: 1.9rem;
        line-height: 17px;
        width: 140px;
        color: #000
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--title-why p {
        font-size:1.2rem;
        line-height: 16px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--title-why p {
        margin:4px auto 3px;
        padding: 1px 21px 2.8px 23px;
        border-radius: 3.4px;
        font-size: 1.2rem;
        line-height: 12px;
        width: 105px;
        color: #000
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--title-why p {
        margin:10px auto 3px;
        padding: 1px 11px 1px 11px;
        border-radius: 3.4px;
        font-size: 1.5rem;
        line-height: 22px;
        width: 94px;
        color: #000
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--title-why p {
        margin:4px auto 5px;
        padding: 1px 21px 2.8px 23px;
        border-radius: 3.4px;
        font-size: 2.1rem;
        line-height: 27px;
        width: 141px;
        color: #000
    }
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--product-option {
        margin:0 16px 0 16px;
        padding: 0 15px 13px 15px;
        border-radius: 4px;
        text-align: center
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--product-option {
        margin:0 16px 0 16px;
        padding: 0 15px 7px 15px;
        border-radius: 4px;
        text-align: center
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--product-option {
        padding:0 16px 5px 16px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--product-option {
        padding:0 18px 13px 18px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--product-option {
        margin:0 17px 0 17px;
        padding: 0 16px 5px 16px;
        border-radius: 4px;
        text-align: center
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--product-option {
        margin:0 16px 0 16px;
        padding: 0 15px 9px 15px;
        border-radius: 4.9px;
        text-align: center
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--product-option {
        margin:0 16px 0 16px;
        padding: 0 26px 13px 26px;
        border-radius: 6.8px;
        text-align: center
    }
}

.dashboard__nbo--product-option .optionone span {
    text-align: center;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-weight: 500
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--product-option .optionone span {
        border:solid 1.7px #e02020;
        background-color: #fff;
        border-radius: 50px;
        font-size: 1.5rem;
        color: #000;
        line-height: normal;
        width: 25px;
        height: 25px;
        display: inline-block;
        padding: 2px 4px;
        text-align: center
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--product-option .optionone span {
        border:solid 1.7px #e02020;
        background-color: #fff;
        border-radius: 50px;
        font-size: 1.3rem;
        color: #000;
        line-height: normal;
        width: 20px;
        height: 20px;
        display: inline-block;
        padding: 1px 4px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--product-option .optionone span {
        font-size:2rem;
        width: 27px;
        height: 27px;
        padding: 0 4px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--product-option .optionone span {
        font-size:1.2rem;
        width: 16px;
        height: 16px;
        padding: 0 0;
        text-align: center;
        line-height: 12px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--product-option .optionone span {
        border:solid 1.7px #e02020;
        background-color: #fff;
        border-radius: 50px;
        font-size: 1.2rem;
        color: #000;
        line-height: 17px;
        width: 20px;
        height: 20px;
        display: inline-block;
        text-align: center;
        padding: 0 0
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--product-option .optionone span {
        padding:0 0;
        border: solid 1.7px #e02020;
        background-color: #fff;
        border-radius: 50px;
        font-size: 1.5rem;
        color: #000;
        line-height: normal;
        width: 20px;
        height: 20px;
        display: inline-block
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--product-option .optionone span {
        padding:0 7px;
        border: solid 1.7px #e02020;
        background-color: #fff;
        border-radius: 50px;
        font-size: 2.1rem;
        color: #000;
        line-height: normal;
        width: 28px;
        height: 28px;
        display: inline-block
    }
}

.dashboard__nbo--product-option .optionone p {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: normal
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px;
        color: #fff
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px;
        color: #fff;
        margin-bottom: 1px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px;
        color: #fff;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px;
        color: #fff;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--product-option .optionone p {
        font-size:2.625rem;
        line-height: 32px;
        color: #fff
    }
}

.dashboard__nbo--btnrequest {
    margin-right: 17px
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--btnrequest {
        margin-right:27px
    }
}

.dashboard__nbo--btnrequest .nbo--btncallback {
    font-weight: bold;
    font-family: "pfhandbookpro-bold",sans-serif;
    background: #f7a500;
    border: 1px solid #f7a500
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        background:#f7a500;
        border: 1px solid #f7a500;
        margin: 2px 0 16px;
        font-size: 1.6rem;
        padding: 9px 6px;
        line-height: normal
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        background:#f7a500;
        border: 1px solid #f7a500;
        margin: 2px 0 16px;
        font-size: 1.6rem;
        padding: 9px 6px;
        line-height: normal
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.6rem
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.6rem
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        background:#f7a500;
        border: 1px solid #f7a500;
        margin: 2px 0 12px;
        font-size: 1.6rem;
        padding: 9px 6px;
        line-height: normal
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        background:#f7a500;
        border: 1px solid #f7a500;
        margin: 2px 0 14px;
        font-size: 1.6rem;
        padding: 9px 6px;
        line-height: normal
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--btnrequest .nbo--btncallback {
        background:#f7a500;
        border: 1px solid #f7a500;
        margin: 2px 0 28px;
        font-size: 2.8rem;
        padding: 13px 6px;
        line-height: normal
    }
}

.dashboard__nbo--footer-red {
    background:  #19503e;
    line-height: 1.25;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.dashboard__nbo--footer-red>* {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--footer-red {
        padding:2px 15px
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--footer-red {
        padding:2px 15px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--footer-red {
        padding:2px 15px;
        bottom: unset
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--footer-red {
        padding:2px 10px;
        bottom: unset
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--footer-red {
        padding:2px 15px;
        min-height: 36px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--footer-red {
        padding:2px 15px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--footer-red {
        padding:2px 18px
    }
}

.dashboard__nbo--footer-red .footer-lob {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: left;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
    min-width: 265px
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:237px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:217px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:55px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:44px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:275px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--footer-red .footer-lob {
        min-width:435px
    }
}

.dashboard__nbo--footer-red .footer-lob p {
    color: #fff;
    margin-bottom: 0;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-weight: 500
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.5rem;
        line-height: 19px
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.3rem;
        line-height: 19px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:2rem;
        padding: 5px 0;
        line-height: normal
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.4rem;
        line-height: 13px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.2rem;
        line-height: 14px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.5rem;
        line-height: 19px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--footer-red .footer-lob p {
        font-size:2.1rem;
        line-height: 27px
    }
}

.dashboard__nbo--footer-red .footer-product-link {
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
    height: 100%;
    min-width: 100%;
    width: 101%;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--footer-red .footer-product-link {
        line-height:15px
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--footer-red .footer-product-link {
        line-height:15px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--footer-red .footer-product-link {
        vertical-align:inherit;
        line-height: 15px;
        min-width: 39px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--footer-red .footer-product-link {
        line-height:30px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--footer-red .footer-product-link {
        line-height:27px
    }
}

.dashboard__nbo--footer-red .footer-product-link a {
    color: #fff;
    margin-bottom: 0;
    text-decoration: underline;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: normal;
    border-bottom: 2px solid  #19503e
}

@media screen and (max-width: 990px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.5rem;
        line-height: 35px
    }
}

@media screen and (max-width: 768px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.3rem;
        line-height: 16px
    }
}

@media screen and (max-width: 576px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:2rem;
        line-height: 15px;
        padding: 5px 0
    }
}

@media screen and (max-width: 575px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.4rem;
        line-height: 15px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.2rem
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.3rem;
        line-height: 14px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.3rem;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo--footer-red .footer-product-link a {
        font-size:2.1rem;
        line-height: 23px
    }
}

.cardflip {
    margin-bottom: 30px;
    perspective: 1000px;
    border-radius: 12.8px !important;
    box-shadow: 0 10px 48px -14px rgba(0,0,0,.4);
    border: solid .4px  #19503e !important
}

.back {
    background: #fff;
    position: absolute;
    top: 0;
    z-index: -1;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    height: 100%;
    backface-visibility: hidden;
    padding-left: 3%;
    padding-right: 3%;
    display: table;
    width: 100%;
    transition: transform 1.2s
}

.back p {
    margin-bottom: 48px;
    font-size: 3.2rem;
    color: #000;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    font-family: "pfhandbookpro-medium",sans-serif;
    font-weight: 500
}

@media screen and (max-width: 768px) {
    .back p {
        font-size:2rem;
        line-height: 24px;
        margin-bottom: 25px
    }
}

@media screen and (max-width: 576px) {
    .back p {
        font-size:3.1rem;
        line-height: 38px
    }
}

@media screen and (max-width: 360px) {
    .back p {
        font-size:1.9rem;
        line-height: 23px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .back p {
        font-size:2rem;
        line-height: 24px
    }
}

@media screen and (min-width: 1200px) {
    .back p {
        font-size:2rem;
        line-height: 24px;
        margin-bottom: 25px
    }
}

@media screen and (min-width: 1680px) {
    .back p {
        font-size:3.2rem;
        line-height: 40px
    }
}

.back .nbo--btndone {
    background: #f7a500;
    border: 1px solid #f7a500;
    margin: 2px 0 28px;
    font-size: 2.8rem;
    padding: 4px 63px;
    line-height: normal
}

@media screen and (max-width: 768px) {
    .back .nbo--btndone {
        font-size:1.7rem
    }
}

@media screen and (max-width: 576px) {
    .back .nbo--btndone {
        font-size:2.7rem
    }
}

@media screen and (max-width: 360px) {
    .back .nbo--btndone {
        font-size:1.7rem
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .back .nbo--btndone {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1200px) {
    .back .nbo--btndone {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .back .nbo--btndone {
        font-size:2.8rem
    }
}

.front {
    background: #fff;
    backface-visibility: hidden;
    transition: transform 12s
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d
}

.flipped .card-flip-inner {
    transform: rotateY(-360deg);
    width: 99%
}

.flipped .front {
    transform: rotateY(180deg);
    visibility: hidden
}

.flipped .back {
    visibility: visible;
    transform: rotateY(360deg)
}

.login-right-col .dashboard__nbo-card-item-wrapper {
    margin-left: 28px
}

.login-right-col .dashboard__nbo-cards-innerwrapper {
    padding-left: 0;
    padding-right: 0
}

.login-right-col .dashboard__nbo-card-item {
    margin-right: 5px !important;
    margin-left: 0 !important
}

.login-right-col .hide-last-2-nbo {
    display: block
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--footer-red {
        padding:2px 9px
    }
}

.login-right-col .dashboard__nbo--product-desciption {
    font-weight: 500;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif
}

@media screen and (max-width: 990px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 20px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 500;
        padding: 0 5px
    }
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 11px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 500;
        padding: 0 5px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 26px;
        color: #000;
        margin-bottom: 5px;
        font-weight: 500;
        padding: 5px 5px
    }
}

@media screen and (max-width: 575px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 21px;
        margin-bottom: 5px;
        padding: 0 9px 0
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 16px;
        padding: 5px 5px 0;
        font-weight: bold
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 11px;
        color: #000;
        margin-bottom: 10px;
        font-weight: 500;
        padding: 0 5px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:1.6rem;
        line-height: 13px;
        margin-bottom: 10px;
        padding: 0 10px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--product-desciption {
        font-size:2.6rem;
        line-height: 20px;
        margin-bottom: 14px;
        padding: 0 5px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--title {
        display:block
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--product-desciption {
        display:block
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--product-desciption {
        margin-bottom:0
    }
}

.login-right-col .dashboard__nbo--title-why p {
    font-family: "pfhandbookpro-medium",sans-serif
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:.8rem;
        line-height: 6px;
        width: 54px;
        padding: 2px 6px 2px 6px;
        margin: 2px auto 2px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:2rem;
        line-height: 17px;
        width: 132px;
        padding: 3px 11px 3px 11px
    }
}

@media screen and (max-width: 575px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:1.7rem;
        line-height: 15px;
        width: 132px;
        padding: 3px 11px 3px 11px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:1.2rem;
        width: 77px;
        padding: 3px 9px 3px 9px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:.8rem;
        line-height: 7px;
        width: 54px;
        margin: 0 auto 3px;
        padding: 2px 6px 2px 6px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--title-why p {
        padding:1px 5px 1px 5px;
        border-radius: 3.4px;
        font-size: 1rem;
        line-height: 16px;
        width: 70px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--title-why p {
        font-size:1.4rem;
        line-height: 18px;
        width: 91px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--title-why {
        display:block
    }
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--product-option {
        padding:1px 15px 2px 15px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--product-option {
        display:block;
        margin: 9px 9px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--product-option {
        display:block;
        margin: 9px ​9px 7px 9px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--product-option {
        padding:0 5px 5px 5px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--product-option {
        margin:5px 7px 7px 7px
    }
}

.login-right-col .dashboard__nbo--product-option .optionone span {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-weight: 500
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:.8rem;
        width: 11px;
        height: 11px;
        line-height: 3px;
        text-align: center;
        padding: 2px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:2rem;
        width: 27px;
        height: 27px;
        padding: 0 4px;
        line-height: normal
    }
}

@media screen and (max-width: 575px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:1.7rem;
        line-height: 18px;
        width: 23px;
        height: 23px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:1.2rem;
        width: 16px;
        height: 16px;
        line-height: 8px;
        text-align: center;
        padding: 2px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:.9rem;
        width: 12px;
        height: 12px;
        line-height: 4px;
        text-align: center;
        padding: 2px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:1rem;
        width: 13px;
        height: 13px;
        line-height: 12px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--product-option .optionone span {
        font-size:1.4rem;
        width: 18px;
        height: 18px;
        padding: 0;
        line-height: 17px
    }
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        margin-top:4px;
        font-size: 1.6rem;
        line-height: 20px;
        margin-bottom: 3px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px;
        margin-top: 12px;
        margin-bottom: 6px
    }
}

@media screen and (max-width: 575px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        font-size:1.6rem;
        line-height: 20px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        margin-top:4px;
        font-size: 1.6rem;
        line-height: 20px;
        margin-bottom: 3px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        margin-top:3px;
        font-size: 1.6rem;
        line-height: 20px;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        margin-top:3px;
        font-size: 1.6rem;
        line-height: 20px;
        margin-bottom: 5px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--product-option .optionone p {
        font-size:2.6rem;
        line-height: 32px;
        margin-bottom: 10px
    }
}

.login-right-col .dashboard__nbo--btnrequest {
    margin-right: 12px
}

.login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
    font-weight: bold;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.1rem
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:2.7rem
    }
}

@media screen and (max-width: 575px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.9rem
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.4rem
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.1rem
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.4rem;
        padding: 4px 10px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--btnrequest .nbo--btncallback {
        font-size:1.9rem;
        padding: 4px 16px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--btnrequest {
        display:block
    }
}

.login-right-col .dashboard__nbo--footer-red {
    background:  #19503e;
    line-height: 1.25;
    z-index: 1
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--footer-red {
        padding:2px 7px;
        min-height: 36px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--footer-red {
        padding:2px 15px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--footer-red {
        padding:2px 5px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--footer-red {
        padding:2px 7px
    }
}

.login-right-col .dashboard__nbo--footer-red .footer-lob {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: left;
    justify-content: left;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob {
        min-width:200px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob {
        min-width:150px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob {
        min-width:55px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob {
        min-width:44px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob {
        min-width:190px
    }
}

.login-right-col .dashboard__nbo--footer-red .footer-lob p {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-weight: 500
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:.9rem
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:2rem
    }
}

@media screen and (max-width: 450px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.5rem
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.2rem;
        line-height: 14px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:.9rem;
        line-height: 12px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:1rem;
        line-height: 20px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--footer-red .footer-lob p {
        font-size:1.4rem;
        line-height: 15px
    }
}

.login-right-col .dashboard__nbo--footer-red .footer-product-link {
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
    height: 100%;
    width: 101%;
    min-width: 100%
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link {
        line-height:10px;
        min-width: 39px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link {
        line-height:13px
    }
}

.login-right-col .dashboard__nbo--footer-red .footer-product-link a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: normal;
    border-bottom: 2px solid  #19503e
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:.9rem
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:2rem;
        line-height: 45px;
        padding: 5px 0
    }
}

@media screen and (max-width: 450px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.5rem;
        line-height: 15px
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.2rem;
        line-height: 28px;
        padding: 3px 0
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:.9rem;
        line-height: 25px
    }
}

@media screen and (min-width: 1200px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1rem;
        line-height: 19px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .dashboard__nbo--footer-red .footer-product-link a {
        font-size:1.4rem;
        line-height: 14px
    }
}

@media screen and (max-width: 576px) {
    .login-right-col .pre-login-col-12 {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%
    }

    .login-right-col .pre-login-display-non {
        display: none
    }
}

@media screen and (max-width: 360px) {
    .login-right-col .pre-login-col-12 {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%
    }

    .login-right-col .pre-login-display-non {
        display: none
    }
}

@media screen and (min-width: 576px) {
    .login-right-col .dashboard__nbo--btnrequest {
        margin-right:17px
    }
}

@media screen and (min-width: 992px) {
    .login-right-col .footer-product-link {
        padding-left:12px
    }

    .login-right-col .dashboard__nbo--btnrequest {
        margin-right: 9px
    }
}

@media screen and (min-width: 1680px) {
    .login-right-col .footer-product-link {
        padding-left:22px
    }

    .login-right-col .dashboard__nbo--btnrequest {
        margin-right: 18px
    }
}

.owl-carousel button.owl-prev.disabled {
    display: none
}

.owl-carousel button.owl-next.disabled {
    display: none
}

.inner-greyblock {
    width: 49%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 11px 2px 10px;
    border-radius: 9.6px;
    min-height: 80px;
    background-color: #7c7c7b
}

@media screen and (min-width: 1680px) {
    .inner-greyblock {
        min-height:111px
    }
}

.responsive-margin {
    width: 2%
}

.border-bottom-red {
    border-bottom: 2px solid;
    font-size: 12px
}

@media screen and (min-width: 1680px) {
    .border-bottom-red {
        font-size:19px
    }
}

.text-center {
    border-radius: 12.8px
}

.dashboard__nbo-card-item {
    max-height: 309px !important
}

@media screen and (min-width: 768px) and (max-width:986px) {
    .login-right-col .dashboard__nbo-card-item {
        max-height:512px !important
    }
}

@media screen and (max-width: 1600px) {
    .login-right-col .dashboard__nbo-card-item {
        max-height:331px !important
    }

    .login-right-col .dashboard__nbo--label {
        font-size: 1.4rem
    }

    .login-right-col .dashboard__nbo--label .cta-label {
        font-size: 1.4rem !important
    }

    .login-right-col .dashboard__nbo--product-desciption {
        font-size: 1.6rem !important
    }

    .login-right-col .inner-greyblock .optionone p {
        font-size: 1.6rem !important
    }

    .login-right-col .border-bottom-red {
        font-size: 1.2rem
    }

    .login-right-col .nbo--btncallback {
        font-size: 1.6rem
    }
}

@media screen and (min-width: 992px) {
    .login-right-col .footer-product-link {
        padding-top:.3rem
    }
}

@media screen and (min-width: 1600px) {
    .login-right-col .dashboard__nbo--label .cta-label {
        font-size:2.2rem !important
    }

    .login-right-col .dashboard__nbo-card-item {
        max-height: 419px !important
    }

    .login-right-col .dashboard__nbo--label {
        font-size: 2rem
    }

    .login-right-col .dashboard__nbo--product-desciption {
        line-height: 27px;
        font-size: 2.6rem !important;
        padding-bottom: 10px
    }

    .login-right-col .inner-greyblock .optionone p {
        font-size: 2.6rem !important
    }

    .login-right-col .border-bottom-red {
        font-size: 1.9rem
    }

    .login-right-col .nbo--btncallback {
        font-size: 2.6rem !important
    }
}

@media screen and (min-width: 1100px) and (max-width:1200px) {
    .login-right-col .dashboard__nbo-card-item {
        max-height:292px !important
    }
}

@media screen and (min-width: 768px) {
    .dashboard__nbo-card-item {
        max-height:291px !important
    }
}

@media screen and (min-width: 1366px) {
    .dashboard__nbo-card-item {
        max-height:278px !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__nbo-card-item {
        max-height:376px !important
    }
}

@media screen and (min-width: 1199px) {
    .dashboard__nbo-card-item {
        max-height:273px
    }
}

@media screen and (min-width: 992px) and (max-width:1199px) {
    .dashboard__nbo-card-item {
        max-height:279px !important
    }
}

.card-title {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px
}

.footer-product-link {
    padding-top: 1rem;
    padding-left: 22px
}

@media screen and (min-width: 1680px) {
    .footer-product-link {
        padding-left:30px
    }
}

@media screen and (min-width: 768px) {
    .login-right-col .dashboard__nbo-card-item {
        width:unset !important
    }
}

@media screen and (max-width: 768px) {
    .login-right-col .dashboard__nbo-card-item {
        max-width:unset !important
    }
}

.custom-carousel-control-next {
    left: 50px;
    border-bottom: none !important
}

.custom-postion-buttons {
    position: relative
}

.custom-carousel-inner {
    padding: 0 30px
}

@media screen and (max-width: 768px) {
    .custom-carousel-inner {
        padding:0 20px
    }
}

.carousel-control-prev-icon-abc {
    background-image: url("../images/abc-red-arrow-icon.svg");
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.carousel-control-next-icon-abc {
    background-image: url("../images/abc-red-arrow-icon.svg")
}

.custom-carousel-control-prev {
    border-bottom: none !important
}

.carousel-control-prev,.carousel-control-next {
    opacity: 1
}

.pre-approved-div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.pre-approved-div .pre-approved-text {
    color:  #19503e;
    border-bottom: 1px solid  #19503e;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
    min-height: 20px
}

@media screen and (min-width: 1680px) {
    .pre-approved-div .pre-approved-text {
        font-size:28px
    }
}

.dashboard__portfolio-summary-card.dashboard__summary-card {
    padding-right: 0;
    min-height: 650px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card {
        min-height:780px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card {
        min-height:1092px
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card {
        border-radius:8px;
        box-shadow: 0 10px 32px -14px rgba(0,0,0,.22);
        background-color: #fff;
        border-left: none !important;
        min-height: auto
    }
}

.dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper {
    max-height: 600px;
    overflow-y: auto
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper {
        min-height:720px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper {
        min-height:1008px
    }
}

.dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

.dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper::-webkit-scrollbar-thumb {
    background: rgba(216,216,216,.5)
}

.dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper::-webkit-scrollbar-track {
    background: rgba(245,245,245,.75)
}

.dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper {
    scrollbar-face-color:rgba(216,216,216,.5);scrollbar-track-color:rgba(245,245,245,.75)}

@media(max-width: 767px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme .dashboard__portfolio-scheme-wrapper {
        max-height:100%;
        overflow-y: visible
    }
}

.dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper {
    max-height: 600px;
    overflow-y: auto
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper {
        min-height:720px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper {
        min-height:1008px
    }
}

.dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

.dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(216,216,216,.5)
}

.dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper::-webkit-scrollbar-track {
    background: rgba(245,245,245,.75)
}

.dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper {
    scrollbar-face-color:rgba(216,216,216,.5);scrollbar-track-color:rgba(245,245,245,.75)}

@media(max-width: 767px) {
    .dashboard__portfolio-summary-card.dashboard__summary-card .dashboard__portfolio-inner-content-wrapper {
        max-height:100%;
        overflow-y: visible
    }
}

.dashboard__portfolio-main-wrapper {
    width: 100%
}

@media(max-width: 767px) {
    .dashboard__portfolio-main-wrapper {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-top: 0
    }
}

.dashboard__portfolio-main-wrapper .component-basic-portfolio {
    max-width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(max-width: 767px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio {
        padding-left:7px;
        padding-right: 7px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio {
        padding-left:7px;
        padding-right: 7px
    }
}

.dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme {
    margin-bottom: 27px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme {
        margin-bottom:27px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme {
        margin-bottom:40px
    }
}

.dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li {
    padding-left: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li {
        padding-left:6px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li {
        padding-left:8px
    }
}

.dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li:first-child {
    padding-left: 20px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li:first-child {
        padding-left:30px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li:first-child {
        padding-left:35px
    }
}

.dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li p:after {
    margin-left: 12px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li p:after {
        margin-left:20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li p:after {
        margin-left:20px
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li p:after {
        margin-left:7px;
        top: 13px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-main-wrapper .component-basic-portfolio.component-basic-portfolio-by-scheme .horizontal-listsummary-row ul li p:after {
        top:7px
    }
}

.dashboard__portfolio-mobile-dropdown {
    display: none;
    font-size: calc(16px + (26 - 16)*(100vw - 360px)/(768 - 360)) !important
}

.dashboard__portfolio-cta-wrapper {
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
    margin-top: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-cta-wrapper {
        margin-top:25px;
        margin-left: 25px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-cta-wrapper {
        margin-top:25px;
        margin-left: 30px
    }
}

@media(max-width: 575px) {
    .dashboard__portfolio-cta-wrapper {
        display:-ms-flexbox;
        display: flex;
        margin-left: 0
    }
}

.dashboard__portfolio-scheme-wrapper {
    padding-left: 20px;
    padding-right: 15px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme-wrapper {
        padding-left:20px;
        padding-right: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme-wrapper {
        padding-left:20px;
        padding-right: 0
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-scheme-wrapper {
        padding-left:33px;
        padding-right: 30px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme-wrapper {
        padding-left:7px;
        padding-right: 7px
    }
}

.dashboard__portfolio-scheme--heading {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 8px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme--heading {
        margin-bottom:15px;
        font-size: 2.2rem;
        padding-left: 13px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme--heading {
        margin-bottom:15px;
        font-size: 3.1rem;
        padding-left: 15px
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-scheme--heading {
        font-size:calc(14px + (22 - 14)*(100vw - 360px)/(768 - 360)) !important;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--heading {
        margin-bottom:5px
    }
}

.dashboard__portfolio-scheme--detail-title {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 2rem;
    color: #000;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme--detail-title {
        margin-bottom:18px;
        font-size: 2.2rem;
        padding-left: 13px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme--detail-title {
        margin-bottom:18px;
        font-size: 3.2rem;
        padding-left: 15px
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-scheme--detail-title {
        font-size:calc(14px + (23 - 14)*(100vw - 360px)/(768 - 360)) !important;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--detail-title {
        display:-ms-flexbox;
        display: flex;
        margin-bottom: 10px
    }
}

.dashboard__portfolio-scheme--detail-title .listsummary-switcher {
    font-family: "pfhandbookpro-light",sans-serif;
    font-size: 1.8rem;
    color: rgba(0,0,0,.16);
    margin-left: 10px;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher {
        margin-left:30px;
        font-size: 2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher {
        margin-left:30px;
        font-size: 3.1rem
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher {
        font-size:calc(14px + (22 - 14)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher {
        margin-left:0
    }
}

.dashboard__portfolio-scheme--detail-title .listsummary-switcher.active {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    color: #788158
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher.active {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher.active {
        font-size:3rem
    }
}

@media(max-width: 767px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher.active {
        font-size:2.2rem
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher.active {
        font-size:1.4rem
    }
}

.dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head .listsummary-switcher {
    margin-left: 9px;
    margin-right: 8px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head .listsummary-switcher {
        margin-left:11px;
        margin-right: 4px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head .listsummary-switcher {
        margin-left:11px;
        margin-right: 4px
    }
}

.dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head .listsummary-switcher:first-child {
    margin-left: 0
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head .listsummary-switcher {
        margin-left:4px;
        margin-right: 4px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__portfolio-scheme--detail-title .listsummary-switcher .listsummary-switcher-head {
        margin-top:0;
        margin-left: 15px
    }
}

.dashboard__download-cta {
    margin-right: 30px
}

@media screen and (min-width: 1200px) {
    .dashboard__download-cta {
        margin-right:31px
    }
}

@media(max-width: 575px) {
    .dashboard__download-cta {
        margin-right:10px;
        margin-bottom: 20px
    }
}

.dashboard__download-cta a {
    border: solid 1px #a1ac7b;
    border-radius: 2px;
    color: #a1ac7b;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    padding: 12px 58px 10px 15px;
    display: inline-block;
    position: relative
}

@media screen and (min-width: 1200px) {
    .dashboard__download-cta a {
        padding-left:16px;
        padding-bottom: 12px;
        padding-right: 68px;
        padding-top: 15px;
        font-size: 1.9rem;
        border-radius: 2px;
        border-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__download-cta a {
        padding-left:16px;
        padding-bottom: 20px;
        padding-right: 68px;
        padding-top: 20px;
        font-size: 2.7rem;
        border-radius: 2px;
        border-width: 1px
    }
}

@media(max-width: 767px) {
    .dashboard__download-cta a {
        font-size:calc(14px + (23 - 14)*(100vw - 360px)/(768 - 360)) !important;
        padding: 23px 15px 19px 15px
    }

    .dashboard__download-cta a:after {
        display: none
    }
}

@media(max-width: 575px) {
    .dashboard__download-cta a {
        padding:9px
    }
}

.dashboard__download-cta a:after {
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    top: 50%;
    right: 17px;
    margin-top: 2px
}

@media screen and (min-width: 1200px) {
    .dashboard__download-cta a:after {
        margin-top:2px;
        font-size: 3rem;
        right: 21px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__download-cta a:after {
        margin-top:3px;
        font-size: 3rem;
        right: 28px
    }
}

.dashboard__download-cta a:hover {
    color: #fff;
    background-color: #a1ac7b
}

.dashboard__dark-dropdown {
    position: relative
}

@media(max-width: 767px) {
    .dashboard__dark-dropdown {
        width:150px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__dark-dropdown {
        width:117px
    }
}

.dashboard__dark-dropdown .selected {
    border-radius: 2px;
    background-color: #3e593c;
    min-width: 144px;
    padding: 13px 46px 13px 26px;
    border: none;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    position: relative;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__dark-dropdown .selected {
        font-size:1.9rem;
        padding-left: 37px;
        padding-bottom: 18px;
        padding-top: 17px;
        border-radius: 5px;
        padding-right: 22px;
        min-width: 173px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__dark-dropdown .selected {
        font-size:2.9rem;
        padding-left: 47px;
        padding-bottom: 24px;
        padding-top: 24px;
        border-radius: 5px;
        padding-right: 77px;
        min-width: 241px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__dark-dropdown .selected {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__dark-dropdown .selected {
        font-size:2.7rem
    }
}

.dashboard__dark-dropdown .selected:after {
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem;
    top: 16px;
    right: 17px
}

@media screen and (min-width: 1200px) {
    .dashboard__dark-dropdown .selected:after {
        right:25px;
        top: 20px;
        font-size: 1.5rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__dark-dropdown .selected:after {
        right:25px;
        top: 27px;
        font-size: 2rem
    }
}

.dashboard__dark-dropdown .selected.active:after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media(max-width: 767px) {
    .dashboard__dark-dropdown .selected {
        font-size:calc(14px + (23 - 14)*(100vw - 360px)/(768 - 360)) !important;
        padding: 0;
        height: 64px;
        min-width: 150px;
        padding: 20px 46px 19px 15px
    }

    .dashboard__dark-dropdown .selected:after {
        margin-top: 0;
        top: 26px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__dark-dropdown .selected {
        height:40px;
        min-width: 117px;
        padding: 13px 36px 9px 17px
    }

    .dashboard__dark-dropdown .selected:after {
        top: 14px
    }
}

.dashboard__dark-dropdown .select-dropdown {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch;
    padding-left: 0;
    border: 1px solid #d0d0d0;
    border-top: 0 none;
    z-index: 10;
    position: absolute;
    background-color: #fff;
    width: 100%;
    display: none
}

@media screen and (min-width: 1200px) {
    .dashboard__dark-dropdown .select-dropdown {
        max-height:230px;
        border-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__dark-dropdown .select-dropdown {
        max-height:230px;
        border-width: 1px
    }
}

.dashboard__dark-dropdown .select-dropdown.active {
    display: block
}

.dashboard__dark-dropdown .select-dropdown li {
    box-shadow: inset 0 -1px 0 0 #f1f3f6;
    font-size: 1.8rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #303030;
    padding: 12px 16px !important;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__dark-dropdown .select-dropdown li {
        padding-top:15px !important;
        padding-bottom: 15px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-size: 2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__dark-dropdown .select-dropdown li {
        padding-top:15px !important;
        padding-bottom: 15px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-size: 2.2rem
    }
}

.dashboard__dark-dropdown .select-dropdown li:before {
    display: none
}

.dashboard__dark-dropdown .select-dropdown li:hover,.dashboard__dark-dropdown .select-dropdown li:active {
    background-color: #f1f3f6
}

.dashboard__light-dropdown {
    position: relative
}

@media(max-width: 767px) {
    .dashboard__light-dropdown {
        width:150px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__light-dropdown {
        width:117px
    }
}

.dashboard__light-dropdown .selected {
    border-radius: 2px;
    border: solid 1px #a1ac7b;
    background-color: #fff;
    min-width: 108px;
    padding: 13px;
    color: #a1ac7b;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    position: relative;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__light-dropdown .selected {
        font-size:1.9rem;
        padding: 16px;
        min-width: 132px;
        border-width: 1px;
        border-radius: 3px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__light-dropdown .selected {
        font-size:2.7rem;
        padding: 16px;
        min-width: 165px;
        border-width: 1px;
        border-radius: 3px
    }
}

.dashboard__light-dropdown .selected:after {
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem;
    top: 14px;
    right: 10px;
    color: #a1ac7b
}

@media screen and (min-width: 1200px) {
    .dashboard__light-dropdown .selected:after {
        top:18px;
        right: 13px;
        font-size: 1.5rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__light-dropdown .selected:after {
        top:21px;
        right: 15px;
        font-size: 1.7rem
    }
}

.dashboard__light-dropdown .selected.active:after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media(max-width: 767px) {
    .dashboard__light-dropdown .selected {
        font-size:calc(14px + (23 - 14)*(100vw - 360px)/(768 - 360)) !important;
        padding: 0;
        height: 64px;
        min-width: 150px;
        padding: 20px 46px 19px 15px
    }

    .dashboard__light-dropdown .selected:after {
        margin-top: 0;
        top: 26px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__light-dropdown .selected {
        height:40px;
        min-width: 117px;
        padding: 13px 36px 9px 17px
    }

    .dashboard__light-dropdown .selected:after {
        top: 14px
    }
}

.dashboard__light-dropdown .select-dropdown {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch;
    padding-left: 0;
    box-shadow: 0 5px 11px -4px rgba(0,0,0,.27);
    border-top: 0 none;
    z-index: 10;
    position: absolute;
    background-color: #fff;
    width: 100%;
    display: none
}

@media screen and (min-width: 1680px) {
    .dashboard__light-dropdown .select-dropdown {
        box-shadow:calc(1680/992*0) calc(1680/992*.5rem) calc(1680/992*1.1rem) -.4rem rgba(0,0,0,.27)
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__light-dropdown .select-dropdown {
        box-shadow:2px 6px 12px 0 rgba(0,0,0,.08);
        max-height: 175px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__light-dropdown .select-dropdown {
        max-height:190px
    }
}

.dashboard__light-dropdown .select-dropdown.active {
    display: block
}

.dashboard__light-dropdown .select-dropdown li {
    box-shadow: inset 0 -1px 0 0 #f1f3f6;
    font-size: 1.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #303030;
    padding: 5px 12px !important;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__light-dropdown .select-dropdown li {
        border-width:0 1px 0 0;
        font-size: 1.8rem;
        padding-top: 7px !important;
        padding-left: 17px !important;
        padding-right: 7px !important;
        padding-bottom: 6px !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__light-dropdown .select-dropdown li {
        font-size:2rem;
        border-width: 0 1px 0 0
    }
}

.dashboard__light-dropdown .select-dropdown li:before {
    display: none
}

.dashboard__light-dropdown .select-dropdown li:hover,.dashboard__light-dropdown .select-dropdown li:active {
    background-color: #f1f3f6
}

.dashboard__light-dropdown .select-dropdown li:nth-child(even) {
    background-color: #f6f6f6
}

.horizontal-listsummary-row ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    width: 100%
}

@media(max-width: 767px) {
    .horizontal-listsummary-row ul {
        display:inline-block
    }
}

.horizontal-listsummary-row ul li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 15px 0 13px 20px;
    line-height: normal;
    color: #000 !important;
    display: -ms-grid;
    display: grid
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li {
        padding-top:18px;
        padding-bottom: 18px;
        padding-left: 24px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li {
        padding-top:25px;
        padding-bottom: 25px;
        padding-left: 34px
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 26px !important;
        padding-top: 15px;
        padding-bottom: 21px
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row ul li {
        padding-left:3px !important;
        padding-top: 15px;
        padding-bottom: 9px;
        padding-right: 3px
    }
}

.horizontal-listsummary-row ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li span {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li span {
        font-size:2.4rem
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row ul li span {
        font-size:calc(12px + (19 - 12)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li span.icon-advisor-details-email {
        font-size:2.2rem !important
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li span.icon-advisor-details-email {
        font-size:3.1rem !important
    }
}

.horizontal-listsummary-row ul li .big-size span {
    font-size: 1.8rem
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li .big-size span {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li .big-size span {
        font-size:3.1rem
    }
}

@media(max-width: 1040px) {
    .horizontal-listsummary-row ul li .big-size span {
        font-size:1.6rem
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row ul li .big-size span {
        font-size:1.9rem
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row ul li .big-size span {
        font-size:1.2rem
    }
}

.horizontal-listsummary-row ul li p,.horizontal-listsummary-row ul li p>a {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 1.3;
    position: relative
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li p,.horizontal-listsummary-row ul li p>a {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li p,.horizontal-listsummary-row ul li p>a {
        font-size:3.2rem
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row ul li p,.horizontal-listsummary-row ul li p>a {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

.horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p.negative:after,.horizontal-listsummary-row ul li p>a.positive:after,.horizontal-listsummary-row ul li p>a.negative:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    position: absolute;
    top: 10px;
    margin-left: 7px;
    font-size: 1.3rem
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p.negative:after,.horizontal-listsummary-row ul li p>a.positive:after,.horizontal-listsummary-row ul li p>a.negative:after {
        margin-left:8px;
        top: 10px;
        font-size: 1.5rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p.negative:after,.horizontal-listsummary-row ul li p>a.positive:after,.horizontal-listsummary-row ul li p>a.negative:after {
        margin-left:8px;
        top: 13px;
        font-size: 2.3rem
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p.negative:after,.horizontal-listsummary-row ul li p>a.positive:after,.horizontal-listsummary-row ul li p>a.negative:after {
        top:8px;
        font-size: .9rem
    }
}

.horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p>a.positive:after {
    color: #00ba32;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row ul li p.positive:after,.horizontal-listsummary-row ul li p>a.positive:after {
        top:8px;
        font-size: .9rem
    }
}

.horizontal-listsummary-row ul li p.negative:after,.horizontal-listsummary-row ul li p>a.negative:after {
    color:  #19503e
}

.horizontal-listsummary-row ul li p:hover,.horizontal-listsummary-row ul li p:focus,.horizontal-listsummary-row ul li p>a:hover,.horizontal-listsummary-row ul li p>a:focus {
    border: none
}

.horizontal-listsummary-row ul li p>a {
    text-decoration: none
}

.theme-investing .horizontal-listsummary-row ul li p>a {
    color: #2d370c
}

.theme-protecting .horizontal-listsummary-row ul li p>a {
    color: #6a4742
}

.theme-financing .horizontal-listsummary-row ul li p>a {
    color: #6a4742
}

.horizontal-listsummary-row ul li .listsummary-switcher-head {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center
}

.horizontal-listsummary-row ul li .listsummary-switcher-head>* {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 8px
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li .listsummary-switcher-head>* {
        margin-right:10px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li .listsummary-switcher-head>* {
        margin-right:10px
    }
}

.horizontal-listsummary-row ul li .listsummary-switcher-head>span {
    opacity: .16;
    cursor: pointer
}

.horizontal-listsummary-row ul li .listsummary-switcher-head>span.active {
    color: #788158;
    opacity: 1
}

.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.active {
    display: block !important
}

.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p,.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p {
    position: relative
}

.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after,.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    position: absolute;
    top: 10px;
    margin-left: 7px;
    font-size: 1.3rem
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after,.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
        top:11px;
        margin-left: 8px;
        font-size: 1.2rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after,.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
        top:15px;
        margin-left: 12px;
        font-size: 1.5rem
    }
}

.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after {
    color: #00ba32;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
    color:  #19503e
}

.horizontal-listsummary-row.small-size ul li {
    padding-top: 5px;
    padding-bottom: 0
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row.small-size ul li {
        padding-top:3px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row.small-size ul li {
        padding-top:5px
    }
}

.horizontal-listsummary-row.small-size ul li:first-child {
    padding-left: 0
}

@media(max-width: 767px) {
    .horizontal-listsummary-row.small-size ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 0 !important;
        padding-top: 15px;
        padding-bottom: 21px
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row.small-size ul li {
        padding-top:0;
        padding-bottom: 19px
    }
}

.horizontal-listsummary-row.small-size ul li span {
    font-size: 1.2rem;
    margin-bottom: 3px
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row.small-size ul li span {
        margin-bottom:8px;
        font-size: 1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row.small-size ul li span {
        margin-bottom:8px;
        font-size: 2rem
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row.small-size ul li span {
        font-size:1.9rem
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row.small-size ul li span {
        font-size:1.2rem
    }
}

.horizontal-listsummary-row.small-size ul li p {
    font-size: 1.8rem
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row.small-size ul li p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row.small-size ul li p {
        font-size:3.1rem
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row.small-size ul li p {
        font-size:2.9rem
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row.small-size ul li p {
        font-size:1.8rem
    }
}

.horizontal-listsummary-row.small-size ul li p:after {
    font-size: .9rem !important;
    top: 8px !important
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary-row.small-size ul li p:after {
        font-size:1.2rem !important;
        top: 11px !important
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary-row.small-size ul li p:after {
        font-size:1.5rem !important;
        top: 15px !important
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary-row.small-size ul li p:after {
        font-size:1.3rem !important;
        top: 14px !important
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary-row.small-size ul li p:after {
        font-size:.9rem !important;
        top: 8px !important
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li {
    padding: 15px 0 15px 20px
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li span {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li span {
        font-size:2.4rem
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li span {
        font-size:1.4rem;
        line-height: 1
    }
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li {
        padding-bottom:18px;
        padding-top: 18px;
        padding-left: 43px
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li {
        padding-bottom:25px;
        padding-left: 60px;
        padding-top: 25px
    }
}

@media(max-width: 767px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li {
        clear:none !important
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li {
        padding:10px 0 10px 20px !important
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li:first-child {
    padding-left: 36px
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li:first-child {
        padding-left:43px
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li:first-child {
        padding-left:60px
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li p {
    font-size: 2rem;
    margin-top: 5px
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p {
        font-size:2rem;
        margin-top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p {
        font-size:3.4rem;
        margin-top: 8px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p {
        font-size:2.9rem
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p {
        margin-top:0;
        font-size: 1.5rem
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li p>a {
    font-size: 2rem;
    text-decoration: underline
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p>a {
        font-size:2rem
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p>a {
        font-size:3.4rem
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p>a {
        font-size:1.5rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li p>a {
        font-size:2.9rem
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li .ad-whatsapp img {
    width: 25px;
    height: 25px;
    margin-top: -7px;
    margin-bottom: 0;
    margin-left: 5px;
    visibility: hidden
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .ad-whatsapp img {
        height:25px;
        width: 25px;
        margin-top: -5px;
        margin-left: 6px
    }
}

@media screen and (max-width: 767px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .ad-whatsapp img {
        visibility:visible
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .ad-whatsapp img {
        width:20px;
        height: 20px
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact {
    visibility: hidden
}

@media screen and (max-width: 767px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact {
        visibility:visible
    }
}

.my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact:before {
    position: absolute;
    top: -2px
}

@media screen and (min-width: 1200px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact:before {
        top:-2px
    }
}

@media screen and (min-width: 1680px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact:before {
        top:-3px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact:before {
        top:0;
        font-size: 2.6rem
    }
}

@media screen and (max-width: 575px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li .icon-ad-contact:before {
        top:4px
    }
}

@media screen and (max-width: 767px) {
    .my-advisor-details-wrapper .horizontal-listsummary-row ul li:nth-child(2) {
        clear:both !important
    }
}

.orange-border {
    border-bottom: solid 1px #f7a500;
    padding-bottom: 23px;
    margin-bottom: 16px
}

@media screen and (min-width: 1200px) {
    .orange-border {
        margin-bottom:29px;
        padding-bottom: 25px;
        border-bottom: 1px
    }
}

@media screen and (min-width: 1680px) {
    .orange-border {
        margin-bottom:29px;
        padding-bottom: 25px;
        border-bottom: 1px
    }
}

@media(max-width: 767px) {
    .orange-border {
        padding-bottom:40px;
        margin-bottom: 46px
    }
}

@media screen and (max-width: 575px) {
    .orange-border {
        padding-bottom:5px;
        margin-bottom: 30px
    }
}

.component-scheme {
    border-radius: 2.6px;
    box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08);
    background-color: #fff;
    margin-bottom: 20px;
    padding: 14px 13px 10px 10px;
    float: left
}

@media screen and (min-width: 1200px) {
    .component-scheme {
        border-radius:5px;
        margin-bottom: 23px;
        padding: 16px 25px 15px 25px;
        box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08);
        margin-left: 2px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme {
        border-radius:5px;
        margin-bottom: 23px;
        padding: 16px 22px 15px 24px;
        box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08);
        margin-left: 8px
    }
}

@media(max-width: 767px) {
    .component-scheme {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 14px 24px 0 24px
    }
}

@media screen and (max-width: 575px) {
    .component-scheme {
        padding:14px 17px 0 15px
    }
}

.component-scheme .dashboard__portfolio-scheme--left-wrapper {
    float: left;
    width: 60%
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio-scheme--left-wrapper {
        width:100%
    }
}

.component-scheme .dashboard__portfolio-scheme--right-wrapper {
    float: right
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio-scheme--right-wrapper {
        float:left;
        margin-top: 10px;
        margin-bottom: 20px;
        -ms-flex-order: 3;
        order: 3
    }
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio-scheme--right-wrapper {
        margin-top:0
    }
}

.component-scheme .dashboard__portfolio-scheme--title {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    line-height: normal;
    color: #3e593c
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio-scheme--title {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio-scheme--title {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio-scheme--title {
        font-size:3.1rem
    }
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio-scheme--title {
        font-size:calc(14px + (23 - 14)*(100vw - 360px)/(768 - 360)) !important;
        line-height: 1.39
    }
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio-scheme--title {
        line-height:1.43
    }
}

.component-scheme .dashboard__portfolio--dropdown-wrapper {
    margin-bottom: -3px
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        margin-bottom:-5px;
        margin-top: 10px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        margin-bottom:-5px;
        margin-top: 13px
    }
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        -ms-flex-order:4;
        order: 4;
        margin-bottom: 20px;
        margin-top: 8px
    }
}

@media screen and (max-width: 767px) and (min-width:1200px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        margin-bottom:8px;
        margin-top: 3px
    }
}

@media screen and (max-width: 767px) and (min-width:1680px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        margin-bottom:13px;
        margin-top: 6
    }
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper {
        margin-bottom:10px
    }
}

.component-scheme .dashboard__portfolio--dropdown-wrapper>a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.2rem;
    color: #3e593c;
    position: relative
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper>a {
        font-size:15px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper>a {
        font-size:2.04rem
    }
}

.component-scheme .dashboard__portfolio--dropdown-wrapper>a:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    position: absolute;
    top: 3px;
    margin-left: 10px;
    font-size: 10px
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper>a:after {
        font-size:12px;
        top: 4px;
        margin-left: 12px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper>a:after {
        font-size:1.7rem;
        top: 5px;
        margin-left: 17px
    }
}

.component-scheme .dashboard__portfolio--dropdown-wrapper>a.active:after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.component-scheme .dashboard__portfolio--dropdown-wrapper>a:hover,.component-scheme .dashboard__portfolio--dropdown-wrapper>a:focus {
    border: none
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-wrapper>a {
        font-size:calc(15px + (19 - 15)*(100vw - 360px)/(768 - 360)) !important
    }

    .component-scheme .dashboard__portfolio--dropdown-wrapper>a:after {
        top: 4px;
        margin-left: 13px;
        font-size: calc(12px + (14 - 12)*(100vw - 360px)/(768 - 360)) !important
    }
}

.component-scheme .dashboard__portfolio--dropdown-content {
    background-color: #f7f8f5;
    border-radius: 2.6px;
    float: left;
    width: calc(100% + 23px);
    margin-left: -10px;
    padding-left: 10px;
    padding-right: 13px;
    margin-bottom: -10px;
    padding-bottom: 16px;
    padding-top: 10px;
    margin-top: 5px;
    display: none
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-content {
        border-radius:3px;
        width: calc(100% + 17px);
        margin-left: -12px;
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: -15px;
        padding-bottom: 20px;
        padding-top: 10px;
        margin-top: 5px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-content {
        border-radius:3px;
        width: calc(100% + 17px);
        margin-left: -12px;
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: -15px;
        padding-bottom: 20px;
        padding-top: 10px;
        margin-top: 5px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-content {
        padding-top:20px;
        margin-top: 10px
    }
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-content {
        width:calc(100% + 48px);
        margin-left: -24px;
        margin-bottom: -24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
        padding-bottom: 24px
    }
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio--dropdown-content {
        width:calc(100% + 34px);
        margin-left: -17px;
        margin-bottom: -10px;
        padding-left: 17px;
        padding-right: 17px;
        padding-top: 20px;
        padding-bottom: 20px
    }
}

.component-scheme .dashboard__portfolio--dropdown-content.active {
    display: block
}

.component-scheme .dashboard__portfolio--dropdown-content+.dashboard__portfolio--dropdown-content {
    margin-top: 20px
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-content+.dashboard__portfolio--dropdown-content {
        margin-top:20px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-content+.dashboard__portfolio--dropdown-content {
        margin-top:20px
    }
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-content+.dashboard__portfolio--dropdown-content {
        margin-top:34px
    }
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio--dropdown-content+.dashboard__portfolio--dropdown-content {
        margin-top:20px
    }
}

.component-scheme .dashboard__portfolio--dropdown-title {
    font-family: "pfhandbookpro-medium",sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 4px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-title {
        font-size:2.2rem;
        margin-bottom: 8px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-title {
        font-size:3.1rem;
        margin-bottom: 7px
    }
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-title {
        font-size:calc(14px + (18 - 14)*(100vw - 360px)/(768 - 360)) !important;
        margin-bottom: 7px
    }
}

.component-scheme .dashboard__portfolio--dropdown-username {
    font-family: "pfhandbookpro-light",sans-serif;
    font-size: 1.2rem;
    color: #000;
    margin-left: 5px
}

@media screen and (min-width: 1200px) {
    .component-scheme .dashboard__portfolio--dropdown-username {
        font-size:1.4rem;
        margin-left: 5px
    }
}

@media screen and (min-width: 1680px) {
    .component-scheme .dashboard__portfolio--dropdown-username {
        font-size:2rem;
        margin-left: 8px
    }
}

.component-scheme .dashboard__portfolio--dropdown-left-section {
    float: left;
    width: 70%
}

@media screen and (max-width: 575px) {
    .component-scheme .dashboard__portfolio--dropdown-left-section {
        width:100%
    }
}

.component-scheme .dashboard__portfolio--dropdown-right-section {
    float: right
}

@media(max-width: 767px) {
    .component-scheme .dashboard__portfolio--dropdown-right-section {
        float:left;
        margin-top: 5px
    }
}

.tag-wrapper {
    margin-top: 7px
}

@media screen and (min-width: 1200px) {
    .tag-wrapper {
        margin-top:8px
    }
}

@media screen and (min-width: 1680px) {
    .tag-wrapper {
        margin-top:12px
    }
}

@media(max-width: 767px) {
    .tag-wrapper {
        margin-top:20px
    }
}

@media screen and (max-width: 575px) {
    .tag-wrapper {
        margin-top:13px
    }
}

.tag-wrapper ul {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.tag-wrapper ul li {
    border-radius: 10px;
    background-color: rgba(161,172,123,.2);
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.2rem;
    color: #565f66 !important;
    text-align: center;
    padding: 3px 11px !important;
    margin-right: 10px;
    margin-bottom: 5px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .tag-wrapper ul li {
        font-size:1.4rem;
        padding: 2px 15px !important;
        margin-right: 16px;
        margin-bottom: 9px;
        border-radius: 10px
    }
}

@media screen and (min-width: 1680px) {
    .tag-wrapper ul li {
        font-size:2rem;
        padding: 5px 18px 5px 18px;
        margin-right: 16px;
        margin-bottom: 18px;
        border-radius: 16px
    }
}

@media(max-width: 767px) {
    .tag-wrapper ul li {
        font-size:calc(12px + (19 - 12)*(100vw - 360px)/(768 - 360)) !important;
        border-radius: 15px;
        padding: 6px 20px !important
    }
}

@media(max-width: 575px) {
    .tag-wrapper ul li {
        text-align:left;
        border-radius: 10px;
        padding: 3px 11px !important
    }
}

.tag-wrapper ul li:before {
    display: none
}

.dashboard__content-horizontal-tab-main-wrapper {
    margin-bottom: 20px;
    position: relative
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper {
        margin-bottom:28px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper {
        margin-bottom:35px
    }
}

@media(max-width: 767px) {
    .dashboard__content-horizontal-tab-main-wrapper {
        display:none
    }
}

.dashboard__content-horizontal-tab-main-wrapper ul {
    display: -ms-flexbox;
    display: flex;
    padding-left: 13px;
    padding-right: 13px;
    position: relative;
    margin-bottom: 0;
    border-radius: 2px;
    box-shadow: 2px 6px 12px 0 rgba(0,0,0,.08);
    background-color: #fff;
    margin-left: 0;
    margin-right: 0;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    transition: all .2s;
    will-change: transform;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-overflow-style: none
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper ul {
        padding-left:13px;
        padding-right: 13px;
        border-radius: 3px;
        box-shadow: 2.4px 7.2px 11px 0 rgba(0,0,0,.08)
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper ul {
        padding-left:13px;
        padding-right: 13px;
        border-radius: 3px;
        box-shadow: 3.36px 10.8px 18px 0 rgba(0,0,0,.08)
    }
}

.dashboard__content-horizontal-tab-main-wrapper ul::-webkit-scrollbar {
    display: none
}

.dashboard__content-horizontal-tab-main-wrapper ul li {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    text-align: center;
    color: rgba(0,0,0,.4) !important;
    padding-left: 0;
    white-space: nowrap;
    padding: 0 11px 0 11px;
    height: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    margin-left: 19px;
    margin-right: 19px;
    border-bottom: 3px solid transparent;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li {
        font-size:1.9rem;
        padding: 0 28px 0 28px;
        height: 55px;
        margin-left: 0;
        margin-right: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li {
        font-size:2.7rem;
        padding: 0 40px 0 40px;
        height: 82px;
        margin-left: 0;
        margin-right: 0
    }
}

@media(max-width: 1020px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li {
        margin-left:27px;
        margin-right: 27px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li:first-child {
        padding-left:12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li:first-child {
        padding-left:17px
    }
}

.dashboard__content-horizontal-tab-main-wrapper ul li:last-child:after {
    display: none
}

.dashboard__content-horizontal-tab-main-wrapper ul li:before {
    content: ""
}

.dashboard__content-horizontal-tab-main-wrapper ul li:after {
    content: "";
    height: 22px;
    width: 1px;
    display: block;
    background-color: #979797;
    opacity: .4;
    position: absolute;
    right: -19px;
    top: 50%;
    z-index: 2;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li:after {
        height:28px;
        width: 1px;
        right: 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li:after {
        height:28px;
        width: 1px;
        right: 2px
    }
}

@media(max-width: 1020px) {
    .dashboard__content-horizontal-tab-main-wrapper ul li:after {
        right:-27px
    }
}

.dashboard__content-horizontal-tab-main-wrapper ul li.active {
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000 !important;
    z-index: 1;
    padding-top: 0
}

.theme-investing .dashboard__content-horizontal-tab-main-wrapper ul li.active {
    border-bottom: 3px solid #a1ac7b
}

.theme-protecting .dashboard__content-horizontal-tab-main-wrapper ul li.active {
    border-bottom: 3px solid #da9089
}

.theme-financing .dashboard__content-horizontal-tab-main-wrapper ul li.active {
    border-bottom: 3px solid #d4ae69
}

.dashboard__content-horizontal-tab-main-wrapper ul li.active:before {
    display: none
}

.dashboard__content-horizontal-tab-main-wrapper .arrow {
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    display: none
}

.theme-investing .dashboard__content-horizontal-tab-main-wrapper .arrow {
    border: solid .8px #a1ac7b;
    color: #a1ac7b
}

.theme-protecting .dashboard__content-horizontal-tab-main-wrapper .arrow {
    border: solid .8px #da9089;
    color: #da9089
}

.theme-financing .dashboard__content-horizontal-tab-main-wrapper .arrow {
    border: solid .8px #d4ae69;
    color: #d4ae69
}

.dashboard__content-horizontal-tab-main-wrapper .arrow:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "";
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    font-size: .8rem;
    position: absolute;
    top: 5px;
    left: 5px
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper .arrow:after {
        top:6px;
        font-size: 1rem;
        left: 6px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper .arrow:after {
        top:7px;
        font-size: 1.6rem;
        left: 9px
    }
}

.dashboard__content-horizontal-tab-main-wrapper .nav-prev {
    width: 19px;
    height: 19px;
    position: absolute;
    left: -10px;
    margin-top: 0;
    top: 14px
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-prev {
        width:22px;
        height: 22px;
        left: -12px;
        top: 17px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-prev {
        width:31px;
        height: 31px;
        left: -16.8px;
        top: 23px
    }
}

.dashboard__content-horizontal-tab-main-wrapper .nav-prev:after {
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    left: 4px
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-prev:after {
        left:6px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-prev:after {
        left:9px
    }
}

.dashboard__content-horizontal-tab-main-wrapper .nav-next {
    width: 19px;
    height: 19px;
    position: absolute;
    right: -10px;
    margin-top: 0;
    top: 14px
}

@media screen and (min-width: 1200px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-next {
        width:22px;
        height: 22px;
        right: -12px;
        top: 17px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__content-horizontal-tab-main-wrapper .nav-next {
        width:31px;
        height: 31px;
        right: -17px;
        top: 23px
    }
}

.dashboard__content-horizontal-tab-main-wrapper .nav-next:after {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.dashboard__horizontal-inner-content-wrapper {
    display: none
}

@media screen and (min-width: 1200px) {
    .dashboard__horizontal-inner-content-wrapper {
        padding:15px 10px 0 15px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__horizontal-inner-content-wrapper {
        padding:15px 10px 0 15px
    }
}

@media(max-width: 767px) {
    .dashboard__horizontal-inner-content-wrapper {
        display:block
    }

    .dashboard__horizontal-inner-content-wrapper .dashboard__portfolio-inner-content-wrapper {
        display: none
    }

    .dashboard__horizontal-inner-content-wrapper .dashboard__portfolio-inner-content-wrapper.active {
        display: block
    }
}

.dashboard__horizontal-inner-content-wrapper.active {
    display: block
}

@media(max-width: 767px) {
    .dashboard__portfolio-mobile-dropdown {
        display:block;
        height: 61px;
        box-shadow: 0 10px 32px -14px rgba(0,0,0,.22);
        background-color: #fff;
        font-family: "pfhandbookpro-regular",sans-serif;
        font-size: 2.6rem;
        color: #000;
        margin: 0 0 10px;
        padding: 20px 17px 20px;
        position: relative;
        border: solid 1px #f1f3f6
    }

    .dashboard__portfolio-mobile-dropdown:after {
        content: "";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        font-family: "font-icons";
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        speak: none;
        position: absolute;
        top: 50%;
        margin-left: 10px;
        font-size: 1.4rem;
        right: 30px;
        -ms-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg)
    }

    .theme-investing .dashboard__portfolio-mobile-dropdown:after {
        color: #a1ac7b
    }

    .theme-protecting .dashboard__portfolio-mobile-dropdown:after {
        color: #da9089
    }

    .theme-financing .dashboard__portfolio-mobile-dropdown:after {
        color: #d4ae69
    }

    .dashboard__portfolio-mobile-dropdown.active:after {
        -ms-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg)
    }
}

@media screen and (max-width: 767px) and (max-width:575px) {
    .dashboard__portfolio-mobile-dropdown {
        font-size:1.6rem;
        padding: 9px 20px 10px 11px;
        height: 38px;
        margin: 12px 0 0;
        box-shadow: 0 7px 20px -9px rgba(0,0,0,.22)
    }

    .dashboard__portfolio-mobile-dropdown:after {
        font-size: 1rem;
        right: 20px
    }
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul {
    width: 100%;
    margin: 0;
    display: table
}

@media screen and (max-width: 575px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul {
        padding-left:6px;
        padding-right: 6px
    }
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li {
    display: table-cell;
    width: 50%;
    padding: 0;
    height: auto;
    border-bottom: none !important
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li::before {
    display: none
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span {
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    vertical-align: middle;
    position: relative;
    height: 45px;
    border: 3px solid transparent !important;
    width: auto;
    display: inline-block;
    padding-top: 10px
}

@media screen and (min-width: 1200px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span {
        padding-left:6px;
        padding-right: 6px;
        padding-top: 12px;
        height: 54px
    }
}

@media screen and (min-width: 1680px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span {
        padding-left:8px;
        padding-right: 8px;
        padding-top: 17px;
        height: 76px
    }
}

@media(max-width: 767px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span {
        padding-top:8px;
        font-size: calc(12px + (20 - 12)*(100vw - 360px)/(768 - 360)) !important;
        height: 48px
    }
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span::after {
    right: 0
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span::before {
    content: "";
    width: calc(100% + 40px);
    position: absolute;
    left: -20px;
    bottom: -3px;
    background-color: transparent;
    height: 3px;
    margin: 0;
    display: block
}

@media screen and (max-width: 767px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span::before {
        width:100%;
        left: 0
    }
}

@media screen and (max-width: 575px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span {
        padding-top:4px;
        height: 30px;
        padding-left: 0;
        padding-right: 0;
        margin-left: 6px;
        margin-right: 6px
    }

    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li span::before {
        width: 100%;
        left: 0
    }
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000 !important;
    z-index: 1;
    padding-left: 11px;
    padding-right: 11px
}

@media screen and (min-width: 1200px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
        padding-left:13px;
        padding-right: 13px
    }
}

@media screen and (min-width: 1680px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
        padding-left:18px;
        padding-right: 18px
    }
}

@media screen and (max-width: 767px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
        padding-left:5px;
        padding-right: 5px
    }
}

@media screen and (max-width: 575px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
        padding-left:0;
        padding-right: 0;
        margin-left: 6px;
        margin-right: 6px
    }
}

.theme-investing .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
    border-bottom: 3px solid #a1ac7b
}

.theme-protecting .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
    border-bottom: 3px solid #da9089
}

.theme-financing .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span {
    border-bottom: 3px solid #d4ae69
}

.theme-investing .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span::before {
    background-color: #969f6e
}

.theme-protecting .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span::before {
    background-color: #da9089
}

.theme-financing .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li.active span::before {
    background-color: #d4ae69
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper ul li:after {
    right: 0 !important
}

@media screen and (max-width: 575px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper ul li:after {
        height:14px
    }
}

.low-padding .dashboard__content-horizontal-tab-main-wrapper .nav-next {
    display: none !important
}

@media(max-width: 767px) {
    .low-padding .dashboard__content-horizontal-tab-main-wrapper {
        display:block
    }
}

.low-padding .dashboard__horizontal-inner-content-wrapper {
    display: none
}

.low-padding .dashboard__horizontal-inner-content-wrapper.active {
    display: block
}

@media(max-width: 767px) {
    .low-padding .dashboard__horizontal-inner-content-wrapper .dashboard__portfolio-inner-content-wrapper {
        display:block
    }
}

@media(max-width: 767px) {
    .low-padding .dashboard__portfolio-mobile-dropdown {
        display:none
    }
}

.login-left-col,.login-right-col {
    padding-top: 25px;
    padding-bottom: 20px
}

@media screen and (min-width: 1200px) {
    .login-left-col,.login-right-col {
        padding-top:45px
    }
}

@media screen and (min-width: 1680px) {
    .login-left-col,.login-right-col {
        padding-top:65px
    }
}

.login-right-col {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
    background-color: #f8fcff
}

.login-right-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: inherit
}

@media(max-width: 1020px) {
    .login-right-col::before {
        top:0;
        left: 100%
    }
}

@media(max-width: 767px) {
    .login-right-col::before {
        top:0;
        left: -15px;
        width: 15px
    }

    .login-right-col::after {
        content: "";
        position: absolute;
        right: -15px;
        top: 0;
        width: 15px;
        height: 100%;
        z-index: -1;
        background-color: inherit
    }
}

@media screen and (max-width: 767px) {
    .login-right-col {
        padding-top:0
    }
}

.abc-form.dropdown-sms-form .form-group {
    display: block !important
}

.abc-form.dropdown-sms-form .account-statement-sms-content-wrapper .form-group {
    display: -ms-flexbox !important;
    display: flex !important
}

.login-left-col .abc-form.abc-post-login-form {
    padding-left: 40px;
    padding-right: 40px
}

@media screen and (max-width: 767px) {
    .login-left-col .abc-form.abc-post-login-form {
        padding-left:5px;
        padding-right: 5px
    }
}

.abc-form.abc-post-login-form h2 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2.4rem;
    line-height: 1.25;
    width: 100%;
    margin-bottom: 8px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form h2 {
        font-size:2.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form h2 {
        font-size:4.1rem;
        margin-bottom: 20px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .abc-form.abc-post-login-form h2 {
        font-size:3.52rem
    }
}

.abc-form.abc-post-login-form .form-group {
    margin-top: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-group {
        margin-bottom:15px
    }
}

.abc-form.abc-post-login-form .form-group__label {
    font-size: 2rem;
    opacity: .7;
    color: #000;
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-group__label {
        font-size:2.3rem;
        margin-bottom: 9px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-group__label {
        font-size:3.4rem;
        margin-bottom: 12px
    }
}

.abc-form.abc-post-login-form .form-group .has-btn-overlay .form-control {
    padding-right: 70px
}

.abc-form.abc-post-login-form .form-group__placeholder,.abc-form.abc-post-login-form .input-group__placeholder {
    font-size: 2rem;
    padding: .375rem 1.8rem;
    height: 50px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-group__placeholder,.abc-form.abc-post-login-form .input-group__placeholder {
        font-size:2.5rem;
        padding: 16px 21px;
        height: 60px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-group__placeholder,.abc-form.abc-post-login-form .input-group__placeholder {
        font-size:3.5rem;
        padding: 22px 31px;
        height: 86px
    }
}

.abc-form.abc-post-login-form .form-input-wrapper {
    width: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.abc-form.abc-post-login-form .radio-button-collection {
    display: -ms-flexbox;
    display: flex
}

.abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper {
    position: relative
}

.abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper label {
    position: relative;
    padding-left: 30px;
    padding-right: 30px
}

.abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper label::before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 0;
    border: 1px solid #cdcece;
    border-radius: 50%
}

.abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    cursor: pointer
}

.abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper input[type="radio"]:checked+label::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 5px;
    left: 3px;
    background-color:  #19503e;
    border-radius: 50%
}

.abc-form.abc-post-login-form span.error {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.2rem;
    color: #6c7174;
    border: none !important;
    background-color: transparent !important;
    margin-top: 7px;
    display: block;
    position: relative;
    padding-left: 28px
}

.abc-form.abc-post-login-form span.error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form span.error {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form span.error {
        font-size:2rem
    }
}

.abc-form.abc-post-login-form .selectize-dropdown [data-selectable].option {
    box-shadow: inset 0 -1px 0 0 #f1f3f6
}

.abc-form.abc-post-login-form .form-inline-link {
    margin-left: auto;
    padding-bottom: 8px;
    font-size: 1.6rem;
    color:  #19503e;
    font-family: "pfhandbookpro-medium",sans-serif;
    text-decoration: underline
}

.abc-form.abc-post-login-form .form-inline-link:hover,.abc-form.abc-post-login-form .form-inline-link:focus,.abc-form.abc-post-login-form .form-inline-link:active {
    border-bottom: 0 none
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-inline-link {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-inline-link {
        font-size:2.7rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .abc-form.abc-post-login-form .form-inline-link {
        font-size:2.3rem;
        padding-top: 8px;
        padding-bottom: 0
    }
}

.abc-form.abc-post-login-form .btn-tooltip {
    background-color: #f7a500;
    width: 16px;
    height: 16px;
    text-align: center;
    display: inline-block;
    margin-left: 8px;
    margin-top: 3px;
    font-size: 1.2rem;
    line-height: 16px;
    border-radius: 50%;
    cursor: pointer
}

.abc-form.abc-post-login-form .btn-tooltip:hover,.abc-form.abc-post-login-form .btn-tooltip:focus,.abc-form.abc-post-login-form .btn-tooltip:active {
    border-bottom: 0 none
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .btn-tooltip {
        width:19px;
        height: 19px;
        margin-left: 22px;
        margin-top: 6px;
        font-size: 1.4rem;
        line-height: 19px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .btn-tooltip {
        width:27px;
        height: 27px;
        margin-left: 32px;
        margin-top: 8px;
        font-size: 1.9rem;
        line-height: 26px
    }
}

.abc-form.abc-post-login-form .btn {
    font-weight: bold
}

.abc-form.abc-post-login-form .btn:disabled {
    opacity: 1;
    background-color: #6d7278
}

.abc-form.abc-post-login-form .btn__full {
    width: 100%
}

.abc-form.abc-post-login-form .btn__overlay {
    font-size: 1.6rem;
    margin: 0;
    padding: 0;
    background: none;
    border: 0 none;
    position: absolute;
    right: 12px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color:  #19503e
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .btn__overlay {
        font-size:1.9rem;
        top: 32px !important
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .btn__overlay {
        font-size:2.7rem;
        top: 44px !important
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .abc-form.abc-post-login-form .btn__overlay {
        font-size:2.3rem
    }
}

.abc-form.abc-post-login-form .btn__overlay.use-otp-cta {
    top: 25px;
    font-family: "pfhandbookpro-medium",sans-serif;
    margin-right: 40px
}

@media(max-width: 767px) {
    .abc-form.abc-post-login-form .btn__overlay.use-otp-cta {
        top:35px
    }
}

@media screen and (max-width: 575px) {
    .abc-form.abc-post-login-form .btn__overlay.use-otp-cta {
        top:22px
    }
}

.abc-form.abc-post-login-form .form-checkbox-wrapper {
    position: relative
}

.abc-form.abc-post-login-form .form-checkbox-wrapper input[type="checkbox"] {
    visibility: hidden;
    position: absolute;
    width: 1px;
    height: 1px
}

.abc-form.abc-post-login-form .form-checkbox-wrapper input[type="checkbox"]:checked+label::after {
    z-index: 1;
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0 !important;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border: solid  #19503e
}

.abc-form.abc-post-login-form .form-checkbox-wrapper label {
    padding-left: 28px
}

.abc-form.abc-post-login-form .form-checkbox-wrapper label::before {
    content: "";
    position: absolute;
    border: 1px solid #979797;
    width: 19px;
    height: 19px;
    left: 0;
    top: 0
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper label {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper label {
        font-size:2.3rem
    }
}

.abc-form.abc-post-login-form .btn__border {
    width: 100%;
    border-radius: 2px;
    line-height: 1.5;
    background-color: #fff;
    box-shadow: 1px 0 8px 0 rgba(0,0,0,.08);
    border-left: 6px solid  #19503e;
    color: #000;
    font-weight: bold;
    padding-left: 14px;
    padding-right: 55px;
    font-size: 1.7rem;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px
}

.abc-form.abc-post-login-form .btn__border:hover,.abc-form.abc-post-login-form .btn__border:focus,.abc-form.abc-post-login-form .btn__border:active {
    border-bottom: 0 none
}

.abc-form.abc-post-login-form .btn__border:after {
    content: "";
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #000;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    opacity: .6;
    vertical-align: baseline;
    right: 5px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .btn__border {
        font-size:2rem;
        padding-top: 16px;
        padding-bottom: 16px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .btn__border {
        font-size:2.9rem;
        padding-top: 22px;
        padding-bottom: 22px
    }
}

@media screen and (max-width: 768px) {
    .abc-form.abc-post-login-form .btn__border {
        font-size:1.3rem
    }
}

@media screen and (max-width: 360px) {
    .abc-form.abc-post-login-form .btn__border {
        font-size:1.5rem
    }
}

.abc-form.abc-post-login-form .cta__flat {
    font-family: "pfhandbookpro-medium",sans-serif;
    text-decoration: underline;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 2rem
}

.abc-form.abc-post-login-form .cta__flat:hover,.abc-form.abc-post-login-form .cta__flat:focus,.abc-form.abc-post-login-form .cta__flat:active {
    border-bottom: 0 none
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .cta__flat {
        font-size:2rem;
        margin-top: 5px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .cta__flat {
        font-size:2.9rem;
        margin-top: 13px
    }
}

@media screen and (max-width: 768px) {
    .abc-form.abc-post-login-form .cta__flat {
        font-size:1.3rem
    }
}

@media screen and (max-width: 576px) {
    .abc-form.abc-post-login-form .cta__flat {
        font-size:1.7rem
    }
}

@media screen and (max-width: 360px) {
    .abc-form.abc-post-login-form .cta__flat {
        font-size:1.1rem
    }
}

.abc-form.abc-post-login-form.pf-my-docs-soa-form span.error,.abc-form.abc-post-login-form.sme-my-docs-soa-form span.error,.abc-form.abc-post-login-form.mortgage-my-docs-soa-form span.error,.abc-form.abc-post-login-form.las-my-docs-soa-form span.error,.abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form span.error {
    width: 100%
}

#repeatUser {
    padding-right: 0 !important
}

.abc-form.abc-post-login-form-modal h2 {
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    padding-right: 30px;
    margin-bottom: 10px
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form-modal h2 {
        margin-bottom:25px
    }
}

.abc-form.abc-post-login-form-modal .form-group .has-btn-overlay .form-control {
    padding-right: 110px
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form-modal .form-group .has-btn-overlay .form-control {
        padding-right:140px
    }
}

.abc-form.abc-post-login-form-modal .form-group .act-btn {
    margin-top: 80px;
    margin-bottom: 17px
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form-modal .form-group .act-btn {
        margin-top:50px
    }
}

.abc-form.abc-post-login-form-modal .use-otp-toggle-password .use-otp-cta-modal {
    right: 55px !important
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .use-otp-cta-modal {
        top:35px !important
    }
}

@media screen and (max-width: 575px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .use-otp-cta-modal {
        top:22px !important
    }
}

.abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password {
    top: 25px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password {
        top:33px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password {
        top:46px
    }
}

.abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password .icon {
    font-size: 2.2rem
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password .icon {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password .icon {
        font-size:3.1rem
    }
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password {
        top:35px
    }

    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password .icon {
        font-size: 2.6rem
    }
}

@media screen and (max-width: 575px) {
    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password {
        top:22px
    }

    .abc-form.abc-post-login-form-modal .use-otp-toggle-password .toggle-password .icon {
        font-size: 2.2rem
    }
}

#duplicatesession {
    padding: 0 !important
}

#duplicatesession .modal-header {
    padding: 0
}

#duplicatesession .modal-content {
    width: 460px;
    height: 227px;
    margin: auto;
    margin-top: 22%;
    padding: 0 0 17.1px 21.5px;
    border-radius: 1.7px
}

#duplicatesession .modal-title {
    font-size: 3.2rem;
    color: #000;
    margin: 22.9px 52.5px 21.5px 1.3px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: normal
}

#duplicatesession .modal-body {
    font-size: 2.7rem;
    margin: 0 21.5px 31px 0;
    padding: 0;
    line-height: 1.2
}

@media screen and (max-width: 575px) {
    #duplicatesession .modal-content {
        width:547px;
        height: 170px
    }

    #duplicatesession .modal-title {
        font-size: 2.4rem
    }

    #duplicatesession .modal-body {
        font-size: 2rem
    }
}

@media screen and (max-width: 360px) {
    #duplicatesession .modal-content {
        width:342px;
        height: 178px
    }

    #duplicatesession .modal-title {
        font-size: 2.4rem
    }

    #duplicatesession .modal-body {
        font-size: 2rem;
        margin: 0
    }
}

.abc-form.abc-post-login-form .otp-button {
    cursor: pointer;
    background-color:  #19503e;
    padding: 15px 30px;
    float: right;
    text-align: center;
    color: #fff;
    border-radius: 2.9px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 0 none;
    white-space: nowrap
}

.abc-form.abc-post-login-form .otp-button.disabled {
    background-color: #6d7278;
    cursor: not-allowed
}

.abc-form.abc-post-login-form .otp-button.otp-oneid-button {
    width: 30%
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .otp-button {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .otp-button {
        font-size:2.7rem
    }
}

.abc-form.abc-post-login-form .otp-text {
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
    float: left;
    border-right: 0 !important;
    border-right-style: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.abc-form.abc-post-login-form .otp-text.otp-oneid-text {
    width: 70%
}

.abc-form.abc-post-login-form .btn__overlay.btn__otp-counter {
    font-weight: bold;
    color: #6d7278
}

.abc-form.abc-post-login-form .btn__overlay.btn__otp-counter-cta {
    font-weight: bold;
    color:  #19503e
}

.abc-form.abc-post-login-form .form-otp-label.error {
    position: relative;
    background-color: transparent !important;
    border: transparent !important;
    padding-left: 28px
}

.abc-form.abc-post-login-form .form-otp-label.error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

.abc-form.abc-post-login-form .cta__flat-with-arrow {
    position: relative;
    margin-top: -10px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .cta__flat-with-arrow {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .cta__flat-with-arrow {
        font-size:2.7rem
    }
}

.abc-form.abc-post-login-form .usepwd-outline {
    display: none
}

.abc-form.abc-post-login-form .show {
    display: block !important
}

.modal-body .abc-form.abc-post-login-form {
    padding-left: 0;
    padding-right: 0
}

.modal-body .abc-form.abc-post-login-form span.error {
    margin-top: 12px
}

.modal-body .abc-form.abc-post-login-form span.error:before {
    top: -6px
}

@media screen and (min-width: 1200px) {
    .modal-body .abc-form.abc-post-login-form span.error:before {
        top:-4px;
        font-size: 2rem
    }
}

@media screen and (min-width: 1680px) {
    .modal-body .abc-form.abc-post-login-form span.error:before {
        top:0
    }
}

.modal-body .abc-form.abc-post-login-form .btn__overlay.use-otp-cta-modal {
    top: 25px
}

.login-tooltip.tooltip.show,.post-login-tooltip.tooltip.show {
    opacity: 1;
    z-index: 10001
}

.login-tooltip .tooltip-inner,.post-login-tooltip .tooltip-inner {
    background-color: #fff;
    color: #000;
    font-size: 1.6rem;
    line-height: 20px;
    padding: 10px 15px;
    font-family: "pfhandbookpro-regular",sans-serif;
    text-align: left;
    box-shadow: 1px 0 8px 0 rgba(0,0,0,.08);
    border: 1px solid #dfdfdf
}

@media screen and (min-width: 1200px) {
    .login-tooltip .tooltip-inner,.post-login-tooltip .tooltip-inner {
        font-size:1.9rem;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .login-tooltip .tooltip-inner,.post-login-tooltip .tooltip-inner {
        font-size:2.7rem;
        line-height: 26px
    }
}

.login-tooltip.bs-tooltip-top .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.login-tooltip.bs-tooltip-right .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.login-tooltip.bs-tooltip-bottom .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.login-tooltip.bs-tooltip-left .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,.post-login-tooltip.bs-tooltip-top .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.post-login-tooltip.bs-tooltip-right .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.post-login-tooltip.bs-tooltip-bottom .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.post-login-tooltip.bs-tooltip-left .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    z-index: 1;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    border-right: 0 none;
    border-top: 0 none
}

.login-tooltip.bs-tooltip-right .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.post-login-tooltip.bs-tooltip-right .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    right: -4px;
    margin-right: -1px;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.login-tooltip.bs-tooltip-bottom .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.post-login-tooltip.bs-tooltip-bottom .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    bottom: -4px;
    margin-bottom: -1px;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.login-tooltip.bs-tooltip-top .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.post-login-tooltip.bs-tooltip-top .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    top: -4px;
    margin-top: -1px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.login-tooltip.bs-tooltip-top .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before,.post-login-tooltip.bs-tooltip-top .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before,.post-login-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    right: 0;
    margin-left: -5px;
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.post-login-tooltip .tooltip-inner {
    font-size: 1.2rem;
    padding: 5px 9px
}

@media screen and (min-width: 1200px) {
    .post-login-tooltip .tooltip-inner {
        font-size:2rem;
        line-height: 33px;
        min-width: 252px;
        padding-top: 8px;
        padding-right: 15px;
        padding-bottom: 8px;
        padding-left: 15px
    }
}

@media screen and (min-width: 1680px) {
    .post-login-tooltip .tooltip-inner {
        font-size:2rem;
        line-height: 33px;
        min-width: 252px;
        padding-top: 8px;
        padding-right: 15px;
        padding-bottom: 8px;
        padding-left: 15px
    }
}

.full-width-ctas-wrapper {
    padding-top: 40px
}

@media screen and (max-width: 767px) {
    .full-width-ctas-wrapper {
        padding-top:30px
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-wrapper {
        padding-top:10px
    }
}

.full-width-ctas-close-cta {
    display: -ms-flexbox;
    display: flex
}

.full-width-ctas-close-cta .close-cta {
    margin-left: auto;
    margin-right: 40px;
    color: #000;
    padding: 5px
}

@media screen and (max-width: 767px) {
    .full-width-ctas-close-cta .close-cta {
        margin-right:0
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-close-cta .close-cta {
        margin-right:0
    }
}

.full-width-ctas-close-cta .close-cta .icon {
    font-size: 2.5rem;
    line-height: 25px
}

@media screen and (max-width: 991px) {
    .full-width-ctas-close-cta .close-cta .icon {
        font-size:2.2rem;
        line-height: 22px
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-close-cta .close-cta .icon {
        font-size:1.4rem;
        line-height: 14px
    }
}

.full-width-ctas-close-cta .close-cta:hover,.full-width-ctas-close-cta .close-cta:focus,.full-width-ctas-close-cta .close-cta:active {
    border-bottom: 0 none
}

.full-width-ctas-component {
    margin: 0 auto;
    max-width: 450px
}

@media screen and (min-width: 1200px) {
    .full-width-ctas-component {
        max-width:380px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-ctas-component {
        max-width:544px
    }
}

@media screen and (max-width: 991px) {
    .full-width-ctas-component {
        max-width:350px
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-component {
        max-width:220px
    }
}

.full-width-ctas-header {
    margin: 0 20px
}

@media screen and (max-width: 991px) {
    .full-width-ctas-header {
        margin:0 10px
    }
}

.full-width-ctas-header h2 {
    text-align: center;
    font-size: 3rem;
    line-height: 1.25;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (min-width: 1200px) {
    .full-width-ctas-header h2 {
        font-size:2.9rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-ctas-header h2 {
        font-size:4.1rem
    }
}

@media screen and (max-width: 991px) {
    .full-width-ctas-header h2 {
        font-size:2.4rem
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-header h2 {
        font-size:1.5rem
    }
}

.full-width-ctas-list {
    padding-top: 30px;
    padding-bottom: 30px
}

@media screen and (min-width: 1200px) {
    .full-width-ctas-list {
        padding-top:50px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-ctas-list {
        padding-top:80px
    }
}

@media screen and (max-width: 767px) {
    .full-width-ctas-list {
        padding-top:20px;
        padding-bottom: 20px
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-list {
        padding-top:5px;
        padding-bottom: 5px
    }
}

.full-width-ctas-list ul {
    columns: 2;
    margin: 0 -25px;
    padding: 0;
    list-style: none
}

@media screen and (max-width: 767px) {
    .full-width-ctas-list ul {
        columns:1;
        margin: 0 auto;
        max-width: 185px
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-list ul {
        max-width:115px
    }
}

.full-width-ctas-list ul li {
    padding: 10px 25px;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 767px) {
    .full-width-ctas-list ul li {
        padding:10px 0
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-list ul li {
        padding:5px 0
    }
}

.full-width-ctas-list ul li::before {
    content: none
}

.full-width-ctas-list ul li a {
    -ms-flex: 1;
    flex: 1;
    color: #000;
    display: block;
    position: relative;
    padding: 10px 20px 10px 0;
    font-size: 2.2rem;
    line-height: 1.11111111
}

@media screen and (min-width: 1200px) {
    .full-width-ctas-list ul li a {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-ctas-list ul li a {
        font-size:3.1rem
    }
}

@media screen and (max-width: 991px) {
    .full-width-ctas-list ul li a {
        font-size:1.8rem
    }
}

@media screen and (max-width: 767px) {
    .full-width-ctas-list ul li a {
        font-size:2.4rem
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-list ul li a {
        font-size:1.5rem
    }
}

.full-width-ctas-list ul li a::after {
    content: "";
    font-family: "font-icons";
    font-size: 1.6rem;
    position: absolute;
    right: 0;
    color:  #19503e;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media screen and (max-width: 991px) {
    .full-width-ctas-list ul li a::after {
        font-size:1.3rem
    }
}

@media screen and (max-width: 767px) {
    .full-width-ctas-list ul li a::after {
        font-size:1.5rem
    }
}

@media screen and (max-width: 575px) {
    .full-width-ctas-list ul li a::after {
        font-size:.9rem
    }
}

.full-width-ctas-list ul li a:hover,.full-width-ctas-list ul li a:focus,.full-width-ctas-list ul li a:active {
    border-bottom: 0 none;
    color:  #19503e
}

.full-width-ctas-list-bottom-wrapper {
    margin-top: 53px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px
}

.full-width-ctas-list-bottom-label {
    font-size: 1.4rem;
    letter-spacing: -.19px;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

.full-width-ctas-list-bottom-cta a {
    font-size: 1.8rem;
    letter-spacing: -.24px;
    color: #000;
    font-family: "pfhandbookpro-bold",sans-serif;
    position: relative;
    margin-top: 7px;
    padding-right: 33px;
    display: inline-block
}

@media screen and (min-width: 1200px) {
    .full-width-ctas-list-bottom-cta a {
        font-size:2rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-ctas-list-bottom-cta a {
        font-size:2.9rem
    }
}

.full-width-ctas-list-bottom-cta a:hover,.full-width-ctas-list-bottom-cta a:active,.full-width-ctas-list-bottom-cta a:focus {
    border: none
}

.full-width-ctas-list-bottom-cta a:before {
    right: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.full-width-one-id-cta-wrapper .icon-one-id-cta {
    display: block;
    font-size: 8.4rem;
    margin-bottom: 27px;
    color:  #19503e
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .full-width-one-id-cta-wrapper .icon-one-id-cta {
        font-size:14.7rem
    }
}

.full-width-one-id-cta-wrapper .img-one-id-cta {
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .full-width-one-id-cta-wrapper .img-one-id-cta {
        width:147px;
        height: 147px
    }
}

.full-width-one-id-cta-wrapper .img-one-id-cta img {
    width: 100%;
    margin-bottom: 0
}

.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper {
    margin: 0 40px
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper h2 {
        font-size:4rem
    }
}

.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper p,.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.2rem;
    line-height: normal;
    color: #000;
    margin-top: 15px;
    text-align: center
}

@media screen and (min-width: 1200px) {
    .full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper p,.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper p,.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a {
        font-size:2rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper p,.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a {
        font-size:2.4rem
    }
}

.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a {
    font-family: "pfhandbookpro-bold",sans-serif
}

.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper a:hover {
    border-color: #000
}

.full-width-one-id-cta-wrapper .one-id-cta-info-content-wrapper+.abc-form-wrapper {
    margin-top: 27px
}

.abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label {
    font-size: 1.5rem;
    display: block;
    color: rgba(0,0,0,.7)
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label {
        font-size:2.6rem;
        margin-top: 0
    }
}

.abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label a {
    font-size: 1.5rem;
    color: rgba(199,34,42,.7)
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label a {
        font-size:1.8rem;
        margin-top: 0
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .form-checkbox-wrapper.terms-and-conditions-checkbox-wrapper label a {
        font-size:2.6rem;
        margin-top: 0
    }
}

.abc-form.abc-post-login-form .form-checkbox-wrapper+span.error {
    float: left;
    width: 100%
}

.abc-form.abc-post-login-form .username-icon {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 20px;
    top: 13px
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .username-icon {
        top:18px
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .username-icon {
        top:29px
    }
}

.abc-form.abc-post-login-form .username-icon img {
    width: 100%
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .abc-form.abc-post-login-form .username-icon {
        right:13px;
        top: 8px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .abc-form.abc-post-login-form .username-icon {
        right:20px;
        top: 18px;
        width: 34px;
        height: 34px
    }
}

@media screen and (max-width: 575px) {
    .abc-form.abc-post-login-form .username-icon {
        right:10px;
        top: 11px
    }
}

.abc-form.abc-post-login-form .available,.abc-form.abc-post-login-form .unavailable {
    display: block;
    margin-top: 7px;
    font-size: 1.6rem
}

@media screen and (min-width: 1200px) {
    .abc-form.abc-post-login-form .available,.abc-form.abc-post-login-form .unavailable {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .abc-form.abc-post-login-form .available,.abc-form.abc-post-login-form .unavailable {
        font-size:2.7rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .abc-form.abc-post-login-form .available,.abc-form.abc-post-login-form .unavailable {
        margin-top:11px;
        font-size: 2.4rem;
        margin-bottom: 5px
    }
}

.abc-form.abc-post-login-form .available {
    color: #3bb54a
}

.abc-form.abc-post-login-form .unavailable {
    color: #c0c0c0
}

.full-width-forgot-password-wrapper {
    max-width: 380px;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 55px
}

@media screen and (min-width: 1200px) {
    .full-width-forgot-password-wrapper {
        max-width:452px;
        padding-top: 29px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-forgot-password-wrapper {
        max-width:646px;
        padding-top: 41px
    }
}

.full-width-forgot-password-wrapper .fp-info {
    font-size: 1.2rem
}

@media screen and (min-width: 1200px) {
    .full-width-forgot-password-wrapper .fp-info {
        font-size:1.4rem;
        margin-top: 10px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-forgot-password-wrapper .fp-info {
        font-size:2rem;
        margin-top: 13px
    }
}

.full-width-forgot-password-wrapper .fp-margin-bottom {
    margin-bottom: 0
}

.full-width-forgot-password-wrapper .font24 {
    letter-spacing: -.27px
}

@media screen and (min-width: 1200px) {
    .full-width-forgot-password-wrapper .font24 {
        font-size:2.9rem;
        margin-bottom: 20px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-forgot-password-wrapper .font24 {
        font-size:4.1rem;
        margin-bottom: 28px
    }
}

@media screen and (max-width: 991px) {
    .full-width-forgot-password-wrapper {
        padding-top:11px;
        max-width: 296px
    }

    .full-width-forgot-password-wrapper .font24 {
        font-size: 1.87rem;
        line-height: 1.25;
        letter-spacing: -.21px
    }

    .full-width-forgot-password-wrapper .fp-margin-bottom {
        margin-bottom: 70px !important
    }
}

@media screen and (max-width: 767px) {
    .full-width-forgot-password-wrapper {
        padding-top:11px;
        max-width: 100%
    }

    .full-width-forgot-password-wrapper .font24 {
        font-size: 3.52rem;
        letter-spacing: normal
    }

    .full-width-forgot-password-wrapper .fp-margin-bottom {
        margin-bottom: 130px !important
    }
}

@media screen and (max-width: 575px) {
    .full-width-forgot-password-wrapper .font24 {
        font-size:2.2rem;
        letter-spacing: normal
    }

    .full-width-forgot-password-wrapper .fp-margin-bottom {
        margin-bottom: 70px !important
    }
}

@media screen and (max-width: 991px) {
    .abc-form.abc-post-login-form .form-group__label {
        font-size:1.5rem
    }

    .abc-form.abc-post-login-form .form-group {
        margin-bottom: 1.3rem
    }

    .abc-form.abc-post-login-form .form-group__placeholder {
        font-size: 1.62rem;
        padding: .375rem 1.8rem
    }

    .abc-form.abc-post-login-form .act-btn {
        font-size: 1.2rem;
        border-radius: 1.6px;
        height: 35px;
        padding: 5px 30px
    }
}

@media screen and (max-width: 767px) {
    .abc-form.abc-post-login-form .form-group__label {
        font-size:2.9rem
    }

    .abc-form.abc-post-login-form .form-group {
        margin-top: .7rem;
        margin-bottom: .3rem
    }

    .abc-form.abc-post-login-form .form-group__placeholder {
        font-size: 2.8rem;
        padding: .375rem 1.8rem;
        height: 70px
    }

    .abc-form.abc-post-login-form .otp-button {
        height: 70px
    }

    .abc-form.abc-post-login-form .act-btn {
        font-size: 2.3rem;
        border-radius: 2.9px;
        height: 64px;
        padding: 5px 30px
    }
}

@media screen and (max-width: 575px) {
    .abc-form.abc-post-login-form .form-group__label {
        font-size:1.81rem
    }

    .abc-form.abc-post-login-form .form-group {
        margin-top: 1rem;
        margin-bottom: 1.3rem
    }

    .abc-form.abc-post-login-form .form-group__placeholder {
        font-size: 1.8rem;
        padding: .375rem 1.8rem;
        height: 44px
    }

    .abc-form.abc-post-login-form .act-btn {
        font-size: 1.44rem;
        line-height: normal;
        border-radius: 1.8px;
        height: 40px;
        padding: 5px 30px
    }

    .abc-form.abc-post-login-form .otp-button {
        height: 44px;
        padding: 10px 30px
    }
}

.full-width-change-mobile-wrapper {
    max-width: 380px;
    margin: 0 auto;
    padding-top: 55px;
    padding-bottom: 55px
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper {
        max-width:452px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper {
        max-width:646px
    }
}

@media(max-width: 767px) {
    .full-width-change-mobile-wrapper {
        padding-top:11px;
        max-width: 100%
    }
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .otp-button {
    cursor: pointer;
    background-color:  #19503e;
    padding: 0 30px;
    float: right;
    text-align: center;
    color: #fff;
    border-radius: 2.9px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 0 none;
    white-space: nowrap
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .otp-button.disabled {
    background-color: #6d7278;
    cursor: not-allowed
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .otp-button.otp-oneid-button {
    width: 30%
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .otp-text {
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
    float: left;
    border-right: 0 !important;
    border-right-style: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .otp-text.otp-oneid-text {
    width: 70%
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .btn__overlay.btn__otp-counter {
    font-weight: bold;
    color: #6d7278
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .btn__overlay.btn__otp-counter-cta {
    font-weight: bold;
    color:  #19503e
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .form-otp-label.error {
    position: relative;
    background-color: transparent !important;
    border: transparent !important;
    padding-left: 28px
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .form-otp-label.error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .cta__flat-with-arrow {
    position: relative;
    margin-top: -10px
}

.full-width-change-mobile-wrapper .abc-form.abc-post-login-form .cta__flat-with-arrow:after {
    content: "";
    top: 50%;
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    font-family: "font-icons";
    color:  #19503e;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    vertical-align: baseline;
    right: -25px
}

.full-width-change-mobile-wrapper .change-mobile-form .notify-number {
    font-size: 1.2rem;
    line-height: normal;
    color: #000
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-number {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-number {
        font-size:2rem
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .notify-number a {
    font-size: 1.2rem
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-number a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-number a {
        font-size:2rem
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .mobile-number {
    color: #6d7278;
    font-size: 1.4rem;
    opacity: .5
}

.full-width-change-mobile-wrapper .change-mobile-form .notify-txt {
    font-size: 1.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin: 15px 0;
    background: #f1f3f6;
    padding: 8px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-txt {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-txt {
        font-size:2rem
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .notify-txt a {
    font-size: 1.2rem;
    color: #6d7278
}

.full-width-change-mobile-wrapper .change-mobile-form .notify-txt a:focus,.full-width-change-mobile-wrapper .change-mobile-form .notify-txt a:active,.full-width-change-mobile-wrapper .change-mobile-form .notify-txt a:hover {
    border: none
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-txt a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .notify-txt a {
        font-size:2rem
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper input[type="checkbox"]:checked+label::after {
    top: 14px
}

.full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper label::before {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper label {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper label {
        font-size:2.6rem;
        margin-bottom: 24px
    }
}

@media screen and (min-width: 1200px) {
    .full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper label span {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper label span {
        font-size:2rem;
        padding-top: 5px
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .disabled.form-checkbox-wrapper {
    pointer-events: none;
    cursor: not-allowed
}

.full-width-change-mobile-wrapper .change-mobile-form .disabled.form-checkbox-wrapper label::before {
    background: #f1f3f6;
    border: 0
}

.full-width-change-mobile-wrapper .abc-post-login-form>.form-row>.form-group .form-input-wrapper {
    display: -ms-flexbox;
    display: flex
}

.full-width-change-email-wrapper {
    max-width: 380px;
    margin: 0 auto;
    padding-top: 55px;
    padding-bottom: 55px
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper {
        max-width:452px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper {
        max-width:646px
    }
}

@media(max-width: 767px) {
    .full-width-change-email-wrapper {
        padding-top:11px;
        max-width: 100%
    }
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .otp-button {
    cursor: pointer;
    background-color:  #19503e;
    padding: 0 30px;
    float: right;
    text-align: center;
    color: #fff;
    border-radius: 2.9px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: 0 none;
    white-space: nowrap
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .otp-button.disabled {
    background-color: #6d7278;
    cursor: not-allowed
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .otp-button.otp-oneid-button {
    width: 30%
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .otp-text {
    -ms-flex: 1;
    flex: 1;
    display: inline-block;
    float: left;
    border-right: 0 !important;
    border-right-style: none !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .otp-text.otp-oneid-text {
    width: 70%
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .btn__overlay.btn__otp-counter {
    font-weight: bold;
    color: #6d7278
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .btn__overlay.btn__otp-counter-cta {
    font-weight: bold;
    color:  #19503e
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .form-otp-label.error {
    position: relative;
    background-color: transparent !important;
    border: transparent !important;
    padding-left: 28px
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .form-otp-label.error:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a500;
    font-size: 23px;
    text-align: center;
    font-family: FontAwesome
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .cta__flat-with-arrow {
    position: relative;
    margin-top: -10px
}

.full-width-change-email-wrapper .abc-form.abc-post-login-form .cta__flat-with-arrow:after {
    content: "";
    top: 50%;
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    font-family: "font-icons";
    color:  #19503e;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.8rem;
    vertical-align: baseline;
    right: -25px
}

.full-width-change-email-wrapper .change-email-form .notify-number {
    font-size: 1.2rem;
    line-height: normal;
    color: #000
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .notify-number {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .notify-number {
        font-size:2rem
    }
}

.full-width-change-email-wrapper .change-email-form .notify-number a {
    font-size: 1.2rem
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .notify-number a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .notify-number a {
        font-size:2rem
    }
}

.full-width-change-email-wrapper .change-email-form .mobile-number {
    color: #6d7278;
    font-size: 1.4rem;
    opacity: .5
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .mobile-number {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .mobile-number {
        font-size:2rem;
        padding-top: 5px
    }
}

.full-width-change-email-wrapper .change-email-form .notify-txt {
    font-size: 1.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin: 15px 0;
    background: #f1f3f6;
    padding: 8px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .notify-txt {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .notify-txt {
        font-size:2rem
    }
}

.full-width-change-email-wrapper .change-email-form .notify-txt a {
    font-size: 1.2rem;
    color: #6d7278
}

.full-width-change-email-wrapper .change-email-form .notify-txt a:focus,.full-width-change-email-wrapper .change-email-form .notify-txt a:active,.full-width-change-email-wrapper .change-email-form .notify-txt a:hover {
    border: none
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .notify-txt a {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .notify-txt a {
        font-size:2rem
    }
}

.full-width-change-email-wrapper .change-email-form .form-checkbox-wrapper input[type="checkbox"]:checked+label::after {
    top: 14px
}

.full-width-change-email-wrapper .change-email-form .form-checkbox-wrapper label::before {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media screen and (min-width: 1200px) {
    .full-width-change-email-wrapper .change-email-form .form-checkbox-wrapper label {
        font-size:1.8rem;
        margin-bottom: 20px
    }
}

@media screen and (min-width: 1680px) {
    .full-width-change-email-wrapper .change-email-form .form-checkbox-wrapper label {
        font-size:2.6rem;
        margin-bottom: 28px
    }
}

.full-width-change-email-wrapper .change-email-form .disabled.form-checkbox-wrapper {
    pointer-events: none;
    cursor: not-allowed
}

.full-width-change-email-wrapper .change-email-form .disabled.form-checkbox-wrapper label::before {
    background: #f1f3f6;
    border: 0
}

.full-width-change-email-wrapper .abc-post-login-form>.form-row>.form-group .form-input-wrapper {
    display: -ms-flexbox;
    display: flex
}

.dashboard__greetings-copy {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy {
        margin-bottom:0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy {
        margin-bottom:3px
    }
}

.dashboard__greetings-copy p {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    color: #000;
    margin-top: 3px;
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy p {
        font-size:1.9rem;
        margin-top: 2px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy p {
        font-size:27px;
        margin-top: 9px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__greetings-copy p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy p {
        line-height:15px
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown {
    margin-right: 20px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown {
        margin-right:20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown {
        margin-right:20px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown {
        margin-left:auto;
        margin-right: 0
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-cta {
    border: 1px solid  #19503e;
    background-color: #f1f3f6;
    margin: 0 0 0 8px;
    padding: 0 8px;
    font-size: 1.8rem;
    line-height: 24px;
    height: 26px;
    color:  #19503e;
    border-radius: 12.5px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta {
        font-size:2.2rem;
        margin: 0 0 0 11px;
        padding: 0 10px;
        line-height: 28px;
        height: 31px;
        border-radius: 25px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta {
        font-size:3.1rem;
        margin: 0 0 0 20px;
        padding: 4px 16px;
        line-height: 24px;
        height: 43px;
        border-radius: 25px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important;
        line-height: 14px;
        border-radius: 7.8px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta {
        line-height:14px;
        height: 16px;
        border-radius: 7.8px
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-cta .icon {
    font-size: 1.2rem;
    margin: 0;
    line-height: 24px;
    padding-left: 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta .icon {
        font-size:1.2rem;
        line-height: 26px;
        padding-left: 12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta .icon {
        font-size:1.6rem;
        line-height: 26px;
        padding-left: 12px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-cta .icon {
        font-size:10px;
        line-height: 16px;
        padding-left: 5px
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list {
    border: 1px solid  #19503e !important;
    position: absolute;
    width: 204px !important;
    background: #fff;
    z-index: 99;
    margin-top: 7px !important;
    margin-bottom: 0;
    list-style: none;
    left: auto !important;
    right: 0 !important;
    padding: 6px 0 !important
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list {
        width:245px !important;
        margin-top: 9px !important;
        padding: 8px 0 !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list {
        width:250px !important;
        margin-top: 9px !important;
        padding: 8px 0 !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list {
        width:130px !important;
        padding: 3px 0 !important;
        margin-top: 6px !important
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 35px;
    width: 11px;
    height: 11px;
    border-left: 1px solid  #19503e;
    border-bottom: 1px solid  #19503e;
    background-color: #fff;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list::before {
        top:-7px;
        right: 43px;
        width: 13px;
        height: 13px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list::before {
        top:-6px;
        right: 57px;
        width: 11px;
        height: 11px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list::before {
        right:25px;
        width: 8px;
        height: 8px;
        top: -5px
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list li {
    margin: 0;
    padding: 6px 0
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li {
        padding:7px 0
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li {
        padding:7px 0
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li {
        padding:3px 0
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list li::before {
    display: none
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list li a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    color: #000;
    display: block;
    padding: 0 15px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li a {
        font-size:1.9rem;
        padding: 0 18px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li a {
        font-size:2.2rem;
        padding: 0 18px
    }
}

.dashboard__greetings-copy .dashboard__edit-dropdown-list li a:hover,.dashboard__greetings-copy .dashboard__edit-dropdown-list li a:focus,.dashboard__greetings-copy .dashboard__edit-dropdown-list li a:active {
    border-bottom: 0 none
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-copy .dashboard__edit-dropdown-list li a {
        font-size:10px;
        padding: 0 10px;
        line-height: 12.5px
    }
}

.dashboard__greetings-component-wrapper {
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 767px) {
    .dashboard__greetings-component-wrapper {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-component-wrapper .dashboard__greetings-component {
        padding-left:17px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-component-wrapper .dashboard__greetings-component {
        padding-left:28px
    }
}

.dashboard__greetings-component-wrapper .dashboard__login-info p {
    font-size: 1.6rem
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-component-wrapper .dashboard__login-info p {
        font-size:1.9rem;
        margin-top: 0;
        margin-bottom: 12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-component-wrapper .dashboard__login-info p {
        font-size:2.7rem;
        margin-top: 5px;
        margin-bottom: 17px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__greetings-component-wrapper .dashboard__login-info p {
        margin-bottom:17px;
        font-size: calc(11px + (16 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__greetings-component-wrapper .dashboard__login-info p {
        line-height:13px;
        margin-bottom: 10px
    }
}

.dashboard__greetings-component-wrapper {
    margin-top: 17px
}

@media screen and (min-width: 1200px) {
    .dashboard__greetings-component-wrapper {
        margin-top:20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__greetings-component-wrapper {
        margin-top:29px
    }
}

.dashboard__link-solutions-component {
    margin-left: auto;
    padding: 8px 24px;
    border: 1px solid  #19503e;
    border-radius: 3px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-item-align: start;
    align-self: flex-start
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component {
        padding:9px 25px 6px;
        border-radius: 3px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component {
        padding:14px 40px;
        border-radius: 3px;
        margin-right: 5px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component {
        margin-left:0;
        width: 100%;
        padding: 13px 24px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__link-solutions-component {
        padding:8px 10px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy {
        margin-right:24px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy {
        margin-right:20px
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-copy p {
    color: #000;
    font-size: 1.4rem;
    line-height: 16px;
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy p {
        font-size:1.7rem;
        line-height: 17px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy p {
        font-size:2.4rem;
        line-height: 21px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important;
        line-height: 24px;
        margin-bottom: 5px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy p {
        line-height:15px;
        margin-bottom: 0
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat {
    font-size: 1.2rem
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat {
        font-size:14px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat {
        font-size:20px
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat:hover,.dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat:focus,.dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat:active {
    border-bottom: 0 none
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .cta__flat {
        font-size:calc(11px + (16 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip {
    background-color: #f7a500;
    color: #000;
    width: 14px;
    height: 14px;
    text-align: center;
    display: inline-block;
    margin-left: 8px;
    font-size: 1.2rem;
    line-height: 14px;
    border-radius: 50%;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip {
        width:14px;
        height: 14px;
        margin-left: 15px;
        font-size: 12px;
        line-height: 14px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip {
        width:21px;
        height: 21px;
        margin-left: 15px;
        font-size: 12px;
        line-height: 21px
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip:hover,.dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip:focus,.dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip:active {
    border-bottom: 0 none
}

@media screen and (max-width: 575px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-copy .btn-tooltip {
        width:12px;
        height: 12px;
        margin-left: 5px;
        font-size: 10px;
        line-height: 12px
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper {
    margin-left: 24px
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper {
        margin-left:44px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper {
        margin-left:44px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper {
        margin-left:auto
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange {
    background-color: #f7a500;
    padding: 5px 23px 5px;
    font-size: 14.4px;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-bottom: none
}

@media screen and (min-width: 1200px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange {
        font-size:19px;
        padding: 5px 40px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange {
        font-size:2.7rem;
        padding: 6px 55px
    }
}

.dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange:hover,.dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange:active,.dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange:focus {
    color: #000
}

@media screen and (max-width: 767px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange {
        font-size:calc(12px + (22 - 12)*(100vw - 360px)/(768 - 360)) !important;
        padding: 8px 23px 8px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__link-solutions-component .dashboard__link-solutions-cta-wrapper .btn-orange {
        padding:8px 20px
    }
}

.full-width-change-mobile-wrapper .change-mobile-form .form-checkbox-wrapper input[type="checkbox"]:checked+label::after {
    top: 24px
}

.dashboard__right-list-wrapper {
    box-shadow: 2px 6px 12px 0 rgba(0,0,0,.08);
    background-color: #fff;
    border-radius: 2px
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper {
        box-shadow:calc(1680/992*.2rem) calc(1680/992*.6rem) calc(1680/992*1.2rem) 0 rgba(0,0,0,.08)
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper {
        border-radius:3px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper {
        border-radius:3px
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-title {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin: 0;
    padding: 7px 20px 6px 17px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-title {
        padding:10px 26px 10px 30px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-title {
        padding:12px 12px 13px 32px
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-title p {
    color: #000;
    margin: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-title p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-title p {
        font-size:3.1rem
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-title p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content {
    font-family: "pfhandbookpro-light",sans-serif
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    width: 100%
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul {
        display:inline-block
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 16px 26px 16px 26px;
    color: #000 !important;
    padding-right: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li {
        padding-left:28px;
        padding-bottom: 22px;
        padding-top: 22px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li {
        padding-left:40px;
        padding-bottom: 31px;
        padding-top: 27px
    }
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 26px !important
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li span {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li span {
        font-size:2.4rem
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li span {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li p {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li p {
        font-size:2.2rem;
        padding-top: 1px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li p {
        font-size:3.2rem;
        padding-top: 1px;
        margin-top: 6px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li p {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta span,.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta p {
    color: #f7a500
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a {
    color: #f7a500;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.4rem;
    line-height: 1.15;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    margin-top: 5px;
    text-decoration: underline;
    position: relative;
    padding-right: 20px;
    margin-right: 34px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a {
        padding-left:24px;
        margin-right: 40px;
        font-size: 1.6rem;
        margin-top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a {
        padding-left:33px;
        margin-right: 57px;
        font-size: 2.3rem;
        margin-top: 6px
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a:after {
    content: "";
    display: block !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    font-size: 10px;
    line-height: 1;
    right: 0;
    top: 4px;
    position: absolute
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a:after {
        font-size:1.2rem;
        top: 5px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a:after {
        font-size:3.2rem;
        top: 6px
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a:hover,.dashboard__right-list-wrapper .dashboard__right-list-content ul li.policy-cta a:focus {
    border: none
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li:nth-child(2) {
    text-align: left
}

.dashboard__right-list-wrapper .dashboard__right-list-content ul li:last-child {
    text-align: left
}

.dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li {
    padding-left: 26px !important;
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li {
        padding-left:28px !important;
        padding-bottom: 22px;
        padding-top: 22px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li {
        padding-left:40px !important;
        padding-bottom: 31px;
        padding-top: 27px
    }
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li {
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li.width50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content__2 ul li.width50 {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%;
        width: 100%
    }
}

.dashboard__right-list-wrapper .dashboard__right-list-content-column3 ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-list-content-column3 ul li:nth-child(2n+1) {
        clear:both
    }
}

.dashboard__right-list-wrapper .dashboard__right-content-wrapper {
    padding: 10px 16px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-content-wrapper {
        padding-top:12px;
        padding-right: 19px;
        padding-bottom: 12px;
        padding-left: 19px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-content-wrapper {
        padding-top:12px;
        padding-right: 19px;
        padding-bottom: 12px;
        padding-left: 19px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-content-wrapper .abc-form.abc-post-login-form .form-group__label {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }

    .dashboard__right-list-wrapper .dashboard__right-content-wrapper .abc-form.abc-post-login-form .selectize-input {
        font-size: calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .dashboard__right-content-wrapper .abc-form.abc-post-login-form .selectize-input {
        font-size:1.2rem;
        height: 40px;
        line-height: 24px
    }
}

.dashboard__right-list-wrapper .dashboard__right-content-title {
    width: 100%;
    display: block
}

.dashboard__right-list-wrapper .dashboard__right-content-select {
    width: 100%
}

.dashboard__right-list-wrapper .dashboard__right-protect-now-content-title {
    color: #da9089;
    font-size: 2.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding-left: 17px;
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__right-protect-now-content-title {
        font-size:2.9rem;
        padding-left: 20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__right-protect-now-content-title {
        font-size:4.1rem;
        padding-left: 20px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__right-protect-now-content-title {
        font-size:3.6rem;
        margin-bottom: 8px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .dashboard__right-protect-now-content-title {
        font-size:2.3rem;
        margin-bottom: 8px
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a {
    border-radius: 2.6px !important
}

.theme-investing .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a {
    border-left: 3px solid #969f6e !important
}

.theme-protecting .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a {
    border-left: 3px solid #da9089 !important
}

.theme-financing .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a {
    border-left: 3px solid #d4ae69 !important
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a {
        border-radius:3px !important
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a:after {
    display: none
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a p {
    padding-right: 70px;
    line-height: 17px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a p {
        line-height:normal;
        padding-right: 84px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn a p {
        line-height:normal;
        padding-right: 117px
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange {
    background-color: #f7a500;
    padding: 6px 21px 6px 4px;
    font-size: 9.6px !important;
    line-height: 1;
    color: #000;
    width: auto !important;
    display: inline-block !important;
    float: right;
    top: 50%;
    right: 10px;
    position: absolute;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange {
        right:10px;
        font-size: 1.1rem !important;
        padding-left: 5px;
        padding-bottom: 6px;
        padding-right: 23px;
        padding-top: 6px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange {
        right:10px;
        font-size: 1.6rem !important;
        padding-left: 5px;
        padding-bottom: 8px;
        padding-right: 24px;
        padding-top: 8px
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange:after {
    content: "";
    font-family: "font-icons";
    right: 5px;
    font-size: 1rem;
    color: #000;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -1px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange:after {
        margin-top:-1px;
        font-size: 1.1rem;
        right: 6px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list-btn-orange:after {
        margin-top:-1px;
        font-size: 1.5rem;
        right: 6px
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a p {
    padding-right: 50px !important
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a p {
        padding-right:60px !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a p {
        padding-right:84px !important
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a p {
        font-size:3rem !important;
        line-height: 30px !important;
        padding-right: 150px !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a p {
        padding-right:80px !important
    }
}

.dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a .link-list-btn-orange {
    top: 8px;
    -ms-transform: translateY(0);
    transform: translateY(0)
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a .link-list-btn-orange {
        top:9px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a .link-list-btn-orange {
        top:13px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a .link-list-btn-orange {
        top:24px;
        right: 40px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn .link-list__static-list a .link-list-btn-orange {
        top:16px;
        right: 10px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li {
        -ms-flex-preferred-size:100% !important;
        flex-basis: 100% !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li:nth-last-of-type(odd) {
        margin-right: 0 !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li a {
        min-height: auto !important;
        max-height: none !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li p {
        font-size: calc(17px + (27 - 17)*(100vw - 360px)/(768 - 360)) !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange {
        font-size: calc(11px + (16 - 11)*(100vw - 360px)/(768 - 360)) !important;
        padding: 9px 21px 8px 10px;
        width: 111px !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange:after {
        font-size: calc(11px + (17 - 11)*(100vw - 360px)/(768 - 360)) !important;
        right: 10px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li {
        -ms-flex-preferred-size:100% !important;
        flex-basis: 100% !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li:nth-last-of-type(odd) {
        margin-right: 0 !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange {
        padding: 7px 21px 6px 10px;
        width: 80px !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange:after {
        right: 6px
    }
}

@media screen and (max-width: 360px) {
    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li {
        -ms-flex-preferred-size:100% !important;
        flex-basis: 100% !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li:nth-last-of-type(odd) {
        margin-right: 0 !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange {
        padding: 7px 21px 6px 10px;
        width: 69px !important
    }

    .dashboard__right-list-wrapper .link-list__list--column-with-orange-btn li .link-list-btn-orange:after {
        right: 6px
    }
}

.dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__label {
    font-size: 1.8rem
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__label {
        font-size:2.2rem;
        padding-bottom: 12px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__label {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__label {
        font-size:3.1rem;
        padding-bottom: 12px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .form-group__label,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .form-group__label {
        font-size:1.1rem
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .radio-button-collection .radio-input-wrapper label,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .radio-button-collection .radio-input-wrapper label {
        font-size: 10px;
        padding-left: 18px;
        padding-right: 18px
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .radio-button-collection .radio-input-wrapper label::before,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .radio-button-collection .radio-input-wrapper label::before {
        width: 10px;
        height: 10px;
        top: 5px
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .radio-button-collection .radio-input-wrapper input[type="radio"]:checked+label::after,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .radio-button-collection .radio-input-wrapper input[type="radio"]:checked+label::after {
        width: 6px;
        height: 6px;
        top: 7px;
        left: 2px
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .form-group__placeholder,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .form-group__placeholder {
        height: 28px;
        font-size: 1.1rem
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .selectize-input,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .selectize-input {
        height: 28px;
        padding: 2px 8px
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .selectize-input input,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .selectize-input input {
        font-size: 1.1rem
    }

    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .dashboard__cta a,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .dashboard__cta button,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .dashboard__cta input,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .dashboard__cta a,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .dashboard__cta button,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .dashboard__cta input {
        font-size: 10px;
        line-height: 10px;
        padding: 8px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-soa-form .form-group__placeholder,.dashboard__right-list-wrapper .abc-form.abc-post-login-form.pf-my-docs-interest-certificate-form .form-group__placeholder {
        font-size:2rem;
        padding: .375rem 1.8rem;
        height: 44px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-button-collection .radio-input-wrapper label {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.dashboard__right-list-wrapper .dashboard__content-horizontal-tab-main-wrapper {
    margin: 0 auto 6px auto;
    width: calc(100% - 36px);
    padding-top: 13px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .dashboard__content-horizontal-tab-main-wrapper {
        padding-top:20px;
        width: calc(100% - 43px);
        margin-bottom: 7px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .dashboard__content-horizontal-tab-main-wrapper {
        padding-top:28px;
        width: calc(100% - 60px);
        margin-bottom: 10px
    }
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .dashboard__content-horizontal-tab-main-wrapper {
        margin:0 24px 20px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-list-wrapper .dashboard__content-horizontal-tab-main-wrapper {
        margin:0 24px 13px
    }
}

.active-progress-bar-wrapper {
    margin-bottom: 20px
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper {
        margin-bottom:24px
    }
}

@media screen and (max-width: 767px) {
    .active-progress-bar-wrapper {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0
    }
}

.active-progress-bar-wrapper p {
    float: left;
    width: 50%;
    font-family: 'pfhandbookpro-medium',sans-serif;
    color: #000;
    margin-bottom: 8px;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper p {
        margin-bottom:9px;
        font-size: 2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper p {
        margin-bottom:9px;
        font-size: 3.1rem
    }
}

@media screen and (max-width: 767px) {
    .active-progress-bar-wrapper p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important;
        margin-bottom: 20px;
        width: 100%
    }
}

@media screen and (max-width: 575px) {
    .active-progress-bar-wrapper p {
        margin-bottom:10px;
        width: 100%
    }
}

.active-progress-bar-wrapper a {
    float: right;
    width: 50%;
    text-align: right;
    color: #7f3a34;
    font-size: 1.4rem;
    font-family: 'pfhandbookpro-bold',sans-serif;
    position: relative;
    padding-right: 30px
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper a {
        padding-right:36px;
        font-size: 1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper a {
        padding-right:36px;
        font-size: 2.4rem
    }
}

.active-progress-bar-wrapper a:hover,.active-progress-bar-wrapper a:focus {
    border: none
}

.active-progress-bar-wrapper a:after {
    content: "";
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-family: "font-icons";
    color: #7f3a34;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    line-height: 1;
    text-transform: none;
    position: absolute;
    font-size: 1.2rem;
    vertical-align: baseline;
    right: 0
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper a:after {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper a:after {
        font-size:1.6rem
    }
}

@media screen and (max-width: 767px) {
    .active-progress-bar-wrapper a {
        display:inline-block;
        -ms-flex-order: 3;
        order: 3;
        margin-top: 10px;
        width: auto;
        text-align: left;
        float: left;
        font-size: calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important;
        margin-bottom: 20px
    }

    .active-progress-bar-wrapper a:after {
        font-size: calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important;
        position: relative;
        right: -20px
    }
}

@media screen and (max-width: 575px) {
    .active-progress-bar-wrapper a {
        margin-bottom:10px
    }

    .active-progress-bar-wrapper a:after {
        right: -15px
    }
}

.active-progress-bar-wrapper .active-progress-bar {
    width: 100%;
    clear: both
}

.active-progress-bar-wrapper progress[value] {
    appearance: none;
    border: none;
    height: 10px
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper progress[value] {
        height:12px
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper progress[value] {
        height:17px
    }
}

@media screen and (max-width: 767px) {
    .active-progress-bar-wrapper progress[value] {
        height:19px
    }
}

@media screen and (max-width: 575px) {
    .active-progress-bar-wrapper progress[value] {
        height:12px
    }
}

.active-progress-bar-wrapper progress[value]::-webkit-progress-bar {
    background-color: #c2c7cb;
    border-radius: 8.5px
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper progress[value]::-webkit-progress-bar {
        border-radius:10px
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper progress[value]::-webkit-progress-bar {
        border-radius:14px
    }
}

.active-progress-bar-wrapper progress[value]::-webkit-progress-value {
    position: relative;
    border-radius: 8.5px 0 0 8.5px;
    background: #f7a500
}

@media screen and (min-width: 1200px) {
    .active-progress-bar-wrapper progress[value]::-webkit-progress-value {
        border-top-left-radius:10px;
        border-bottom-left-radius: 10px
    }
}

@media screen and (min-width: 1680px) {
    .active-progress-bar-wrapper progress[value]::-webkit-progress-value {
        border-top-left-radius:14px;
        border-bottom-left-radius: 14px
    }
}

.list-style-none ul li:before {
    content: none
}

.theme-investing .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper {
    border-left: 3px solid #969f6e
}

.theme-protecting .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper {
    border-left: 3px solid #da9089
}

.theme-financing .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper {
    border-left: 3px solid #d4ae69
}

.theme-investing .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper .dashboard__right-list-title {
    background-color: #969f6e
}

.theme-protecting .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper .dashboard__right-list-title {
    background-color: #da9089
}

.theme-financing .dashboard__bottom-inner-wrapper .dashboard__right-list-wrapper .dashboard__right-list-title {
    background-color: #d4ae69
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%;
        margin-right: 0 !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a {
        min-height: 77px !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        font-size: calc(17px + (27 - 17)*(100vw - 360px)/(768 - 360)) !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a:after {
        top: 50% !important;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: calc(15px + (18 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
        -ms-flex-preferred-size:100%;
        flex-basis: 100%;
        margin-right: 0 !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a {
        min-height: 48px !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a:after {
        top: 50% !important;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.listsummary-main-wrapper.listsummary-with-linklist-main-wrapper .listsummary-head .listsummary-head-content .LOBQuickLinks ul li {
    padding: 0 !important;
    max-width: 100%;
    width: 100%
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper.listsummary-with-linklist-main-wrapper .listsummary-head .listsummary-head-content ul {
        display:inline !important
    }

    .listsummary-main-wrapper.listsummary-with-linklist-main-wrapper .listsummary-head .listsummary-head-content ul li {
        max-width: 100%
    }

    .listsummary-main-wrapper.listsummary-with-linklist-main-wrapper .listsummary-head .listsummary-head-content ul li.mob-full-width {
        width: 100% !important;
        padding-right: 26px !important
    }
}

@media(max-width: 767px) {
    .listsummary-main-wrapper.listsummary-with-linklist-main-wrapper .listsummary-head .listsummary-head-content ul:first-child li:last-child {
        clear:both
    }
}

.common-btn-orange.btn-orange {
    background-color: #f7a500;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14.4px;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-bottom: none;
    min-width: 120px
}

@media screen and (min-width: 1200px) {
    .common-btn-orange.btn-orange {
        font-size:1.9rem;
        min-width: 144px
    }
}

@media screen and (min-width: 1680px) {
    .common-btn-orange.btn-orange {
        font-size:2.7rem;
        min-width: 201px
    }
}

.life-insurance-wrapper .listsummary__container .listsummary-row ul li {
    padding-left: 0 !important;
    padding-right: 0
}

@media screen and (min-width: 1200px) {
    .life-insurance-wrapper .listsummary__container .listsummary-row ul li:nth-child(2) {
        padding-left:20px !important
    }
}

@media screen and (min-width: 1680px) {
    .life-insurance-wrapper .listsummary__container .listsummary-row ul li:nth-child(2) {
        padding-left:29px !important;
        padding-top: 2px
    }
}

@media screen and (max-width: 360px) {
    .life-insurance-wrapper .LOBQuickLinks ul.link-list__list--column li a {
        padding:12px 14px 11px 10px !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.dropdown-form .form-group__datepicker-container {
        max-height:331px;
        max-width: 328px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.dropdown-form .form-group__datepicker-container {
        max-height:331px;
        max-width: 468px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.dropdown-form .form-group__datepicker-container .form-calendar-icon {
        right:3px;
        font-size: 2.4rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.dropdown-form .form-group__datepicker-container .form-calendar-icon {
        right:3px;
        font-size: 2.4rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__placeholder {
        height:44px;
        font-size: 1.8rem;
        padding-top: 4px;
        padding-right: 21px;
        padding-bottom: 4px;
        padding-left: 21px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .form-group__placeholder {
        height:75px;
        font-size: 3rem;
        padding-top: 17px;
        padding-right: 24px;
        padding-bottom: 17px;
        padding-left: 24px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper label {
        margin-bottom:7px;
        line-height: 1.4;
        font-size: 1.7rem;
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper label {
        margin-bottom:7px;
        line-height: 1;
        font-size: 2.4rem;
        padding-right: 50px;
        padding-left: 40px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper label:before {
        border-width:1px;
        top: 2px;
        height: 20px;
        width: 20px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper label:before {
        border-width:1px;
        top: 3px;
        height: 19px;
        width: 19px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper input[type="radio"]:checked+label::after {
        left:4px;
        top: 5px;
        height: 13px;
        width: 13px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .radio-input-wrapper input[type="radio"]:checked+label::after {
        left:4px;
        top: 7px;
        height: 11px;
        width: 11px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pipe-style .selectize-input:after {
        height:52px !important;
        right: auto;
        font-size: 1.4rem !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pipe-style .selectize-input:after {
        height:73px !important;
        right: auto;
        font-size: 2rem !important;
        top: 51% !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.pipe-style .selectize-input.dropdown-active:after {
        height:52px !important;
        right: -24px !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input {
        font-size:2.2rem !important;
        padding: 9px;
        border-radius: 5px;
        height: 52px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input {
        font-size:3.1rem !important;
        padding: 13px;
        border-radius: 6px;
        height: 73px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input .item {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input .item {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input:after {
        font-size:1.4rem !important;
        width: 52px;
        height: 52px;
        right: 6px;
        margin-top: 0;
        top: 44% !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input:after {
        font-size:2rem !important;
        width: 46px;
        height: 46px;
        right: 8px;
        margin-top: 0;
        top: 38% !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input.dropdown-active:after {
        font-size:1.4rem !important;
        height: 12px !important;
        width: 12px !important;
        right: 10px !important;
        margin-top: 0 !important;
        top: 50% !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input.dropdown-active:after {
        font-size:2rem !important;
        height: 12px !important;
        width: 12px !important;
        top: 51% !important;
        right: 10px !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input input {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-input input {
        font-size:3.1rem
    }
}

.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content {
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content {
        max-height:240px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content {
        max-height:240px
    }
}

.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .option,.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .optgroup-header {
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .option,.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .optgroup-header {
        padding-top:16px;
        padding-right: 19px;
        padding-bottom: 16px;
        padding-left: 19px;
        font-size: 2.2rem;
        line-height: 21px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .option,.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .selectize-dropdown .optgroup-header {
        padding-top:16px;
        padding-right: 19px;
        padding-bottom: 16px;
        padding-left: 19px;
        font-size: 2.2rem;
        line-height: 21px
    }
}

.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .option {
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .option {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .selectize-dropdown-content .option {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .option,.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .optgroup-header {
        padding-top:16px;
        padding-right: 19px;
        padding-bottom: 16px;
        padding-left: 12px;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .option,.dashboard__right-list-wrapper .abc-form.abc-post-login-form .selectize-dropdown .optgroup-header {
        padding-top:23px;
        padding-right: 26px;
        padding-bottom: 23px;
        padding-left: 26px;
        line-height: 27px
    }
}

@media(max-width: 767px) {
    .dashboard__right-list-wrapper .abc-form.abc-post-login-form.hf-my-docs-interest-certificate-form .pt-5 {
        padding-top:10px !important
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper li.small-text {
        margin-bottom:10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper li.small-text {
        margin-bottom:20px
    }
}

@media screen and (min-width: 1680px) {
    .li-select-policy-mb {
        margin-bottom:43px
    }
}

.dashboard__main-content-wrapper {
    counter-reset: section
}

.mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before,.mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_arrow span:before {
    line-height: 16px
}

@media screen and (min-width: 1200px) {
    .mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before,.mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_arrow span:before {
        line-height:19px
    }
}

@media screen and (min-width: 1680px) {
    .mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before,.mac .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_arrow span:before {
        line-height:24px;
        font-size: 3.9rem
    }
}

.listsummary-main-wrapper {
    box-shadow: 2px 6px 12px 0 rgba(0,0,0,.08);
    background-color: #fff;
    border-radius: 2px;
    display: flow-root;
    margin-bottom: 16px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper {
        box-shadow:2px 10px 18px rgba(0,0,0,.08);
        margin-bottom: 16px;
        border-radius: 3px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper {
        box-shadow:2px 10px 18px rgba(0,0,0,.08);
        margin-bottom: 34px;
        border-radius: 3px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin: 0;
    padding: 6px 12px 6px 17px;
    cursor: pointer;
    min-height: 43px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title {
        padding:8px 12px 6px 22px;
        min-height: 53px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title {
        padding:10px 26px 10px 30px;
        min-height: 73px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title {
        padding:18px 12px 17px 17px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow {
    margin-left: auto
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left {
    font-size: 1.8rem;
    line-height: 20px;
    width: calc(50% - 10px)
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left {
        width:calc(50% - calc(1680/992*10px))
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left {
        width:48%;
        line-height: 26px;
        font-size: 2.1rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left {
        width:58%;
        line-height: 30px;
        font-size: 3.1rem
    }
}

@media screen and (max-width: 575px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left {
        margin-right:20px
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left p {
        line-height:26px;
        font-size: 2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left p {
        line-height:normal;
        font-size: 3.1rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_left p::before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero) " "
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right {
    width: calc(50% - 10px);
    text-align: right;
    padding-right: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right {
        width:48%;
        padding-right: 17px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right {
        width:49%;
        padding-right: 25px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right .btn-orange {
        margin-top:-12px;
        margin-bottom: -11px
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p {
        font-size:3.1rem
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p span {
    color: #6d7278
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p span.active {
    color:  #19503e
}

@media screen and (max-width: 575px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p {
        white-space:nowrap
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right p {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_right .hide-mob {
        display:none !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span {
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #fff;
    float: left;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span {
        font-size:23px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        margin-right: 6px;
        margin-top: 3px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span {
        font-size:3.4rem;
        width: 30px;
        height: 30px;
        line-height: 33px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
    line-height: 11px;
    font-size: 24px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
        font-size:2.9rem;
        line-height: 20px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
        font-size:3.9rem;
        line-height: 25px
    }
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
        line-height:15px
    }
}

.theme-investing .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
    color: #3e593c
}

.theme-protecting .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
    color: #6a4742
}

.theme-financing .listsummary-main-wrapper .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span:before {
    color: #695934
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title p {
    margin: 0;
    color: #000
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin: 0;
    padding: 6px 12px 6px 17px;
    cursor: pointer;
    min-height: 36px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
        padding:7px 12px 6px 22px;
        min-height: 52px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
        padding:10px 20px 10px 28px;
        min-height: 61px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
    width: calc(50% - 10px)
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        width:calc(50% - 12px);
        font-size: 2.1rem;
        line-height: 24px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        width:calc(50% - 17px);
        font-size: 3rem;
        line-height: 33px
    }
}

@media screen and (max-width: 575px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        margin-right:40px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left p::before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero) " "
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left p {
        font-size:3.1rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left p {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        font-size:calc(17px + (27 - 17)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right {
    width: calc(50% + 10px);
    text-align: right;
    padding-right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right {
        width:calc(50% + 12px)
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right {
        width:calc(50% + 17px)
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right p span {
    color: #6d7278
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right p span.active {
    color:  #19503e
}

@media screen and (max-width: 575px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right p {
        white-space:nowrap
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_right .hide-mob {
        display:none !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_arrow {
    display: none
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-title-static p {
    margin: 0;
    color: #000
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static.listsummary-head-title-static-custom {
        padding:26px 12px 26px 17px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content {
    font-family: "pfhandbookpro-medium",sans-serif;
    color: #000;
    margin: 0
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content {
        border:none
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul {
        display:inline-block
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 12px 26px 12px 26px;
    color: #000 !important;
    padding-right: 0;
    max-width: 33%
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li {
        padding-top:14px;
        padding-right: 31px;
        padding-bottom: 14px;
        padding-left: 31px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li {
        padding-top:20px;
        padding-right: 43px;
        padding-bottom: 20px;
        padding-left: 43px
    }
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 26px !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span {
        font-size:2.4rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span {
        font-size:calc(13px + (20 - 13)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li p {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 1.3;
    word-break: break-word
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li p {
        word-break: break-all
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li p {
        font-size:3.2rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li p {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span.pascal-case {
    margin-bottom: 0;
    font-size: 2.6rem !important;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif !important;
    line-height: 1.3 !important;
    word-break: break-word
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span.pascal-case {
        word-break: break-all
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span.pascal-case {
        font-size:2.2rem !important
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span.pascal-case {
        font-size:3.2rem !important
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li span.pascal-case {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:nth-child(2) {
    text-align: left;
    padding-left: 70px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:nth-child(2) {
        padding-left:16px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:nth-child(2) {
        padding-left:23px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:last-child {
    text-align: left;
    padding-left: 100px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:last-child {
        padding-left:16px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content ul li:last-child {
        padding-left:23px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul {
        display:inline-block
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    padding: 16px 26px 16px 26px;
    color: #000 !important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
        padding:19px 23px 16px 29px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
        padding:27px 39px 40px 39px
    }
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li:nth-child(2n+1) {
        clear:both
    }
}

@media(max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
        width:50%;
        max-width: 50%;
        display: block;
        float: left;
        padding: 10px 8px 10px 19px !important
    }
}

@media screen and (max-width: 767px) and (min-width:1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
        padding:19px 23px 16px 29px !important
    }
}

@media screen and (max-width: 767px) and (min-width:1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li {
        padding:27px 39px 40px 39px !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li span {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li span {
        font-size:2.4rem
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li p {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 1.3
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li p {
        font-size:2.2rem;
        margin-top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li p {
        font-size:3.2rem;
        margin-top: 13px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li:nth-child(2) {
    text-align: left
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .no-wrap-list ul li:last-child {
    text-align: left
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content {
    margin-bottom: 35px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content {
        margin-bottom:42px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content {
        margin-bottom:59px
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content p {
    margin: 35px 30px 6px 31px;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #000
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content p {
        font-size:1.4rem;
        margin: 42px 36px 7px 7px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content p {
        font-size:2rem;
        margin: 58px 50px 10px 52px
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content p {
        font-size:calc(12px + (24 - 12)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a {
    position: relative;
    display: inline;
    font-size: 1.4rem;
    line-height: 1.04;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #da9089
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a {
        font-size:2.3rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a {
        font-size:calc(12px + (24 - 12)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a:hover {
    border-bottom: 0
}

.listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a:after {
    content: "";
    font-size: 1.7rem;
    color: #da9089;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    position: absolute;
    right: -25px;
    top: 0
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a:after {
        font-size:2rem;
        right: -30px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a:after {
        font-size:3.1rem;
        right: -40px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary-main-wrapper .listsummary-head .listsummary-head-content .listsummary__inner-content a:after {
        top:6px
    }
}

.listsummary-main-wrapper.active .listsummary-head .listsummary-head-content {
    display: none
}

.listsummary-main-wrapper.active .listsummary-head .listsummary-head-title .listsummary-head-title_arrow span::before,.listsummary-main-wrapper.active .listsummary-head .listsummary-head-title-static .listsummary-head-title_arrow span::before {
    content: ""
}

.listsummary-main-wrapper.active .listsummary-content {
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    padding: 18px 15px 22px 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper.active .listsummary-content {
        padding-left:29px;
        padding-bottom: 25px;
        padding-right: 18px;
        padding-top: 18px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper.active .listsummary-content {
        padding-left:41px;
        padding-bottom: 47px;
        padding-right: 24px;
        padding-top: 29px
    }
}

.listsummary-main-wrapper.active .listsummary-content.padding-low {
    padding: 10px 15px 22px 15px
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper.active .listsummary-content.padding-low {
        padding:12px 18px 22px 18px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper.active .listsummary-content.padding-low {
        padding:16px 25px 36px 25px
    }
}

.listsummary-main-wrapper:last-child {
    margin-bottom: 0
}

.listsummary-main-wrapper .btn-orange {
    background-color: #f7a500;
    padding: 4px 23px 4px;
    font-size: 14.4px;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-bottom: none;
    margin-left: 30px;
    white-space: nowrap;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .listsummary-main-wrapper .btn-orange {
        font-size:1.7rem;
        padding: 10px 27px 10px 27px;
        margin-left: 36px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-main-wrapper .btn-orange {
        font-size:2.4rem;
        padding: 10px 27px 10px 27px;
        margin-left: 36px
    }
}

.listsummary-main-wrapper .btn-orange:hover,.listsummary-main-wrapper .btn-orange:active,.listsummary-main-wrapper .btn-orange:focus {
    color: #000
}

@media screen and (max-width: 767px) {
    .listsummary-main-wrapper .btn-orange {
        font-size:calc(9px + (15 - 9)*(100vw - 360px)/(768 - 360)) !important;
        padding: 8px 23px 8px
    }
}

@media screen and (max-width: 575px) {
    .listsummary-main-wrapper .btn-orange {
        padding:5px 23px 5px
    }
}

.listsummary__col-row {
    margin-right: -8px;
    margin-left: -8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5px
}

@media screen and (min-width: 1200px) {
    .listsummary__col-row {
        margin-top:6px;
        margin-right: 9px;
        margin-left: 9px
    }
}

@media screen and (min-width: 1200px) {
    .listsummary__col-row {
        margin-top:8px;
        margin-right: 13px;
        margin-left: 13px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary__col-row {
        margin-top:45px
    }
}

.listsummary__col-row .listsummary__col {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-left: 8px;
    padding-right: 8px
}

@media screen and (min-width: 1200px) {
    .listsummary__col-row .listsummary__col {
        padding-left:9px;
        padding-right: 9px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__col-row .listsummary__col {
        padding-left:13px;
        padding-right: 13px
    }
}

@media screen and (max-width: 767px) {
    .listsummary__col-row .listsummary__col {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 50px
    }
}

@media screen and (max-width: 575px) {
    .listsummary__col-row .listsummary__col {
        margin-bottom:20px
    }
}

.listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
    width: 100%
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
        padding:26px 12px 26px 17px
    }
}

.listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content {
    margin-bottom: 0
}

.listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content p {
    margin-top: 23px;
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content p {
        margin-top:0
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content p {
        margin-top:0
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content p {
        margin-top:6px;
        margin-bottom: -23px
    }
}

@media screen and (max-width: 767px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .listsummary__inner-content p {
        text-align:left;
        margin-left: 20px
    }
}

@media screen and (max-width: 767px) {
    .listsummary__col-row .listsummary__col .listsummary-main-wrapper .listsummary-head-content .LOBQuickLinks ul li {
        padding:10px 0 10px !important
    }
}

.title-tag {
    background-color: rgba(247,165,0,.5);
    padding: 2px 14px 4px 12px;
    border-radius: 11px;
    margin-bottom: 5px;
    display: inline-block
}

@media screen and (min-width: 1200px) {
    .title-tag {
        margin-bottom:6px;
        border-radius: 12px;
        padding-left: 17px;
        padding-bottom: 4px;
        padding-right: 17px;
        padding-top: 4px
    }
}

.listsummary-content .listsummary-content_left {
    width: 58.19%;
    float: left;
    padding-right: 5px
}

@media screen and (min-width: 1200px) {
    .listsummary-content .listsummary-content_left {
        padding-right:5px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-content .listsummary-content_left {
        padding-right:5px
    }
}

@media(max-width: 767px) {
    .listsummary-content .listsummary-content_left:after {
        width:calc(100% - 12px);
        height: 1px;
        display: block;
        content: '';
        margin: auto;
        border-bottom: 1px solid #dee2e6
    }
}

@media(max-width: 767px) {
    .listsummary-content .listsummary-content_left {
        width:100%;
        padding: 0;
        border: none !important
    }
}

.listsummary-content .listsummary-content_right {
    width: 41.81%;
    float: left;
    padding-left: 23px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1200px) {
    .listsummary-content .listsummary-content_right {
        padding-left:26px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-content .listsummary-content_right {
        padding-left:38px
    }
}

.listsummary-content .listsummary-content_right .LOBQuickLinks,.listsummary-content .listsummary-content_right .lOBQuickLinks {
    width: 100%
}

@media(max-width: 767px) {
    .listsummary-content .listsummary-content_right .LOBQuickLinks .link-list__list--column li a,.listsummary-content .listsummary-content_right .lOBQuickLinks .link-list__list--column li a {
        word-break:break-word;
        min-height: 80px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding: 17.5px 40px 17.5px 20px !important
    }
}

@media screen and (max-width: 575px) {
    .listsummary-content .listsummary-content_right .LOBQuickLinks .link-list__list--column li a,.listsummary-content .listsummary-content_right .lOBQuickLinks .link-list__list--column li a {
        min-height:55px;
        padding: 9px 40px 9px 10px !important
    }
}

@media(max-width: 767px) {
    .listsummary-content .listsummary-content_right {
        width:100%;
        padding: 0
    }
}

@media(max-width: 767px) {
    .dashboard__inner-content-wrapper[data-id='mi-view-policies'] .dashboard__portfolio-inner-content-wrapper.active {
        margin-top:20px
    }
}

.un-numbered-list .listsummary-head-title_left p:before {
    content: none !important
}

div[data-id="hi-my-services"] .link-list__list--column li {
    display: -ms-flexbox;
    display: flex
}

.theme-investing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper {
    border-left: 3px solid #969f6e
}

.theme-protecting .dashboard__bottom-inner-wrapper .listsummary-main-wrapper {
    border-left: 3px solid #da9089
}

.theme-financing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper {
    border-left: 3px solid #d4ae69
}

.theme-investing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title,.theme-investing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
    background-color: rgba(150,159,110,.3)
}

.theme-protecting .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title,.theme-protecting .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
    background-color: rgba(218,144,137,.3)
}

.theme-financing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title,.theme-financing .dashboard__bottom-inner-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
    background-color: rgba(212,174,105,.3)
}

@media screen and (min-width: 1200px) {
    .mob-full-width .LOBQuickLinks_row3_wrapper .LOBQuickLinks {
        padding-bottom:0
    }
}

@media screen and (min-width: 1680px) {
    .mob-full-width .LOBQuickLinks_row3_wrapper .LOBQuickLinks {
        padding-bottom:0
    }
}

@media screen and (min-width: 1200px) {
    .hi-spacing .listsummary__col-row {
        margin-right:0;
        margin-left: 0
    }
}

@media screen and (min-width: 1200px) {
    .hi-spacing .listsummary__col-row .listsummary__col:first-child {
        padding-left:0
    }
}

@media screen and (min-width: 1680px) {
    .hi-spacing .listsummary__col-row .listsummary__col:first-child {
        padding-left:0
    }
}

@media screen and (min-width: 1200px) {
    .hi-spacing .listsummary__col-row .listsummary__col:last-child {
        padding-right:0
    }
}

@media screen and (min-width: 1680px) {
    .hi-spacing .listsummary__col-row .listsummary__col:last-child {
        padding-right:0
    }
}

@media screen and (min-width: 1680px) {
    .hi-spacing .listsummary__col-row {
        margin-right:0;
        margin-left: 0
    }
}

.listsummary__container {
    width: 100%
}

.listsummary__container .listsummary-row ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    width: 100%
}

@media(max-width: 1020px) {
    .listsummary__container .listsummary-row ul {
        display:inline-block
    }
}

.listsummary__container .listsummary-row ul li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 0 15px 23px 10px;
    color: #000 !important;
    padding-right: 5px;
    max-width: 50%;
    word-break: break-word
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li {
        padding-right:5px;
        padding-left: 6px;
        padding-bottom: 36px;
        padding-right: 17px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li {
        padding-right:5px;
        padding-left: 6px;
        padding-bottom: 41px;
        padding-right: 17px
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .listsummary__container .listsummary-row ul li {
        word-break: break-all
    }
}

@media screen and (max-width: 575px) {
    .listsummary__container .listsummary-row ul li {
        padding-bottom:15px
    }
}

@media(max-width: 1020px) {
    .listsummary__container .listsummary-row ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 10px !important;
        padding-bottom: 15px
    }
}

.listsummary__container .listsummary-row ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li span {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li span {
        font-size:2.4rem
    }
}

@media screen and (max-width: 767px) {
    .listsummary__container .listsummary-row ul li span {
        font-size:calc(13px + (20 - 13)*(100vw - 360px)/(768 - 360)) !important;
        font-size: 2rem;
        line-height: 30px
    }
}

@media screen and (max-width: 575px) {
    .listsummary__container .listsummary-row ul li span {
        line-height:30px
    }
}

.listsummary__container .listsummary-row ul li p {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li p {
        font-size:2.2rem;
        margin-top: 9px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li p {
        font-size:3.2rem;
        margin-top: 17px
    }
}

@media screen and (max-width: 767px) {
    .listsummary__container .listsummary-row ul li p {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.listsummary__container .listsummary-row ul li span.pascal-case {
    margin-bottom: 0;
    font-size: 2.6rem !important;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif !important;
    line-height: normal !important
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li span.pascal-case {
        font-size:2.2rem !important
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li span.pascal-case {
        font-size:3.2rem !important
    }
}

@media screen and (max-width: 767px) {
    .listsummary__container .listsummary-row ul li span.pascal-case {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.theme-investing .listsummary__container .listsummary-row ul li.cta-link span {
    color: #969f6e
}

.theme-protecting .listsummary__container .listsummary-row ul li.cta-link span {
    color: #da9089
}

.theme-financing .listsummary__container .listsummary-row ul li.cta-link span {
    color: #d4ae69
}

.theme-investing .listsummary__container .listsummary-row ul li.cta-link p {
    color: #969f6e
}

.theme-protecting .listsummary__container .listsummary-row ul li.cta-link p {
    color: #da9089
}

.theme-financing .listsummary__container .listsummary-row ul li.cta-link p {
    color: #d4ae69
}

.listsummary__container .listsummary-row ul li.cta-link a {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.4rem;
    line-height: normal;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-transform: uppercase;
    margin-top: 5px;
    text-decoration: underline;
    position: relative;
    padding-right: 20px
}

.theme-investing .listsummary__container .listsummary-row ul li.cta-link a {
    color: #969f6e
}

.theme-protecting .listsummary__container .listsummary-row ul li.cta-link a {
    color: #da9089
}

.theme-financing .listsummary__container .listsummary-row ul li.cta-link a {
    color: #d4ae69
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li.cta-link a {
        font-size:1.9rem;
        margin-top: 6px;
        padding-right: 68px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li.cta-link a {
        font-size:2.7rem;
        margin-top: 8px;
        padding-right: 68px
    }
}

.listsummary__container .listsummary-row ul li.cta-link a:after {
    content: "";
    display: block !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
    font-size: 10px;
    line-height: 1;
    right: 0;
    top: 4px;
    position: absolute
}

@media screen and (min-width: 1200px) {
    .listsummary__container .listsummary-row ul li.cta-link a:after {
        font-size:1.2rem;
        top: 5px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .listsummary-row ul li.cta-link a:after {
        font-size:1.6rem;
        top: 6px
    }
}

.listsummary__container .listsummary-row ul li.cta-link a:hover {
    border: none
}

.listsummary__container .listsummary-row ul li.cta-link a:focus {
    border: none
}

.listsummary__container .listsummary-row.last {
    padding-bottom: 0
}

.listsummary__container .listsummary-row.last li {
    padding-bottom: 0
}

@media(max-width: 767px) {
    .listsummary__container .listsummary-row.last li {
        padding-bottom:18px
    }
}

.listsummary__container .btn-tooltip {
    border: 1px solid #da9089 !important;
    color: #000 !important;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    margin-left: 8px;
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 19px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: -3px
}

@media screen and (min-width: 1200px) {
    .listsummary__container .btn-tooltip {
        border-width:1px;
        width: 24px;
        height: 24px;
        margin-left: 9px;
        font-size: 1.4rem;
        line-height: 22px;
        top: 0
    }
}

@media screen and (min-width: 1680px) {
    .listsummary__container .btn-tooltip {
        border-width:1px;
        width: 24px;
        height: 24px;
        margin-left: 9px;
        font-size: 1.4rem;
        line-height: 22px
    }
}

.listsummary__container .btn-tooltip:hover,.listsummary__container .btn-tooltip:focus,.listsummary__container .btn-tooltip:active {
    border-bottom: 0 none
}

.title-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.title-btn .btn-orange {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    min-width: 120px;
    background: #f7a500;
    border-radius: 11px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 30px;
    border-radius: 1px;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    margin-right: 10px
}

@media screen and (min-width: 1200px) {
    .title-btn .btn-orange {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .title-btn .btn-orange {
        font-size:2.7rem
    }
}

@media screen and (min-width: 1200px) {
    .title-btn .btn-orange {
        min-width:141px !important;
        border-radius: 3px;
        min-height: 36px !important;
        margin-right: 0;
        font-size: 17px
    }
}

@media screen and (min-width: 1680px) {
    .title-btn .btn-orange {
        min-width:210px !important;
        border-radius: 3px;
        min-height: 49px !important;
        margin-right: 0;
        font-size: 2.4rem
    }
}

.title-btn .btn-orange:hover,.title-btn .btn-orange:active,.title-btn .btn-orange:focus {
    text-decoration: none;
    border: 0
}

@media screen and (min-width: 1200px) {
    .title-btn p {
        font-size:2.2rem;
        line-height: normal;
        margin-bottom: 12px
    }
}

@media screen and (min-width: 1680px) {
    .title-btn p {
        font-size:3.1rem;
        line-height: normal;
        margin-bottom: 12px
    }
}

.yellow-badge {
    background: rgba(247,165,0,.5);
    border-radius: 11px;
    padding: 3px 8px
}

@media screen and (min-width: 1200px) {
    .yellow-badge {
        border-radius:13px;
        padding: 3px 9px 3px 9px
    }
}

@media screen and (min-width: 1680px) {
    .yellow-badge {
        border-radius:18px;
        padding: 5px 13px 5px 13px
    }
}

.common-hr {
    border-top: 1px solid rgba(151,151,151,.2);
    margin: 23px 0
}

@media screen and (min-width: 1200px) {
    .common-hr {
        margin-bottom:28px;
        margin-top: 27px;
        border-top-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .common-hr {
        margin-bottom:41px;
        margin-top: 40px;
        border-top-width: 1px
    }
}

.LOBQuickLinks.padding-x,.lOBQuickLinks.padding-x {
    padding-left: 14px;
    padding-right: 14px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks.padding-x,.lOBQuickLinks.padding-x {
        padding-left:16px;
        padding-right: 16px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks.padding-x,.lOBQuickLinks.padding-x {
        padding-left:23px;
        padding-right: 23px
    }
}

.LOBQuickLinks ul.link-list__list--column,.lOBQuickLinks ul.link-list__list--column {
    padding: 5px 0
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column,.lOBQuickLinks ul.link-list__list--column {
        padding-bottom:7px;
        padding-top: 7px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column,.lOBQuickLinks ul.link-list__list--column {
        padding-bottom:34px;
        padding-top: 19px;
        position: relative;
        bottom: 0
    }
}

@media(max-width: 1020px) {
    .LOBQuickLinks ul.link-list__list--column,.lOBQuickLinks ul.link-list__list--column {
        display:block
    }
}

@media(max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column,.lOBQuickLinks ul.link-list__list--column {
        padding-top:15px;
        padding-bottom: 0
    }
}

.LOBQuickLinks ul.link-list__list--column li,.lOBQuickLinks ul.link-list__list--column li {
    width: 100%;
    max-width: 100%
}

.LOBQuickLinks ul.link-list__list--column li a,.lOBQuickLinks ul.link-list__list--column li a {
    border-radius: 2px;
    box-shadow: 2px 6px 12px 0 rgba(0,0,0,.08);
    margin-bottom: 10px;
    font-size: 1.4rem;
    line-height: 1.03;
    padding: 17.5px 20px;
    border: solid .5px #da9089
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li a,.lOBQuickLinks ul.link-list__list--column li a {
        box-shadow:2px 2px 8px 0 rgba(0,0,0,.08);
        border-width: 2px;
        padding-bottom: 24px;
        border-radius: 3px;
        margin-bottom: 19px;
        font-size: 1.7rem;
        padding-top: 18px;
        padding-right: 20px;
        padding-bottom: 17px;
        padding-left: 19px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li a,.lOBQuickLinks ul.link-list__list--column li a {
        box-shadow:3px 3px 12px 0 rgba(0,0,0,.08);
        font-size: 2.4rem;
        padding-top: 33px;
        padding-right: 29px;
        padding-bottom: 33px;
        padding-left: 33px
    }
}

.theme-investing .LOBQuickLinks ul.link-list__list--column li a,.theme-investing .lOBQuickLinks ul.link-list__list--column li a {
    border-color: rgba(150,159,110,.3)
}

.theme-protecting .LOBQuickLinks ul.link-list__list--column li a,.theme-protecting .lOBQuickLinks ul.link-list__list--column li a {
    border-color: rgba(218,144,137,.3)
}

.theme-financing .LOBQuickLinks ul.link-list__list--column li a,.theme-financing .lOBQuickLinks ul.link-list__list--column li a {
    border-color: rgba(212,174,105,.3)
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column li a,.lOBQuickLinks ul.link-list__list--column li a {
        font-size:calc(13px + (20 - 13)*(100vw - 360px)/(768 - 360)) !important;
        line-height: 1.17;
        margin-bottom: 26px;
        box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08)
    }

    .LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
        font-size: calc(16px + (18 - 16)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks ul.link-list__list--column li a,.lOBQuickLinks ul.link-list__list--column li a {
        margin-bottom:10px
    }
}

.LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
    right: 9px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
        font-size:1.9rem;
        right: 12px;
        margin-top: -1px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
        font-size:2.7rem;
        right: 23px;
        margin-top: -1px
    }
}

.theme-investing .LOBQuickLinks ul.link-list__list--column li a::after,.theme-investing .lOBQuickLinks ul.link-list__list--column li a::after {
    color: #969f6e
}

.theme-protecting .LOBQuickLinks ul.link-list__list--column li a::after,.theme-protecting .lOBQuickLinks ul.link-list__list--column li a::after {
    color: #da9089
}

.theme-financing .LOBQuickLinks ul.link-list__list--column li a::after,.theme-financing .lOBQuickLinks ul.link-list__list--column li a::after {
    color: #d4ae69
}

@media(max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
        top:50% !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks ul.link-list__list--column li a::after,.lOBQuickLinks ul.link-list__list--column li a::after {
        right:10px;
        font-size: 1.2rem
    }
}

.LOBQuickLinks ul.link-list__list--column li a.cta-link,.lOBQuickLinks ul.link-list__list--column li a.cta-link {
    text-transform: uppercase;
    font-family: "pfhandbookpro-bold",sans-serif
}

.theme-investing .LOBQuickLinks ul.link-list__list--column li a.cta-link,.theme-investing .lOBQuickLinks ul.link-list__list--column li a.cta-link {
    color: #969f6e
}

.theme-protecting .LOBQuickLinks ul.link-list__list--column li a.cta-link,.theme-protecting .lOBQuickLinks ul.link-list__list--column li a.cta-link {
    color: #da9089
}

.theme-financing .LOBQuickLinks ul.link-list__list--column li a.cta-link,.theme-financing .lOBQuickLinks ul.link-list__list--column li a.cta-link {
    color: #d4ae69
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a {
    padding: 84px 40px 84px 20px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a {
        padding-top:5px;
        padding-right: 20px;
        padding-bottom: 5px;
        padding-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a {
        padding-top:5px;
        padding-right: 20px;
        padding-bottom: 5px;
        padding-left: 13px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a::after,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child a::after {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a {
    padding: 84px 40px 84px 20px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a {
        padding-top:5px;
        padding-right: 20px;
        padding-bottom: 5px;
        padding-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a {
        padding-top:5px;
        padding-right: 20px;
        padding-bottom: 5px;
        padding-left: 13px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a::after,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(1):first-child~li a::after {
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a {
    padding: 17.5px 20px;
    padding-right: 40px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a {
        padding-top:18px;
        padding-right: 20px;
        padding-bottom: 17px;
        padding-left: 19px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child a {
        padding-top:28px;
        padding-right: 20px;
        padding-bottom: 27px;
        padding-left: 27px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a {
    padding: 17.5px 20px;
    padding-right: 40px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a {
        padding-top:18px;
        padding-right: 20px;
        padding-bottom: 17px;
        padding-left: 19px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(3):first-child~li a {
        padding-top:28px;
        padding-right: 20px;
        padding-bottom: 27px;
        padding-left: 27px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a {
    padding: 10px 40px 10px 20px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a {
        padding-top:5px;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a {
        padding-top:16px;
        padding-right: 67px;
        padding-bottom: 16px;
        padding-left: 33px
    }
}

@media(max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a {
        padding:10px 35px 10px 16px
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a {
        padding:10px 25px 10px 10px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a::after,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child a::after {
    top: 50%
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a {
    padding: 10px 40px 10px 20px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a {
        padding-top:5px;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a {
        padding-top:16px;
        padding-right: 67px;
        padding-bottom: 16px;
        padding-left: 33px
    }
}

.LOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a::after,.lOBQuickLinks ul.link-list__list--column li:nth-last-child(4):first-child~li a::after {
    top: 50%
}

@media(max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column li,.lOBQuickLinks ul.link-list__list--column li {
        width:calc(50% - 13px);
        float: left
    }

    .LOBQuickLinks ul.link-list__list--column li:nth-child(2n+2),.lOBQuickLinks ul.link-list__list--column li:nth-child(2n+2) {
        margin-left: 26px
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks ul.link-list__list--column li,.lOBQuickLinks ul.link-list__list--column li {
        width:calc(50% - 3px)
    }

    .LOBQuickLinks ul.link-list__list--column li:nth-child(2n+2),.lOBQuickLinks ul.link-list__list--column li:nth-child(2n+2) {
        margin-left: 6px
    }
}

.LOBQuickLinks ul.link-list__list--column li::before,.lOBQuickLinks ul.link-list__list--column li::before {
    content: none
}

.LOBQuickLinks ul.link-list__list--column li.link-list__list-download a,.lOBQuickLinks ul.link-list__list--column li.link-list__list-download a {
    border-radius: 2.6px;
    box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08)
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li.link-list__list-download a,.lOBQuickLinks ul.link-list__list--column li.link-list__list-download a {
        border-radius:3px;
        box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08)
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li.link-list__list-download a,.lOBQuickLinks ul.link-list__list--column li.link-list__list-download a {
        border-radius:4px;
        box-shadow: 2px 2px 7px 0 rgba(0,0,0,.08)
    }
}

.LOBQuickLinks ul.link-list__list--column li.link-list__list-download a:after,.lOBQuickLinks ul.link-list__list--column li.link-list__list-download a:after {
    content: "";
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media(max-width: 767px) {
    .LOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span,.lOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span {
        font-size:2.7rem;
        width: auto;
        display: inline;
        font-family: "pfhandbookpro-regular",sans-serif
    }

    .LOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span::before,.lOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span::before {
        content: " "
    }
}

@media(max-width: 575px) {
    .LOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span,.lOBQuickLinks ul.link-list__list--column li.link-list__mobile-inline-description a p span {
        font-size:1.6rem
    }
}

.LOBQuickLinks ul.link-list__list--column li.life-insurance-li a,.lOBQuickLinks ul.link-list__list--column li.life-insurance-li a {
    padding: 17.5px 20px !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.link-list__list--column li.life-insurance-li a,.lOBQuickLinks ul.link-list__list--column li.life-insurance-li a {
        padding-top:21px !important;
        padding-right: 24px !important;
        padding-bottom: 21px !important;
        padding-left: 24px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.link-list__list--column li.life-insurance-li a,.lOBQuickLinks ul.link-list__list--column li.life-insurance-li a {
        padding-top:29px !important;
        padding-right: 33px !important;
        padding-bottom: 29px !important;
        padding-left: 33px !important
    }
}

.LOBQuickLinks ul.link-list__list--column li:last-child a,.lOBQuickLinks ul.link-list__list--column li:last-child a {
    margin-bottom: 0
}

.LOBQuickLinks ul.no-stretch li a,.lOBQuickLinks ul.no-stretch li a {
    padding: 17.5px 30px 17.5px 20px !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks ul.no-stretch li a,.lOBQuickLinks ul.no-stretch li a {
        padding-top:18px !important;
        padding-right: 20px !important;
        padding-bottom: 17px !important;
        padding-left: 19px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks ul.no-stretch li a,.lOBQuickLinks ul.no-stretch li a {
        padding-top:28px !important;
        padding-right: 20px !important;
        padding-bottom: 27px !important;
        padding-left: 27px !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks ul.no-stretch li a,.lOBQuickLinks ul.no-stretch li a {
        padding:9px 34px 9px 10px !important;
        word-break: break-word
    }
}

@media screen and (max-width: 575px) and (-ms-high-contrast:active) {
    .LOBQuickLinks ul.no-stretch li a,.lOBQuickLinks ul.no-stretch li a {
        word-break:break-all
    }
}

.LOBQuickLinks .dashboard__right-link-list-content-title,.lOBQuickLinks .dashboard__right-link-list-content-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.6rem;
    line-height: 19px;
    padding: 20px 10px 0 10px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks .dashboard__right-link-list-content-title,.lOBQuickLinks .dashboard__right-link-list-content-title {
        font-size:1.9rem;
        line-height: 23px;
        padding: 14px 18px 5px 18px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks .dashboard__right-link-list-content-title,.lOBQuickLinks .dashboard__right-link-list-content-title {
        font-size:2.7rem;
        line-height: 31px;
        padding: 20px 25px 11px 25px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks .dashboard__right-link-list-content-title,.lOBQuickLinks .dashboard__right-link-list-content-title {
        font-size:calc(17px + (27 - 17)*(100vw - 360px)/(768 - 360)) !important;
        line-height: 31px
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks .dashboard__right-link-list-content-title,.lOBQuickLinks .dashboard__right-link-list-content-title {
        font-size:1.7rem;
        line-height: 19px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-my-services-content-wrapper ul.link-list__list--column li {
        width:calc(50% - 3px)
    }

    .dashboard__right-my-services-content-wrapper ul.link-list__list--column li:nth-child(2n+2) {
        margin-left: 0
    }
}

@media screen and (max-width: 767px) {
    div[data-id=insurance-advisory] .two-col-list ul.link-list__list--column li {
        width:calc(50% - 3px)
    }

    div[data-id=insurance-advisory] .two-col-list ul.link-list__list--column li:nth-child(2n+2) {
        margin-left: 6px
    }
}

@media screen and (max-width: 767px) {
    div[data-id=insurance-advisory] .two-col-list ul.link-list__list--column.link-list__list--column-with-orange-btn li:nth-child(2n+2) {
        margin-left:0
    }
}

.no-stretch ul li a {
    padding: 17.5px 20px !important
}

@media screen and (min-width: 1200px) {
    .no-stretch ul li a {
        padding-top:18px !important;
        padding-right: 20px !important;
        padding-bottom: 17px !important;
        padding-left: 19px !important
    }
}

@media screen and (min-width: 1680px) {
    .no-stretch ul li a {
        padding-top:28px !important;
        padding-right: 20px !important;
        padding-bottom: 27px !important;
        padding-left: 27px !important
    }
}

.margin-left {
    margin-left: 16px
}

@media screen and (min-width: 1200px) {
    .margin-left {
        padding-left:8px
    }
}

@media screen and (min-width: 1680px) {
    .margin-left {
        padding-left:12px
    }
}

@media(max-width: 767px) {
    .margin-left {
        margin-left:0
    }
}

.dashboard__portfolio-content-wrapper.padding-bottom {
    padding-bottom: 96px
}

@media screen and (min-width: 1200px) {
    .dashboard__portfolio-content-wrapper.padding-bottom {
        padding-bottom:150px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__portfolio-content-wrapper.padding-bottom {
        padding-bottom:160px
    }
}

.dashboard__right-my-services-content-wrapper {
    overflow: hidden;
    padding: 16px 14px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper {
        padding-top:19px;
        padding-right: 16px;
        padding-bottom: 19px;
        padding-left: 16px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper {
        padding-top:26px;
        padding-right: 23px;
        padding-bottom: 26px;
        padding-left: 23px
    }
}

.dashboard__right-my-services-content-wrapper .listsummary-main-wrapper {
    display: inline-block;
    margin: 4px 8px 12px 8px;
    width: calc(50% - 19px)
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper {
        width:372px;
        margin-top: 4px;
        margin-bottom: 19px;
        margin-left: 9px;
        margin-right: 9px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper {
        width:533px;
        margin-top: 6px;
        margin-bottom: 27px;
        margin-left: 11px;
        margin-right: 11px
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper {
        width:calc(100% - 19px);
        margin: 4px 4px 16px 4px
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper {
        width:calc(100% - 11px);
        margin: 4px 4px 9px 4px
    }
}

.dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
    padding: 8px 12px 8px 10px
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
        padding-top:9px;
        padding-right: 14px;
        padding-bottom: 9px;
        padding-left: 12px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static {
        padding-top:13px;
        padding-right: 20px;
        padding-bottom: 13px;
        padding-left: 16px
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static.li-myservices-title .listsummary-head-title_left {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static.li-myservices-title .listsummary-head-title_left {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .listsummary-main-wrapper .listsummary-head .listsummary-head-title-static .listsummary-head-title_left {
        font-size:3.1rem
    }
}

.dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column {
    padding: 12px 0
}

@media screen and (max-width: 767px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column {
        padding:18px 0
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column {
        padding:11px 0
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column {
        padding-bottom:24px;
        padding-top: 0
    }
}

.dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li {
    padding: 4px 12px;
    padding-left: 14px !important;
    max-width: 100%
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li {
        padding-top:7px;
        padding-right: 14px;
        padding-bottom: 7px;
        padding-left: 16px !important
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li {
        padding-top:7px;
        padding-right: 20px;
        padding-bottom: 7px;
        padding-left: 23px !important
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li {
        width:100%;
        padding: 6px 20px;
        padding-left: 20px !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li {
        padding:4px 12px;
        padding-left: 12px !important
    }
}

.dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a {
    margin-bottom: 0;
    padding: 12px 16px !important
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a {
        padding-top:20px !important;
        padding-right: 26px !important;
        padding-bottom: 20px !important;
        padding-left: 26px !important
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a {
        padding-top:14px !important;
        padding-right: 19px !important;
        padding-bottom: 14px !important;
        padding-left: 14px !important
    }
}

.dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a .title,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a .title {
    width: 425px;
    word-break: break-word
}

@media screen and (min-width: 1200px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a .title,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a .title {
        width:277px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a .title,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a .title {
        width:425px
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a .title,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a .title {
        word-break: break-all
    }
}

@media screen and (max-width: 767px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a {
        padding:19px 16px !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__right-my-services-content-wrapper .LOBQuickLinks ul.link-list__list--column li a,.dashboard__right-my-services-content-wrapper .lOBQuickLinks ul.link-list__list--column li a {
        padding:12px 16px !important
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks {
        padding:0 0;
        padding-bottom: 10px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks {
        padding:0 0;
        padding-bottom: 10px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 4px 0
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column {
        padding-top:5px;
        padding-bottom: 5px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column {
        padding-top:15px;
        padding-bottom: 15px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column.reduce-p-lr li {
    padding: 5px 10px !important
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column.reduce-p-lr li:first-child {
    padding-left: 0 !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column.reduce-p-lr li {
        padding-top:6px;
        padding-right: 15px;
        padding-bottom: 6px;
        padding-left: 0 !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column.reduce-p-lr li {
        padding-top:8px;
        padding-right: 19px;
        padding-bottom: 8px;
        padding-left: 0 !important
    }
}

@media(max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column.reduce-p-lr li {
        padding:5px 0 !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
    width: 33.333333%;
    padding: 5px 15px !important;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
        padding:6px 18px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
        padding:8px 25px !important
    }
}

@media(max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li {
        width:100%;
        margin-left: 0
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a {
    margin-bottom: 0;
    padding: 5px 20px 5px 10px !important;
    position: relative;
    min-height: 54px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a {
        padding:5px 20px 5px 10px !important;
        min-height: 65px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a {
        padding:5px 20px 5px 13px !important;
        min-height: 92px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 1.4rem;
    line-height: 1.1;
    margin: 0;
    padding-right: 40px;
    color: #484848;
    margin-right: 40px;
    word-break: break-word
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        top: 32%
    }
}

@media screen and (max-width: 768px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        padding-right:30px
    }
}

@media screen and (max-width: 576px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        line-height:.9
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        padding-right:58px !important
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        padding-right:76px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        padding-right:94px !important
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        word-break: break-all
    }
}

@media screen and (max-width: 1100px) and (min-width:992px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        margin-right:10px
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        font-size:1.7rem;
        padding-right: 26px;
        margin-right: 0
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p {
        font-size:2.4rem;
        padding-right: 36px;
        margin-right: 0
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p sup.ovr-sup {
    font-size: 1.6rem;
    top: -2px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p sup.ovr-sup {
        font-size:1.9rem;
        top: -2px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a p sup.ovr-sup {
        font-size:2.7rem;
        top: -3px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a span {
    width: 100%;
    display: block;
    font-size: 12px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a span {
        font-size:1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a span {
        font-size:calc(1680/992*1.2rem)
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li a sup {
    font-size: 60%
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li::before {
    content: none
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list .default-highlight p {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list .default-highlight p {
        font-size:3.1rem
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
    border: 0 none;
    border-radius: 2.6px !important;
    min-height: 84px;
    padding: 7px 20px 5px 10px !important
}

.theme-investing .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
    border-left: 3px solid #969f6e !important
}

.theme-protecting .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
    border-left: 3px solid #da9089 !important
}

.theme-financing .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
    border-left: 3px solid #d4ae69 !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
        padding:8px 24px 6px 12px;
        border-radius: 3px !important;
        min-height: 103px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
        padding:11px 33px 8px 16px;
        border-radius: 4px !important;
        min-height: 141px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
        max-height:none;
        padding: 25px 16px 25px 16px !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a {
        padding:16px 10px 16px 10px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p {
    position: relative;
    top: 0;
    -ms-transform: translateY(0);
    transform: translateY(0);
    font-size: 1.4rem;
    line-height: 19px;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding-right: 5px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p {
        padding-right:6px;
        padding-top: 7px;
        font-size: 1.7rem;
        line-height: normal
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p {
        padding-right:8px;
        padding-top: 7px;
        font-size: 2.3rem;
        line-height: normal
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p {
        padding-right:65px;
        line-height: 30px !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p {
        padding-right:30px;
        line-height: 19px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p span {
    line-height: 1.33;
    opacity: .7;
    margin-top: 2px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p span {
        margin-top:3px;
        font-size: 1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p span {
        margin-top:3px;
        font-size: 2rem
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a p span {
        line-height:normal;
        opacity: .5;
        font-size: calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important;
        margin-top: 5px;
        max-height: none
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a .desc {
    line-height: 1.33;
    opacity: .7;
    margin-top: 2px;
    color: #000;
    text-overflow: ellipsis;
    overflow: hidden
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a .desc {
        margin-top:3px;
        font-size: 1.4rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a .desc {
        margin-top:3px;
        font-size: 2rem
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a .desc {
        line-height:normal;
        opacity: .5;
        font-size: calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important;
        margin-top: 10px;
        max-height: none;
        width: 88%
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:after {
    font-size: 1.8rem;
    top: 15px !important;
    right: 16px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:after {
        font-size:21px;
        top: 18px !important;
        right: 7px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:after {
        font-size:3rem;
        top: 25px !important;
        right: 10px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:after {
        font-size:2.6rem;
        top: 38px !important;
        right: 16px
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:after {
        font-size:1.8rem;
        top: 23px !important;
        right: 20px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:hover,.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a:hover p {
    background-color: #fff
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list a.default-highlight {
    background-color: #f7a500
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__static-bg-link a {
    border-color: transparent !important
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__static-bg-link a:after {
    color: #000
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__static-bg-link a:hover,.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__static-bg-link a:hover p {
    color: #000;
    background-color: transparent
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__static-bg-link a p {
    color: #000
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a {
    min-height: 90px;
    max-height: 90px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a {
        min-height:108px;
        max-height: 108px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a {
        min-height:151px;
        max-height: 151px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a {
        max-height:none
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a p {
    font-size: 1.4rem;
    line-height: 22px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a p {
        line-height:normal;
        font-size: 1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title a p {
        line-height:normal;
        font-size: 2.4rem
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a {
    padding: 7px 10px 5px 10px !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a {
        padding-top:7px !important;
        padding-bottom: 5px !important;
        padding-left: 10px !important;
        padding-right: 10px !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a {
        padding:7px 10px 10px 10px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a::after {
    display: none
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 0
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p {
        padding-right:0 !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange {
    background-color: #f7a500;
    padding: 6px 21px 6px 4px;
    font-size: 9.6px;
    line-height: 1;
    color: #000;
    width: auto;
    display: inline-block;
    font-family: "pfhandbookpro-bold",sans-serif;
    position: relative;
    opacity: 1;
    margin-top: 0;
    margin-left: 10px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange {
        margin-left:10px;
        font-size: 1.1rem;
        padding-left: 7px;
        padding-bottom: 7px;
        padding-right: 23px;
        padding-top: 7px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange {
        margin-left:10px;
        font-size: 1.6rem;
        padding-left: 7px;
        padding-bottom: 7px;
        padding-right: 23px;
        padding-top: 10px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange:after {
    content: "";
    font-family: "font-icons";
    position: absolute;
    right: 5px;
    font-size: 1rem;
    color: #000;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -1px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange:after {
        margin-top:0;
        right: 5px;
        font-size: 1.1rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange:after {
        margin-top:0;
        right: 5px;
        font-size: 1.1rem
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange {
        font-size:calc(11px + (16 - 11)*(100vw - 360px)/(768 - 360)) !important;
        padding: 9px 21px 8px 10px;
        width: 111px !important
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange:after {
        font-size: calc(10px + (17 - 10)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p .link-list-btn-orange {
        padding:7px 17px 6px 4px;
        width: 69px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p span:not(.link-list-btn-orange) {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-top: 8px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p span:not(.link-list-btn-orange) {
        margin-top:10px
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.link-list__small-title.with-orange-btn a p span:not(.link-list-btn-orange) {
        font-size:1.1rem
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list:only-child a:after {
    top: 15px !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list:only-child a:after {
        top:18px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list:only-child a:after {
        top:25px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a {
    min-height: auto;
    max-height: none;
    padding: 12px 20px 11px 10px !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a {
        padding-top:14px !important;
        padding-right: 24px !important;
        padding-bottom: 13px !important;
        padding-left: 12px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a {
        padding-top:20px !important;
        padding-right: 33px !important;
        padding-bottom: 18px !important;
        padding-left: 16px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a::after {
    top: 20px !important;
    right: 16px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a::after {
        top:24px !important;
        right: 19px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.full-width a::after {
        top:33px !important;
        right: 26px !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a {
    position: relative;
    max-height: 90px;
    min-height: 90px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a {
        min-height:107px;
        max-height: 107px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a {
        min-height:153px;
        max-height: 153px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a {
        max-height:none;
        min-height: auto
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a p .small-text-title {
    font-size: 1.4rem;
    line-height: 22px;
    display: block;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a p .small-text-title {
        font-size:1.7rem;
        line-height: 26px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks ul.link-list__list--column li.link-list__static-list.small-text a p .small-text-title {
        font-size:2.4rem;
        line-height: 36px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #000;
    float: left
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title {
        font-size:3.4rem
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
    margin-right: 16px;
    font-size: 2.1rem;
    font-weight: normal;
    margin-left: 0
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
        font-size:2.5rem;
        margin-right: 19px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
        font-size:2.5rem;
        margin-right: 19px
    }
}

.theme-investing .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
    color: #3e593c
}

.theme-protecting .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
    color: #6a4742
}

.theme-financing .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
    color: #695934
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important;
        margin-top: 5px;
        margin-bottom: 10px
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
        margin-right: 24px;
        font-size: calc(18px + (27 - 18)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title {
        margin-top:0;
        margin-bottom: 0
    }

    .LOBQuickLinks_row3_wrapper .LOBQuickLinks__title span {
        margin-right: 10px
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks__title.margin-left {
    margin-bottom: 0;
    margin-top: 8px
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks__title+* {
    clear: both
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks .no-left-border a {
    border: solid .5px rgba(218,144,137,.3) !important
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks .no-left-border a {
        border:solid .5px rgba(218,144,137,.3) !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks .no-left-border a {
        border:solid .5px rgba(218,144,137,.3) !important
    }
}

.LOBQuickLinks_row3_wrapper .LOBQuickLinks.LOBQuickLinks-v2 ul.link-list__list--column li a p span {
    font-size: 1rem
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks.LOBQuickLinks-v2 ul.link-list__list--column li a p span {
        font-size:1.2rem
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks.LOBQuickLinks-v2 ul.link-list__list--column li a p span {
        font-size:1.6rem
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper .LOBQuickLinks.LOBQuickLinks-v2 ul.link-list__list--column li a p span {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important
    }
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image {
    padding: 10px 10px 20px
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image {
        padding:16px 16px 0 16px
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image {
        padding:12px 12px 0 12px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image {
        padding:30px 10px 40px;
        float: left;
        width: 100%
    }
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a {
    min-height: 42px
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img {
    position: absolute;
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p {
    margin-left: 38px;
    padding-right: 0
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p sup {
    font-size: 1.6rem;
    top: -2px
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a p {
    line-height: 1.04
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a {
        min-height:50px
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img {
        width: 3.2vw;
        height: 3.2vw
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p {
        margin-left: 55px
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p sup {
        font-size: 1.6vw;
        top: -.2vw
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a {
        min-height:70px
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img {
        width: calc(1680/992*3.2rem);
        height: calc(1680/992*3.2rem)
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p {
        margin-left: 61px
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a img+p sup {
        font-size: calc(1680/992*1.6rem);
        top: calc(1680/992*-.2rem)
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a {
        padding:5px 20px 5px 24px !important
    }

    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks ul.link-list__list--column li a:after {
        font-size: 3.2rem
    }
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label {
    font-size: 1.4rem;
    line-height: 1.04;
    color: #484848;
    margin: 8px 0 4px 10px;
    float: left
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label {
        font-size:1.7rem;
        margin: 9px 0 4px 12px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label {
        font-size:2.4rem;
        margin: 13px 0 6px 16px
    }
}

@media screen and (max-width: 767px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label {
        font-size:calc(14px + (28 - 14)*(100vw - 360px)/(768 - 360)) !important;
        display: block;
        float: left;
        width: 100%
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label {
        margin:8px 0 4px 24px
    }
}

.LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label.link-list__list-label-custom {
    margin: 16px 0 8px 10px
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label.link-list__list-label-custom {
        margin:19px 0 10px 12px
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label.link-list__list-label-custom {
        margin:26px 0 14px 16px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .LOBQuickLinks_row3_wrapper.LOBQuickLinks_row3_with_image .LOBQuickLinks .link-list__list-label.link-list__list-label-custom {
        margin:32px 0 16px 24px
    }
}

.dashboard__signpost-item-content-wrapper .LOBQuickLinks_row3_wrapper {
    display: none
}

.dashboard__signpost-item-content-wrapper .LOBQuickLinks_row3_wrapper.active {
    display: block;
    padding-top: 6px
}

@media screen and (min-width: 1200px) {
    .dashboard__signpost-item-content-wrapper .LOBQuickLinks_row3_wrapper.active {
        padding-top:7px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__signpost-item-content-wrapper .LOBQuickLinks_row3_wrapper.active {
        padding-top:10px
    }
}

@media(max-width: 767px) {
    .dashboard__signpost-item-content-wrapper .LOBQuickLinks_row3_wrapper.active {
        padding-left:16px;
        padding-right: 16px;
        padding-bottom: 16px
    }
}

.document-download-notification {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background-color: #edc9c6;
    height: 46px;
    margin-bottom: 10px
}

.document-download-notification span {
    font-size: inherit;
    padding: 0 25px 0 25px
}

.document-download-notification span strong {
    letter-spacing: .04rem
}

@media screen and (max-width: 767px) {
    .document-download-notification span {
        font-size:calc(11px + (18 - 11)*(100vw - 360px)/(768 - 360)) !important;
        padding: 0 20px 0 20px;
        line-height: 1
    }
}

@media screen and (max-width: 390px) {
    .document-download-notification span {
        padding:0 10px 0 8px
    }
}

@media screen and (max-width: 1200px) {
    .document-download-notification {
        margin-top:60px
    }
}

.second-level-list-component .breadcrumbs-component {
    padding-left: 8px;
    margin-bottom: 6px
}

@media screen and (min-width: 1200px) {
    .second-level-list-component .breadcrumbs-component {
        padding-left:16px;
        margin-bottom: 7px
    }
}

@media screen and (min-width: 1680px) {
    .second-level-list-component .breadcrumbs-component {
        padding-left:27px;
        margin-bottom: 10px
    }
}

.second-level-list-component .breadcrumbs-component .heading {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #000;
    margin-top: 5px;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .second-level-list-component .breadcrumbs-component .heading {
        margin-top:6px;
        font-size: 2.4rem
    }
}

@media screen and (min-width: 1680px) {
    .second-level-list-component .breadcrumbs-component .heading {
        margin-top:8px;
        font-size: 3.3rem
    }
}

.second-level-list-component .breadcrumbs-component .heading .icon {
    font-size: 2.2rem;
    line-height: 14px;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 7px;
    float: left
}

@media screen and (min-width: 1200px) {
    .second-level-list-component .breadcrumbs-component .heading .icon {
        font-size:2.2rem;
        line-height: 23px;
        margin-right: 12px;
        margin-top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .second-level-list-component .breadcrumbs-component .heading .icon {
        font-size:3.2rem;
        line-height: 33px;
        margin-right: 17px;
        margin-top: 12px
    }
}

.second-level-list-component .breadcrumbs-component .heading .icon::before {
    font-size: 1.4rem
}

@media screen and (min-width: 1200px) {
    .second-level-list-component .breadcrumbs-component .heading .icon::before {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .second-level-list-component .breadcrumbs-component .heading .icon::before {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-head .listsummary-head-content {
        padding-top:19px;
        padding-bottom: 19px
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-head .listsummary-head-content {
        padding-top:27px;
        padding-bottom: 27px
    }
}

@media screen and (min-width: 1200px) {
    .listsummary-head .listsummary-head-content ul.li-payment-detail-lists {
        padding-top:19px;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1680px) {
    .listsummary-head .listsummary-head-content ul.li-payment-detail-lists {
        padding-top:27px;
        margin-bottom: 0
    }
}

@media screen and (min-width: 1200px) {
    .li-documents-ml .margin-left {
        padding-left:6px
    }
}

@media screen and (min-width: 1680px) {
    .li-documents-ml .margin-left {
        padding-left:5px
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .LOBQuickLinks__title {
        font-size:2rem;
        margin-bottom: 26px !important
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .LOBQuickLinks__title {
        font-size:3.4rem;
        margin-bottom: 45px !important
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .tr-view-more {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .tr-view-more {
        font-size:2.7rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .abc-form.abc-post-login-form .form-group__label {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .abc-form.abc-post-login-form .form-group__label {
        font-size:3.1rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .abc-form.abc-post-login-form .selectize-input input {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .abc-form.abc-post-login-form .selectize-input input {
        font-size:3rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .abc-form.abc-post-login-form .selectize-dropdown .option {
        font-size:1.8rem !important
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .abc-form.abc-post-login-form .selectize-dropdown .option {
        font-size:3rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .abc-form.abc-post-login-form .form-group__placeholder {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .abc-form.abc-post-login-form .form-group__placeholder {
        font-size:3rem
    }
}

@media screen and (min-width: 1200px) {
    .li-past-payment-details .dashboard__cta input {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .li-past-payment-details .dashboard__cta input {
        font-size:2.7rem
    }
}

@media screen and (min-width: 1200px) {
    .li-statement-download .LOBQuickLinks ul.link-list__list--column {
        padding:20px 21px
    }
}

@media screen and (min-width: 1680px) {
    .li-statement-download .LOBQuickLinks ul.link-list__list--column {
        padding:34px 36px
    }
}

@media screen and (min-width: 1200px) {
    .li-statement-download .LOBQuickLinks .pf-mydoc-pd {
        padding-left:25px;
        padding-right: 18px
    }
}

@media screen and (min-width: 1680px) {
    .li-statement-download .LOBQuickLinks .pf-mydoc-pd {
        padding-left:25px;
        padding-right: 18px
    }
}

@media screen and (min-width: 1200px) {
    .LOBQuickLinks .pf-mydoc-pd {
        padding-left:25px !important;
        padding-right: 18px !important
    }
}

@media screen and (min-width: 1680px) {
    .LOBQuickLinks .pf-mydoc-pd {
        padding-left:25px !important;
        padding-right: 18px !important
    }
}

@media screen and (min-width: 1200px) {
    #divLifeInsurance06 .li-statement-download .LOBQuickLinks ul.link-list__list--column {
        padding:20px 21px
    }
}

@media screen and (min-width: 1680px) {
    #divLifeInsurance06 .li-statement-download .LOBQuickLinks ul.link-list__list--column {
        padding:34px 25px
    }
}

@media screen and (min-width: 1200px) {
    #divLifeInsurance06 .li-past-payment-details .dropdown-form {
        padding-left:28px;
        padding-right: 28px
    }
}

@media screen and (min-width: 1680px) {
    #divLifeInsurance06 .li-past-payment-details .dropdown-form {
        padding-left:28px;
        padding-right: 28px
    }
}

.dashboard__summary-card {
    box-shadow: 2px 6px 12px 0 rgba(0,0,0,.08);
    background-color: #fff;
    border-radius: 2px;
    padding: 6px 16px 6px 0;
    margin-bottom: 16px
}

@media screen and (min-width: 1680px) {
    .dashboard__summary-card {
        box-shadow:calc(1680/992*.2rem) calc(1680/992*.6rem) calc(1680/992*1.2rem) 0 rgba(0,0,0,.08)
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__summary-card {
        box-shadow:5px 5px 5px rgba(0,0,0,.08)
    }
}

@media screen and (min-width: 1200px) {
    .dashboard__summary-card {
        padding-top:5px;
        margin-bottom: 13px;
        padding-bottom: 24px;
        padding-right: 23px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__summary-card {
        padding-top:5px;
        margin-bottom: 13px;
        padding-bottom: 24px;
        padding-right: 23px
    }
}

.theme-investing .dashboard__summary-card {
    border-left: 3px solid #969f6e
}

.theme-protecting .dashboard__summary-card {
    border-left: 3px solid #da9089
}

.theme-financing .dashboard__summary-card {
    border-left: 3px solid #d4ae69
}

.dashboard__summary-card__left {
    width: 59.8%;
    float: left;
    padding-right: 5px
}

@media screen and (min-width: 1200px) {
    .dashboard__summary-card__left {
        padding-right:10px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__summary-card__left {
        padding-right:10px
    }
}

@media(max-width: 767px) {
    .dashboard__summary-card__left {
        width:100%;
        padding: 0;
        border: none !important;
        border-bottom: 1px solid #dee2e6 !important
    }
}

.dashboard__summary-card__right {
    width: 40.2%;
    float: left;
    padding-left: 23px
}

@media screen and (min-width: 1200px) {
    .dashboard__summary-card__right {
        padding-left:25px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__summary-card__right {
        padding-left:25px
    }
}

@media(max-width: 767px) {
    .dashboard__summary-card__right {
        width:100%;
        padding: 0
    }
}

.dashboard__summary-card-with-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media(max-width: 767px) {
    .horizontal-listsummary .horizontal-listsummary__container {
        border-right:0 !important
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    width: 100%
}

@media(max-width: 1020px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul {
        display:inline-block
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 25px 26px 13px 22px;
    color: #000 !important;
    padding-right: 0;
    display: -ms-grid;
    display: grid
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li {
        padding-top:43px;
        padding-right: 20px;
        padding-bottom: 11px;
        padding-left: 24px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li {
        padding-top:43px;
        padding-right: 20px;
        padding-bottom: 11px;
        padding-left: 35px
    }
}

@media(max-width: 1020px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li {
        width:50%;
        display: block;
        float: left;
        padding-left: 26px !important
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: 1.15
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li span {
        font-size:1.68rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li span {
        font-size:2.4rem
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p {
    margin-bottom: 0;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 1.3;
    position: relative
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p {
        font-size:2.24rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p {
        font-size:3.2rem
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p .decimal {
    font-size: 1.6rem;
    font-family: "pfhandbookpro-medium",sans-serif
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p .decimal {
        font-size:2.24rem
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p .decimal {
        font-size:3.2rem
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    position: absolute;
    color: #00ba32;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 15px;
    margin-left: 12px;
    font-size: 13px
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        top:10px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        top:13px
    }
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        font-size:1.5rem;
        margin-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        font-size:2.3rem;
        margin-left: 15px
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        top:14px;
        margin-left: 6px
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.positive::after {
        top:8px;
        font-size: 1rem
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "font-icons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    position: absolute;
    color:  #19503e;
    top: 12px;
    margin-left: 12px;
    font-size: 13px
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
        top:8px
    }
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
        font-size:1.5rem;
        margin-left: 10px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
        font-size:2.3rem;
        margin-left: 15px
    }
}

@media(max-width: 767px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
        top:12px;
        margin-left: 6px
    }
}

@media screen and (max-width: 575px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li p.negative::after {
        top:7px;
        font-size: 1rem
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head>* {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-item-align: center;
    align-self: center;
    margin-right: 8px
}

@media screen and (min-width: 1200px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head>* {
        margin-right:9px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head>* {
        margin-right:13px
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head>span {
    opacity: .16;
    cursor: pointer
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-head>span.active {
    color: #788158;
    opacity: 1
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.active {
    display: block !important
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent #788158 transparent;
    position: absolute;
    top: 15px;
    margin-left: 24px
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after {
        margin-left:8px;
        top: 11px;
        border-width: 0 7px 8px 7px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.positive p:after {
        margin-left:12px;
        top: 15px;
        border-width: 0 7px 8px 7px
    }
}

.horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 7px;
    border-color:  #19503e transparent transparent transparent;
    position: absolute;
    top: 15px;
    margin-left: 24px
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
        margin-left:8px;
        top: 11px;
        border-width: 0 7px 8px 7px
    }
}

@media screen and (min-width: 1680px) {
    .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li .listsummary-switcher-content .listsummary-switcher-data.negative p:after {
        margin-left:12px;
        top: 15px;
        border-width: 0 7px 8px 7px
    }
}

.switch {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
    margin: 0
}

@media screen and (min-width: 1200px) {
    .switch {
        width:28px;
        height: 14px
    }
}

@media screen and (min-width: 1680px) {
    .switch {
        width:33px;
        height: 18px
    }
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: .4s
}

.switch .slider.round {
    border-radius: 5px;
    border: solid .5px #788158
}

@media screen and (min-width: 1200px) {
    .switch .slider.round {
        border-radius:10px;
        border-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .switch .slider.round {
        border-radius:10px;
        border-width: 1px
    }
}

.switch .slider.round:before {
    border-radius: 50%
}

.switch .slider::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    left: 1px;
    bottom: 1px;
    background-color: #788158;
    transition: .4s
}

@media screen and (min-width: 1200px) {
    .switch .slider::before {
        bottom:1px;
        left: 1px;
        width: 10px;
        height: 10px
    }
}

@media screen and (min-width: 1680px) {
    .switch .slider::before {
        bottom:2px;
        left: 3px;
        width: 12px;
        height: 12px
    }
}

@media(max-width: 767px) {
    .switch .slider::before {
        left:2px;
        bottom: 1px
    }
}

@media screen and (max-width: 575px) {
    .switch .slider::before {
        left:2px;
        bottom: 2px
    }
}

.switch input[type=checkbox]:checked+.slider {
    background-color: #fff
}

.switch input[type=checkbox]:checked+.slider::before {
    -ms-transform: translateX(18px);
    transform: translateX(11px)
}

@media screen and (min-width: 1200px) {
    .switch input[type=checkbox]:checked+.slider::before {
        -ms-transform:translateX(14px);
        transform: translateX(14px)
    }
}

@media screen and (min-width: 1680px) {
    .switch input[type=checkbox]:checked+.slider::before {
        -ms-transform:translateX(15px);
        transform: translateX(15px)
    }
}

@media(max-width: 767px) {
    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__summary-card,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__summary-card {
        padding-left:16px;
        padding-bottom: 16px
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__summary-card.dashboard__portfolio-summary-card-by-scheme {
        padding-left: 0
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__portfolio-horizontal-summary ul li,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__portfolio-horizontal-summary ul li {
        padding-top: 9px
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__portfolio-horizontal-summary ul li:nth-child(2n+1),.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__portfolio-horizontal-summary ul li:nth-child(2n+1) {
        clear: both
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li,.dashboard__bottom-wrapper[data-id='mutual-fund'] .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li {
        padding: 8px 26px 8px 0 !important
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li#gainLossPercentage,.dashboard__bottom-wrapper[data-id='mutual-fund'] .horizontal-listsummary .horizontal-listsummary__container .horizontal-listsummary-row ul li#gainLossPercentage {
        padding: 8px 6px 8px 0 !important
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__summary-card__right.border-left,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__summary-card__right.border-left {
        border-left: none !important
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__summary-card__right .link-list__list--column li a,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__summary-card__right .link-list__list--column li a {
        height: 60px;
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

@media screen and (max-width: 575px) {
    .dashboard__bottom-wrapper[data-id='mutual-funds'] .component-basic-portfolio-by-scheme .switch .slider:before,.dashboard__bottom-wrapper[data-id='mutual-fund'] .component-basic-portfolio-by-scheme .switch .slider:before {
        left:3px;
        bottom: 1px
    }

    .dashboard__bottom-wrapper[data-id='mutual-funds'] .dashboard__summary-card__right .link-list__list--column li a,.dashboard__bottom-wrapper[data-id='mutual-fund'] .dashboard__summary-card__right .link-list__list--column li a {
        height: 48px;
        -ms-flex-align: center;
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        padding-top: 10px !important;
        padding-bottom: 10px !important
    }
}

.summaryListItemWrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

@media screen and (max-width: 575px) {
    .summaryListItemWrapper.pt-5 {
        padding-top:1rem !important
    }
}

@media(max-width: 767px) {
    .content__policy-summary-main-wrapper .summaryListItemWrapper.summary-list-item ul li {
        padding:6px 0 8px 0 !important
    }

    .dashboard__summary-card .content__policy-summary-main-wrapper .summary-list-item ul li {
        padding: 6px 6px 8px 0 !important
    }
}

.summary-list-item-content,.loan-eligibility-content {
    -ms-flex-order: 3;
    order: 3
}

@media(max-width: 767px) {
    .summary-list-item-content,.loan-eligibility-content {
        -ms-flex-order:2;
        order: 2
    }
}

.loan-eligibility-content span {
    background-color: #f8e9e8;
    margin: 10px 0 25px;
    padding: 4px 5px 4px 4px;
    border-radius: 15px;
    height: 34px;
    font-size: 2.4rem;
    font-family: "pfhandbookpro-medium",sans-serif;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

@media(max-width: 767px) {
    .loan-eligibility-content span {
        margin:10px 0 25px;
        padding: 14px 23px 14px 24px;
        border-radius: 42px;
        height: auto;
        line-height: 1.3
    }
}

@media screen and (max-width: 767px) {
    .loan-eligibility-content span {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .loan-eligibility-content span {
        margin:10px 0 12px;
        padding: 9px 26px 9px 26px;
        border-radius: 26px;
        line-height: 1.2
    }
}

.summary-list-item-cta {
    position: absolute;
    right: 18px;
    top: 9px
}

@media screen and (min-width: 1200px) {
    .summary-list-item-cta {
        top:21px;
        right: 21px
    }
}

@media screen and (min-width: 1680px) {
    .summary-list-item-cta {
        top:43px;
        right: 30px
    }
}

@media(max-width: 767px) {
    .summary-list-item-cta {
        position:relative;
        right: 0;
        top: 0;
        -ms-flex-order: 3;
        order: 3;
        text-align: right;
        margin-top: 7px;
        margin-bottom: 10px
    }
}

.summary-list-item-cta .btn-orange {
    background-color: #f7a500;
    padding: 4px 23px 4px;
    font-size: 14.4px;
    font-family: "pfhandbookpro-bold",sans-serif;
    border-bottom: none;
    margin-left: 30px;
    white-space: nowrap;
    height: 30px;
    width: 120px
}

@media screen and (min-width: 1200px) {
    .summary-list-item-cta .btn-orange {
        width:36px;
        height: 36px;
        margin-left: 36px;
        font-size: 1.7rem;
        padding: 4px 27px 4px 27px
    }
}

@media screen and (min-width: 1680px) {
    .summary-list-item-cta .btn-orange {
        width:50px;
        height: 50px;
        margin-left: 50px;
        font-size: 2.4rem;
        padding: 6px 38px 6px 38px
    }
}

.summary-list-item-cta .btn-orange:hover,.summary-list-item-cta .btn-orange:active,.summary-list-item-cta .btn-orange:focus {
    color: #000
}

@media(max-width: 767px) {
    .summary-list-item-cta .btn-orange {
        height:auto;
        width: auto
    }
}

@media screen and (max-width: 767px) {
    .summary-list-item-cta .btn-orange {
        font-size:calc(14px + (22 - 14)*(100vw - 360px)/(768 - 360)) !important;
        padding: 8px 35px 8px
    }
}

@media screen and (max-width: 575px) {
    .summary-list-item-cta .btn-orange {
        padding:5px 23px 5px
    }
}

.summary-list-item-title-small {
    font-size: calc(9px + (14 - 9)*(100vw - 360px)/(768 - 360)) !important;
    color: #000;
    font-family: "pfhandbookpro-light",sans-serif
}

.content__policy-summary-main-wrapper {
    padding-bottom: 0;
    width: 100%
}

.content__policy-summary-main-wrapper .summary-list-item {
    border-bottom: 1px solid #dee2e6;
    padding: 9px 18px 0 18px;
    overflow: hidden
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details {
        margin-bottom:50px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) {
        padding-left:20px;
        padding-top: 9px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) {
        padding-left:27px;
        padding-top: 18px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) span {
        margin-bottom:5px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) span {
        margin-bottom:9px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) p {
        margin-bottom:0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+1) p {
        margin-bottom:18px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) {
        padding-left:1px;
        padding-top: 8px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) {
        padding-left:1px;
        padding-top: 18px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) span {
        margin-bottom:7px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) span {
        margin-bottom:9px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) p {
        margin-bottom:0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details ul li:nth-child(3n+2) p {
        margin-bottom:18px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist {
        padding-bottom:8px !important;
        margin-bottom: 52px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist h3 {
        font-size:2.9rem;
        margin-bottom: 23px;
        margin-top: 0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist h3 {
        font-size:4.1rem;
        margin-bottom: 23px;
        margin-top: 0
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist h3 span {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist h3 span {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+1) {
        padding-right:20px;
        padding-left: 20px;
        padding-top: 0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+1) {
        padding-right:20px;
        padding-left: 26px;
        padding-top: 7px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+2) {
        padding-left:1px;
        padding-bottom: 11px;
        padding-right: 0;
        padding-top: 0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+2) {
        padding-left:1px;
        padding-bottom: 11px;
        padding-right: 0;
        padding-top: 9px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+3) {
        padding-left:31px;
        padding-bottom: 11px;
        padding-right: 0;
        padding-top: 0
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li:nth-child(3n+3) {
        padding-left:45px;
        padding-bottom: 11px;
        padding-right: 0;
        padding-top: 9px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li span {
        margin-bottom:4px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li span {
        margin-bottom:8px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li p {
        margin-bottom:34px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-fund-details-fundlist ul li p {
        margin-bottom:45px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-annuity-details ul li:nth-child(3n+3) {
        padding-left:49px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-annuity-details ul li:nth-child(3n+3) {
        padding-left:70px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details {
        padding-top:10px !important
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details {
        padding-top:25px !important
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details h3 {
        font-size:2.9rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details h3 {
        font-size:4.1rem
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details .loan-eligibility-content span {
        font-size:2.2rem;
        height: 40px;
        border-radius: 18px;
        padding: 4px 20px 4px 20px;
        margin-top: 12px;
        margin-bottom: 30px;
        -ms-flex-pack: left;
        justify-content: left
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.li-loan-details .loan-eligibility-content span {
        font-size:3.1rem;
        height: 58px;
        border-radius: 18px;
        padding: 4px 20px 4px 20px;
        margin-top: 12px;
        margin-bottom: 30px;
        -ms-flex-pack: left;
        justify-content: left
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item {
        padding-top:10px;
        padding-right: 21px;
        padding-bottom: 10px !important;
        padding-left: 21px;
        border-bottom-width: 2px;
        margin-bottom: 9px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item {
        padding-top:15px;
        padding-right: 30px;
        padding-bottom: 15px !important;
        padding-left: 30px;
        border-bottom-width: 2px;
        margin-bottom: 10px
    }
}

@media(max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item {
        padding-top:15px;
        padding-bottom: 15px
    }
}

.content__policy-summary-main-wrapper .summary-list-item h3 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 10px
}

.theme-investing .content__policy-summary-main-wrapper .summary-list-item h3 {
    color: #969f6e
}

.theme-protecting .content__policy-summary-main-wrapper .summary-list-item h3 {
    color: #da9089
}

.theme-financing .content__policy-summary-main-wrapper .summary-list-item h3 {
    color: #d4ae69
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item h3 {
        font-size:2.9rem;
        margin-bottom: 8px;
        margin-top: 15px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item h3 {
        font-size:4.1rem;
        margin-bottom: 15px;
        margin-top: 13px
    }
}

@media screen and (max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item h3 {
        font-size:calc(15px + (24 - 15)*(100vw - 360px)/(768 - 360)) !important
    }
}

@media screen and (max-width: 575px) {
    .content__policy-summary-main-wrapper .summary-list-item h3 {
        font-size:1.5rem
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.content__policy-summary-main-wrapper .summary-list-item ul li {
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    width: 33.33%
}

@media(max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li {
        width:50% !important;
        padding: 19px 25px !important
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li {
        padding:14px 0 14px 0;
        margin-bottom: 14px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li {
        padding:14px 0 14px 0;
        margin-bottom: 20px
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li::before {
    content: none
}

.content__policy-summary-main-wrapper .summary-list-item ul li .summary-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.content__policy-summary-main-wrapper .summary-list-item ul li .summary-content .colored {
    text-transform: lowercase
}

.content__policy-summary-main-wrapper .summary-list-item ul li .summary-content .colored::first-letter {
    text-transform: uppercase
}

.theme-investing .content__policy-summary-main-wrapper .summary-list-item ul li .summary-content .colored {
    color: #969f6e !important
}

.theme-protecting .content__policy-summary-main-wrapper .summary-list-item ul li .summary-content .colored {
    color: #da9089 !important
}

.theme-financing .content__policy-summary-main-wrapper .summary-list-item ul li .summary-content .colored {
    color: #d4ae69 !important
}

.content__policy-summary-main-wrapper .summary-list-item ul li span {
    font-size: 1.4rem;
    font-family: "pfhandbookpro-light",sans-serif;
    line-height: normal;
    margin-bottom: 2px;
    color: #000
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span {
        margin-bottom:8px;
        font-size: 1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span {
        margin-bottom:13px;
        font-size: 2.4rem
    }
}

@media screen and (max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span {
        font-size:calc(13px + (20 - 13)*(100vw - 360px)/(768 - 360)) !important
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
    position: relative;
    top: -5px
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
        top:-6px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
        top:-8px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
        top:-1px;
        left: 33px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
        top:-4px;
        left: 45px
    }
}

@media screen and (max-width: 575px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li span.title-tag {
        top:-3px
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li p,.content__policy-summary-main-wrapper .summary-list-item ul li span.pascal-case {
    margin-bottom: 15px;
    font-size: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-medium",sans-serif;
    line-height: 1.2;
    word-break: break-word
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li p,.content__policy-summary-main-wrapper .summary-list-item ul li span.pascal-case {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li p,.content__policy-summary-main-wrapper .summary-list-item ul li span.pascal-case {
        font-size:3.2rem
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .content__policy-summary-main-wrapper .summary-list-item ul li p,.content__policy-summary-main-wrapper .summary-list-item ul li span.pascal-case {
        word-break: break-all
    }
}

@media screen and (max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li p,.content__policy-summary-main-wrapper .summary-list-item ul li span.pascal-case {
        font-size:calc(19px + (30 - 19)*(100vw - 360px)/(768 - 360)) !important
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+1) {
    width: 40%;
    padding-right: 35px
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+1) {
        padding-right:20px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+1) {
        padding-right:20px
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+2) {
    width: 30%
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+2) {
        padding-left:4px;
        padding-bottom: 24px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+2) {
        padding-left:5px;
        padding-bottom: 13px;
        padding-right: 0;
        padding-top: 9px
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+3) {
    width: 30%
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+3) {
        padding-left:22px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul li:nth-child(3n+3) {
        padding-left:32px;
        padding-top: 11px;
        padding-bottom: 10px
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped .summary-content h3 {
        font-size:2.2rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped .summary-content h3 {
        font-size:3.2rem
    }
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped .summary-content span i {
        font-size:1.3rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped .summary-content span i {
        font-size:1.8rem
    }
}

@media screen and (min-width: 768px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped li:nth-child(6n-2) {
        position:relative
    }

    .content__policy-summary-main-wrapper .summary-list-item ul.striped li:nth-child(6n-2)::before {
        content: "";
        background-color: rgba(152,166,184,.1);
        position: absolute;
        top: 0;
        left: -18px;
        right: -18px;
        height: 100%;
        width: 9999px
    }
}

@media screen and (max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item ul.striped li:nth-child(4n-1) {
        position:relative
    }

    .content__policy-summary-main-wrapper .summary-list-item ul.striped li:nth-child(4n-1)::before {
        content: "";
        background-color: rgba(152,166,184,.1);
        position: absolute;
        top: 0;
        left: -18px;
        right: -18px;
        height: 100%;
        width: 9999px
    }
}

.content__policy-summary-main-wrapper .summary-list-item ul.striped li p {
    margin-bottom: 0
}

.content__policy-summary-main-wrapper .summary-list-item:last-child {
    border: none
}

.content__policy-summary-main-wrapper .summary-list-item.equal_width ul li {
    padding-right: 10px;
    width: 33.33%
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item.equal_width ul li {
        padding-right:12px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item.equal_width ul li {
        padding-right:16px
    }
}

.content__policy-summary-main-wrapper .summary-list-item .dropdown-lbl {
    font-size: 1.4rem;
    line-height: 1.15;
    margin-bottom: 8px
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item .dropdown-lbl {
        margin-bottom:9px;
        font-size: 1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item .dropdown-lbl {
        margin-bottom:13px;
        font-size: 2.4rem
    }
}

.content__policy-summary-main-wrapper .summary-list-item .ellipses-txt {
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 8px 0 0
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item .ellipses-txt {
        margin-right:9px;
        max-width: 192px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item .ellipses-txt {
        margin-right:13px;
        max-width: 268px
    }
}

@media(max-width: 767px) {
    .content__policy-summary-main-wrapper .summary-list-item .ellipses-txt {
        white-space:nowrap;
        max-width: 150px
    }
}

.content__policy-summary-main-wrapper .summary-list-item .ellipses-txt+.btn-tooltip {
    display: inline-block;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 15px;
    border-radius: 50%;
    border: 1px solid;
    line-height: 10px;
    font-size: 10px;
    vertical-align: middle;
    color: #6a4742
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .summary-list-item .ellipses-txt+.btn-tooltip {
        width:14px;
        height: 14px;
        line-height: 12px;
        font-size: 1.2rem;
        border-width: 1px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .summary-list-item .ellipses-txt+.btn-tooltip {
        width:20px;
        height: 20px;
        line-height: 16px;
        font-size: 1.6rem;
        border-width: 1px
    }
}

.content__policy-summary-main-wrapper .padding-low .summary-list-item {
    padding: 0;
    padding-left: 12px
}

@media screen and (min-width: 1200px) {
    .content__policy-summary-main-wrapper .padding-low .summary-list-item {
        padding-left:21px
    }
}

@media screen and (min-width: 1680px) {
    .content__policy-summary-main-wrapper .padding-low .summary-list-item {
        padding-left:21px
    }
}

.dashboard__summary-card-head-content p {
    font-family: "pfhandbookpro-light",sans-serif;
    margin-bottom: 20px;
    color: #000
}

@media screen and (min-width: 1200px) {
    .dashboard__summary-card-head-content p {
        margin-bottom:24px
    }
}

@media screen and (min-width: 1680px) {
    .dashboard__summary-card-head-content p {
        margin-bottom:33px
    }
}

.dashboard__summary-card-head-content p span {
    font-family: "pfhandbookpro-bold",sans-serif
}

.no-padding {
    padding: 0 !important
}

.no-padding.dashboard__summary-card {
    padding: 0
}

.margin-bottom-0 {
    margin-bottom: 0
}

.margin-bottom-0.dashboard__summary-card {
    margin-bottom: 0
}

@media screen and (min-width: 1200px) {
    .sme-select-bank {
        font-size:1.7rem !important;
        margin-bottom: 9px !important
    }
}

@media screen and (min-width: 1680px) {
    .sme-select-bank {
        font-size:2.4rem !important;
        margin-bottom: 9px !important
    }
}

.main-font .fontsize {
    font-size: 1.4rem !important
}

.ellipse-box .ellipses-txt {
    max-width: 200px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 8px 0 0
}

@media screen and (min-width: 1200px) {
    .ellipse-box .ellipses-txt {
        margin-right:9px;
        max-width: 192px
    }
}

@media screen and (min-width: 1680px) {
    .ellipse-box .ellipses-txt {
        max-width:268px;
        margin-right: 13px
    }
}

@media(max-width: 767px) {
    .ellipse-box .ellipses-txt {
        white-space:normal
    }
}

.ellipse-box .ellipses-txt+.btn-tooltip {
    display: inline-block;
    width: 12px;
    height: 12px;
    text-align: center;
    line-height: 15px;
    border-radius: 50%;
    border: 1px solid;
    line-height: 10px;
    font-size: 10px;
    vertical-align: middle;
    color: #6a4742
}

@media screen and (min-width: 1200px) {
    .ellipse-box .ellipses-txt+.btn-tooltip {
        border-width:1px;
        width: 24px;
        height: 24px;
        margin-left: 9px;
        font-size: 1.4rem;
        line-height: 22px
    }
}

@media screen and (min-width: 1680px) {
    .ellipse-box .ellipses-txt+.btn-tooltip {
        border-width:1px;
        width: 24px;
        height: 24px;
        margin-left: 9px;
        font-size: 1.4rem;
        line-height: 22px
    }
}

@media(max-width: 767px) {
    .award {
        text-align:center
    }
}

.award__img {
    max-width: 18rem;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .award__img {
        border-radius:50%;
        border: 10px solid #fff
    }
}

.award__title {
    font-size: 3.2rem;
    color: #000;
    padding-right: 10px
}

@media(max-width: 767px) {
    .award__title {
        display:none;
        font-size: 2.2rem;
        line-height: 2.4rem
    }
}

.award__desc {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .award__desc {
        display:none;
        font-size: 1.8rem;
        line-height: 2.2rem
    }
}

.award__designation {
    font-size: 2.4rem;
    line-height: 2.8rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1.4rem;
    display: block;
    font-weight: 300
}

@media(max-width: 767px) {
    .award__designation {
        font-size:1.8rem;
        line-height: 2.2rem
    }
}

.award-list {
    list-style: none
}

.award-list .slick-prev,.award-list .slick-next {
    position: relative
}

@media(max-width: 767px) {
    .award-list .slick-slide {
        margin:0 -5%;
        position: relative;
        z-index: 100
    }

    .award-list .slick-slide .award {
        -ms-transform: scale(.65);
        transform: scale(.65);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        opacity: .3
    }

    .award-list .slick-center {
        z-index: 101
    }

    .award-list .slick-center .award {
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    .award-list .slick-center .award__title {
        display: block
    }

    .award-list .slick-center .award__desc {
        display: block
    }
}

@media(max-width: 767px) {
    .slick-nav--award {
        display:none
    }
}

.award-list-wrap--testimonials .award {
    text-align: center
}

.award-list-wrap--testimonials .award__img {
    margin: 0 auto 3rem
}

.award-list-wrap--testimonials .award__desc {
    text-align: center;
    margin: 0 -8rem;
    padding: 0 1.5rem
}

@media(max-width: 767px) {
    .award-list-wrap--testimonials .award__desc {
        margin:0 -4rem
    }
}

.award-list-wrap--testimonials .award-list .slick-slide {
    opacity: .3;
    transition: all .3s ease
}

.award-list-wrap--testimonials .award-list .slick-slide .award__title,.award-list-wrap--testimonials .award-list .slick-slide .award__desc,.award-list-wrap--testimonials .award-list .slick-slide .award__designation {
    opacity: 0;
    transition: all .3s ease
}

.award-list-wrap--testimonials .award-list .slick-slide.slick-center {
    opacity: 1
}

.award-list-wrap--testimonials .award-list .slick-slide.slick-center .award__title,.award-list-wrap--testimonials .award-list .slick-slide.slick-center .award__desc,.award-list-wrap--testimonials .award-list .slick-slide.slick-center .award__designation {
    opacity: 1
}

.state__icon {
    font-size: 8rem;
    line-height: 8rem;
    display: block
}

@media(max-width: 767px) {
    .state__icon {
        font-size:5rem;
        line-height: 5rem
    }
}

.state__img {
    max-width: 8rem;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .state__img {
        max-width:5rem
    }
}

.state__value {
    font-size: 4.4rem;
    line-height: 4.4rem;
    font-weight: 600;
    display: block
}

@media(max-width: 767px) {
    .state__value {
        font-size:3.2rem;
        line-height: 3.2rem
    }
}

.state__desc {
    font-size: 2rem;
    display: block
}

@media(max-width: 767px) {
    .state__desc {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.value__unit {
    display: inline-block;
    vertical-align: top;
    font-size: 2.4rem;
    line-height: 2.4rem
}

.state-list {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.state-list__item {
    width: 25%;
    padding-right: 5rem
}

@media(max-width: 1020px) {
    .state-list__item {
        text-align:center;
        padding-right: 0
    }
}

@media(max-width: 767px) {
    .state-list__item {
        width:50%;
        margin-bottom: 2rem
    }
}

@media(max-width: 1020px) {
    .state-list__item--xs-center {
        text-align:left
    }
}

.on-page-editor .state-list .scLooseFrameZone.scEnabledChrome {
    width: 25%
}

.on-page-editor .state-list .scLooseFrameZone.scEnabledChrome .state-list__item {
    width: 100%
}

.ad-banner {
    position: relative
}

@media(max-width: 1020px) {
    .ad-banner__slider-wrap {
        padding:0 1.6rem
    }
}

.ad-banner__img {
    aspect-ratio: 700/128
}

@media(max-width: 767px) {
    .ad-banner__img {
        display:none
    }
}

.ad-banner__img--mob {
    aspect-ratio: 9/5;
    display: none
}

@media(max-width: 767px) {
    .ad-banner__img--mob {
        display:block;
        width: 100%
    }
}

.ad-banner__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.ad-banner__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .ad-banner__title {
        font-size:3.2rem;
        line-height: 3.4rem;
        margin-bottom: 1.6rem;
        padding-left: 1.5rem
    }
}

@media(max-width: 1020px) {
    .ad-banner__title {
        padding:0 1.5rem
    }
}

.ad-banner--slider {
    max-width: 119.6rem;
    margin: auto
}

.ad-banner--slider .ad-banner__img-wrap {
    position: relative
}

@media(max-width: 767px) {
    .ad-banner--slider .slick-slide img.ad-banner__img {
        display:none
    }
}

.ad-banner--slider .slick-slide img.ad-banner__img--mob {
    display: none
}

@media(max-width: 767px) {
    .ad-banner--slider .slick-slide img.ad-banner__img--mob {
        display:block;
        width: 100%
    }
}

@media screen and (max-width: 1025px) {
    .ad-banner--slider .slick-nav--ad-banner {
        display:none
    }
}

.insurance-card-wrap {
    display: inline-block;
    perspective: 1000px;
    transform-style: preserve-3d;
    width: 35.2rem;
    height: 34.2rem
}

.insurance-card-wrap .insurance-card {
    cursor: pointer;
    transition: .6s;
    transform-style: preserve-3d;
    position: relative
}

.insurance-card-wrap .insurance-card.is-flipped .insurance-card__face--front {
    transform: rotateY(180deg)
}

.insurance-card-wrap .insurance-card.is-flipped .insurance-card__face--back {
    transform: rotateY(0deg)
}

.insurance-card-wrap .insurance-card__face {
    position: absolute;
    width: 100%;
    height: 34.2rem;
    left: 0;
    top: 0;
    font-size: 4rem;
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(107,72,66,.24);
    border: solid 1px #cdcece;
    backface-visibility: hidden;
    transition: .6s;
    transform-style: preserve-3d
}

.insurance-card-wrap .insurance-card__face--back {
    transform: rotateY(-180deg);
    padding: 2.4rem
}

.insurance-card-wrap .insurance-card__face--back .button-link {
    position: absolute;
    bottom: 2.4rem;
    left: 2.4rem;
    padding: 0
}

.insurance-card-wrap .insurance-card__face--front {
    z-index: 2;
    transform: rotateY(0deg)
}

.insurance-card-wrap .insurance-card__icon-wrap {
    padding: 1rem 1rem 0;
    background-image: linear-gradient(to bottom,rgba(255,255,255,0),rgba(179,118,113,.16) 100%)
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card__icon-wrap {
        height:15rem;
        padding: 1.6rem 1.6rem 0
    }
}

.insurance-card-wrap .insurance-card__icon-wrap .icon {
    font-size: 11rem;
    color: #b37671
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card__icon-wrap .icon {
        font-size:9.8rem
    }
}

.insurance-card-wrap .insurance-card__icon-wrap .icon:before {
    line-height: .5
}

@media(max-width: 767px) {
    .insurance-card-wrap .insurance-card__icon-wrap .icon:before {
        line-height:.7
    }
}

.insurance-card-wrap .insurance-card__icon-img {
    max-width: 11rem
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card__icon-img {
        max-width:9.8rem
    }
}

.insurance-card-wrap .insurance-card__title {
    font-size: 2.2rem;
    line-height: 2.4rem;
    padding: 1rem 1rem 0;
    color: #000;
    font-family: "pfhandbookpro-light",sans-serif
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card__title {
        font-size:2rem;
        padding: 1.6rem 1.6rem 0
    }
}

.insurance-card-wrap .insurance-card .btn-wrap {
    padding: 1rem 1rem
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card .btn-wrap {
        padding:1.6rem
    }
}

.insurance-card-wrap .insurance-card .btn-wrap .button-brown {
    min-width: 0
}

@media(max-width: 1020px) {
    .insurance-card-wrap .insurance-card .btn-wrap .button-link {
        padding:1.6rem 0 0
    }
}

.on-page-editor .insurance-card-wrap {
    width: 100%
}

.plan-counter {
    text-align: right
}

.plan-counter__count {
    font-size: 3.2rem;
    line-height: 3.2rem;
    font-weight: 600;
    color: #000;
    display: block
}

@media(max-width: 1020px) {
    .plan-counter__count {
        font-size:2.8rem;
        line-height: 2.8rem
    }
}

.plan-counter__name {
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: #000;
    text-transform: uppercase;
    display: block
}

@media(max-width: 1020px) {
    .plan-counter__name {
        font-size:1.2rem;
        line-height: 1.2rem
    }
}

.plan-list {
    max-height: 19rem;
    overflow: auto;
    padding: 0
}

.plan-list__item {
    position: relative
}

.plan-list__item a {
    font-size: 1.8rem;
    color: #000;
    padding: 1rem 0;
    display: block
}

.plan-list__item:not(:last-child) {
    border-bottom: 1px solid #f1f3f6
}

.plan-list__item:last-child {
    padding-bottom: 1rem
}

.plan-list__item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "font-icons";
    font-size: 1.8rem;
    color: #6a4742
}

.plan-list__item:hover:after {
    color:  #19503e
}

@media(max-width: 1020px) {
    .insurance-list {
        margin:0 -15px;
        padding: 0 1.6rem
    }
}

.insurance-list .slick-slide {
    margin: 0 1.6rem
}

.insurance-list .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 1020px) {
    .insurance-list .slick-list {
        padding:0 20% 0 0;
        margin: 0
    }
}

.insurance-list-wrap {
    max-width: 119.6rem;
    margin: auto;
    padding: 2% 0
}

@media(max-width: 767px) {
    .insurance-list-wrap {
        padding:4% 0 !important
    }
}

.insurance-list-wrap .slick-nav--insurance {
    margin-bottom: unset
}

@media(max-width: 1020px) {
    .insurance-list-wrap.revamp-digicls {
        padding-left:16px !important;
        padding-right: 16px !important
    }
}

@media(max-width: 1020px) {
    .slick-nav--insurance {
        display:none
    }
}

.video-blog {
    width: 100%
}

.video-blog--v2 {
    display: -ms-flexbox;
    display: flex
}

@media(max-width: 1020px) {
    .video-blog--v2 {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

@media(max-width: 1020px) {
    .video-blog--v2 .video-blog__icon {
        font-size:6rem
    }
}

.video-blog--v2 .video-blog__desc {
    height: auto
}

.video-blog__img-wrap {
    margin-bottom: 2.4rem;
    position: relative;
    width: 100%
}

.video-blog__img-wrap--novideo .video-blog__icon {
    display: none
}

.video-blog__img-wrap:hover .video-blog__icon {
    color:  #19503e
}

@media(max-width: 1020px) {
    .video-blog__img-wrap {
        margin-bottom:1.5rem
    }
}

.video-blog__img-wrap--v2 {
    margin-bottom: 0;
    width: 50%
}

@media(max-width: 1020px) {
    .video-blog__img-wrap--v2 {
        width:100%
    }

    .video-blog__img-wrap--v2 .video-blog__iframe {
        height: 36rem
    }
}

.video-blog__iframe {
    width: 100%;
    height: 36rem;
    display: none
}

@media(max-width: 1020px) {
    .video-blog__iframe {
        height:24rem
    }
}

.video-blog__icon {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    font-size: 6.4rem
}

@media(max-width: 1020px) {
    .video-blog__icon {
        font-size:3.2rem
    }
}

.video-blog__img {
    width: 100%
}

.video-blog__title a {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block
}

.video-blog__title a:hover {
    color:  #19503e
}

@media(max-width: 1020px) {
    .video-blog__title a {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.video-blog__title--v2 {
    width: 70%
}

.video-blog__title--v2 a {
    font-size: 4.4rem;
    line-height: 4.4rem;
    white-space: normal
}

@media(max-width: 1020px) {
    .video-blog__title--v2 a {
        font-size:3.2rem;
        line-height: 3.2rem
    }
}

@media(max-width: 1020px) {
    .video-blog__title--v2 {
        width:100%
    }
}

.video-blog__desc {
    height: 5.6rem
}

.video-blog__desc p {
    font-size: 2.2rem;
    line-height: 2.8rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000
}

@media(max-width: 1020px) {
    .video-blog__desc p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media(max-width: 1020px) {
    .video-blog__desc {
        margin-bottom:2rem;
        height: 4rem
    }
}

.video-blog__desc--v2 p {
    font-size: 2.4rem;
    line-height: 2.6rem
}

@media(max-width: 1020px) {
    .video-blog__desc--v2 p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media(max-width: 1020px) {
    .video-blog__desc--v2 {
        margin-bottom:2rem
    }
}

.video-blog__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.video-blog__info-wrap--v2 {
    width: 50%;
    padding-right: 3.2rem
}

@media(max-width: 1020px) {
    .video-blog__info-wrap--v2 {
        padding-right:0;
        width: 100%
    }
}

.video-blog-wrap--v2 {
    padding: 3rem 0
}

@media(max-width: 1020px) {
    .video-blog-wrap--v2 {
        padding:2rem 0
    }
}

.video-blog-wrap .media-tile__likes {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2.4rem
}

@media(max-width: 1020px) {
    .video-blog-wrap .media-tile__likes {
        margin:1.5rem 0
    }
}

.tabs {
    clear: both;
    width: 100%
}

.tabs--vertical {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

@media(max-width: 767px) {
    .tabs--vertical {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.tabs__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0
}

@media(max-width: 767px) {
    .tabs__links {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }
}

.tabs__links--v2 {
    -ms-flex-pack: start;
    justify-content: start;
    padding: 0
}

@media(max-width: 767px) {
    .tabs__links--v2 {
        -ms-flex-pack:center;
        justify-content: center
    }
}

.tabs__links--center {
    -ms-flex-pack: center;
    justify-content: center
}

.tabs__links--v3 {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.tabs__links--vertical {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 288px;
    width: 25%
}

@media(max-width: 767px) {
    .tabs__links--vertical {
        max-width:100%;
        width: 100%;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 3rem
    }

    .tabs__links--vertical .slick-list {
        margin: 0 -15px;
        padding-left: 15px
    }

    .tabs__links--vertical .slick-slide {
        margin: 0 4px
    }
}

.tabs__links--droplist {
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 2px 4px 0 rgba(205,206,206,.25);
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1;
    max-height: 22rem;
    overflow: hidden;
    display: none
}

.tabs__links--droplist .tabs__item {
    margin-bottom: 0
}

.tabs__links--droplist .tabs__link {
    font-size: 1.6rem;
    line-height: 2rem;
    background: transparent;
    color: #000;
    border-bottom: 1px solid #cdcece;
    width: 100%;
    margin-bottom: 0
}

.tabs__links--droplist .tabs__link--active .tabs__anchor {
    background: transparent;
    color: #000
}

.tabs__links--droplist .tabs__link--active .tabs__anchor:hover {
    color: #000
}

.tabs__links--droplist .tabs__anchor {
    font-size: 2rem;
    line-height: 1.1;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 1rem 1.6rem;
    border-radius: 2px;
    transition: all .5s ease;
    display: block;
    background: transparent;
    color: #000
}

@media(max-width: 767px) {
    .tabs__links--droplist .tabs__anchor {
        display:inline-block;
        text-align: left
    }
}

.tabs__links--droplist .tabs__anchor--active,.tabs__links--droplist .tabs__anchor:hover {
    color: #000;
    background: #f1f3f6
}

.tabs__links--droplist .tabs__anchor:active,.tabs__links--droplist .tabs__anchor:focus-within {
    color: #000;
    background: #f1f3f6
}

.tabs__anchor {
    color: #6a4742;
    font-size: 2.4rem;
    padding: 1.8rem 5rem;
    display: inline-block;
    background-color: #fdf7f7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 26rem;
    display: block
}

@media(max-width: 767px) {
    .tabs__anchor {
        max-width:11rem
    }
}

.tabs__anchor--v2 {
    color: #cdcece;
    font-size: 1.8rem;
    line-height: 2rem;
    text-transform: uppercase;
    padding: 1.5rem 1.7rem;
    background: transparent;
    overflow: initial
}

.tabs__anchor--v2:hover,.tabs__anchor--v2:active,.tabs__anchor--v2:focus {
    color: #cdcece
}

@media(max-width: 767px) {
    .tabs__anchor--v2 {
        text-transform:capitalize;
        max-width: 20rem
    }
}

.tabs__anchor--v3 {
    padding: 1.2rem 1.6rem;
    border-radius: .4rem;
    font-size: 2rem;
    line-height: 1;
    color: #e2a7a2
}

@media(max-width: 767px) {
    .tabs__anchor--v3 {
        max-width:20rem
    }
}

.tabs__anchor--vertical {
    width: 100%
}

@media(max-width: 767px) {
    .tabs__anchor--vertical {
        text-align:center;
        max-width: none
    }
}

.tabs__anchor:hover,.tabs__anchor:active,.tabs__anchor:focus {
    color: #6a4742
}

@media(max-width: 767px) {
    .tabs__anchor {
        font-size:1.6rem;
        padding: 1.2rem 2rem
    }
}

.tabs__link {
    position: relative
}

.tabs__link--active .tabs__anchor {
    background: #6a4742;
    color: #fff
}

.tabs__link--active .tabs__anchor:hover,.tabs__link--active .tabs__anchor:active,.tabs__link--active .tabs__anchor:focus {
    color: #fff
}

.tabs__link--active .tabs__anchor--v2 {
    color: #6a4742;
    background: transparent;
    border-bottom: 2px solid #6a4742
}

.tabs__link--active .tabs__anchor--v2:hover,.tabs__link--active .tabs__anchor--v2:active,.tabs__link--active .tabs__anchor--v2:focus {
    color: #6a4742
}

.tabs__link--active .tabs__anchor--v3 {
    background: #b37671
}

.tabs__link:first-child .tabs__anchor {
    border-top-left-radius: .4rem;
    border-bottom-left-radius: .4rem
}

.tabs__link:last-child .tabs__anchor {
    border-top-right-radius: .4rem;
    border-bottom-right-radius: .4rem
}

.tabs__link:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 2.4rem;
    background: #cdcece
}

.tabs__link.tabs__link--active:after {
    background: #6a4742
}

.tabs__link--v2 {
    border-bottom: 1px solid #cdcece
}

.tabs__link--v2:after {
    display: none
}

.tabs__link--v2:first-child .tabs__anchor {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.tabs__link--v2:last-child .tabs__anchor {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.tabs__link--v3 {
    margin-right: 2rem
}

@media(max-width: 767px) {
    .tabs__link--v3 {
        margin-right:0
    }
}

.tabs__link--v3:after {
    display: none
}

.tabs__link--noborder {
    border: 0
}

.tabs__link--noborder .tabs__anchor {
    border: 0
}

.tabs__link--vertical {
    margin: 0 3.2rem 1.6rem 0
}

@media(max-width: 767px) {
    .tabs__link--vertical {
        margin-bottom:0
    }
}

.tabs__contents--vertical {
    width: 100%;
    max-width: 736px
}

.tabs__content {
    display: none;
    padding: 0 0 4rem
}

.tabs__content--active {
    display: block
}

.tabs__content--v2 {
    padding: 2.4rem 0
}

.tabs__content--nopadding {
    padding: 0
}

@media(max-width: 767px) {
    .tabs__content {
        padding:.4rem 0 2.4rem
    }
}

.tabs__title {
    font-size: 4.4rem;
    color: #b37671;
    line-height: 4.8rem
}

@media(max-width: 767px) {
    .tabs__title {
        font-size:2.2rem;
        line-height: 2.4rem;
        text-align: center
    }
}

.tabs__desc {
    font-size: 3.2rem;
    line-height: 3.2rem;
    color: #b37671;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 3rem;
    padding-right: 10rem
}

@media(max-width: 767px) {
    .tabs__desc {
        font-size:1.8rem;
        line-height: 1.8rem;
        margin-bottom: 1.6rem;
        text-align: center;
        padding-right: 0;
        display: none
    }

    .tabs__desc br {
        display: none
    }
}

.tabs__sub-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
    color: #b37671;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .tabs__sub-title {
        font-size:2.2rem;
        line-height: 2.2rem;
        margin-bottom: 1.6rem
    }
}

.tabs .btn-wrap {
    padding-top: 4rem
}

.tabs .btn-wrap .button:nth-child(2) {
    margin-left: 2rem
}

@media(max-width: 767px) {
    .tabs .btn-wrap {
        width:100%;
        text-align: center
    }
}

.tabs .abc-form--feedback .btn-wrap {
    text-align: right;
    padding-top: 0
}

.tabs--dropdown {
    position: relative
}

@media(max-width: 767px) {
    .tabs--dropdown {
        margin:0 0 2rem
    }
}

.tabs--dropdown .mCSB_inside>.mCSB_container {
    margin-right: 0
}

.tabs__dropdown {
    width: 100%;
    border: 1px solid #cdcece;
    max-width: 288px;
    margin-right: 3.2rem;
    position: relative;
    padding: 1.2rem 1.8rem;
    border-radius: 4px;
    cursor: pointer
}

@media(max-width: 767px) {
    .tabs__dropdown {
        max-width:100%;
        margin: 0 0 2rem 0
    }
}

.tabs__selected {
    font-size: 1.8rem;
    line-height: 1
}

.tabs__drop-icon {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #6a4742;
    position: absolute;
    right: 1rem;
    top: 1.2rem
}

@media(max-width: 767px) {
    .tabs .three-col-list.link-list__container ul li {
        -ms-flex:0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .tabs .three-col-list.link-list__container ul li:last-child a {
        border-bottom: 1px solid #f1f3f6
    }

    .tabs .three-col-list.link-list__container .link-list__list--icon .icon {
        display: none
    }

    .tabs .three-col-list.link-list__container .link-list__list li a {
        padding: 9px 30px 9px 0
    }
}

@media(max-width: 767px) and (max-width:767px) {
    .tabs .three-col-list.link-list__container .link-list__list li a:after {
        top:unset;
        bottom: 10px
    }
}

.on-page-editor .tabs__anchor {
    min-width: 26rem
}

.lead-form {
    background: #b37671;
    width: 100%;
    position: relative
}

@media(max-width: 1020px) {
    .lead-form {
        padding:0 15px
    }
}

.lead-form__container {
    position: relative;
    max-width: 1196px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    min-height: 12rem;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto
}

@media(max-width: 1020px) {
    .lead-form__container {
        height:auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-line-pack: center;
        align-content: center;
        padding: 30px 0
    }
}

.lead-form__title {
    font-size: 3.3rem;
    color: #fff;
    line-height: 1;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1200px) {
    .lead-form__title {
        font-size:3.6rem
    }
}

@media(max-width: 1020px) {
    .lead-form__title {
        font-size:2.2rem
    }
}

.lead-form__title-wrap {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 27px;
    margin-right: 40px
}

@media(max-width: 1020px) {
    .lead-form__title-wrap {
        text-align:center;
        margin-bottom: 1.5rem;
        width: 100%;
        margin-right: 0
    }
}

.lead-form__wrap {
    width: 100%
}

@media(max-width: 1020px) {
    .lead-form__wrap {
        width:100%;
        margin: 0 auto
    }
}

.lead-form .abc-form .form-group {
    margin-bottom: 0;
    position: relative
}

.lead-form .abc-form .form-group span.error {
    color: #fff;
    position: absolute;
    left: 14px;
    top: 100%
}

.lead-form .abc-form input:-ms-input-placeholder {
    opacity: 1;
    color: #cdcece
}

.lead-form .abc-form input::placeholder {
    opacity: 1;
    color: #cdcece
}

.lead-form .abc-form--lead .form-check.typ2 input,.lead-form .abc-form--lead-gp .form-check.typ2 input {
    width: 70%
}

@media(max-width: 767px) {
    .lead-form .abc-form--lead .form-check.typ2 input,.lead-form .abc-form--lead-gp .form-check.typ2 input {
        width:100%;
        height: calc(100% - 58px)
    }
}

.lead-form--typ2 {
    padding: 3rem 5rem
}

.lead-form--typ2 .lead-form__container {
    display: block
}

@media(max-width: 1200px) {
    .lead-form--typ2 .lead-form__title {
        font-size:3rem
    }
}

.lead-form--typ2 .lead-form__title-wrap {
    margin-bottom: 2.5rem
}

.lead-form--typ2 .lead-form__wrap {
    width: 60%
}

.lead-form--typ2 .lead-form__info-wrap {
    display: block
}

.lead-form--typ2 .lead-form__statement {
    padding: 1rem 0;
    border-right: none;
    border-bottom: 1px solid #fff
}

.lead-form--typ2 .lead-form__statement:last-child {
    border-bottom: none
}

.lead-form__thanks-msg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    min-height: 12rem;
    padding: 18px 0
}

@media(max-width: 767px) {
    .lead-form__thanks-msg {
        height:auto
    }
}

.lead-form__statement {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1200px) {
    .lead-form__statement {
        font-size:1.8rem;
        line-height: 1.8rem
    }
}

@media(max-width: 767px) {
    .lead-form__statement {
        font-size:1.2rem;
        line-height: 1.4rem
    }
}

.lead-form__statement--lg-text {
    font-size: 4.4rem;
    line-height: 4.6rem;
    display: block
}

@media(max-width: 1200px) {
    .lead-form__statement--lg-text {
        font-size:2.4rem;
        line-height: 2.4rem
    }
}

@media(max-width: 767px) {
    .lead-form__statement--lg-text {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.lead-form__icon {
    width: 7.6rem;
    height: 7.6rem;
    display: inline-block;
    border-radius: 50%;
    background: #edc9c6;
    font-size: 4.8rem;
    color: #fff;
    padding: 1.4rem;
    margin-right: 2.5rem
}

.lead-form__icon-wrap {
    width: 7.6rem;
    height: 7.6rem;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2.5rem
}

.lead-form__img {
    width: 100%
}

.lead-form__info-wrap {
    display: -ms-flexbox;
    display: flex
}

@media(max-width: 767px) {
    .lead-form__info-wrap {
        display:block
    }
}

.lead-form__statement {
    padding: 0 12rem;
    border-right: 1px solid #fff;
    margin-bottom: 0
}

@media(max-width: 1400px) {
    .lead-form__statement {
        padding:0 8rem
    }
}

@media(max-width: 1020px) {
    .lead-form__statement {
        padding:0 4rem
    }
}

@media(max-width: 767px) {
    .lead-form__statement {
        padding:.8rem 0;
        border-right: none;
        border-bottom: 1px solid #fff
    }
}

.lead-form__statement:first-child {
    padding-left: 0
}

.lead-form__statement:last-child {
    border-right: none
}

@media(max-width: 767px) {
    .lead-form__statement:last-child {
        border-bottom:none
    }
}

@media(max-width: 767px) {
    .lead-form .container-fluid,.lead-form .container-sm,.lead-form .container-md,.lead-form .container-lg,.lead-form .container-xl {
        padding:0
    }
}

.form-group--no,.form-group--name,.call-me-button,.form-group--tnc,.form-group--email {
    margin-bottom: 28px !important
}

#tnc-error {
    left: 51px !important
}

@media(max-width: 767px) {
    .call-me-button {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-sub-wrapper {
        max-width: 305px;
        margin: 0 auto
    }
}

.tips__list {
    padding-left: 5rem;
    counter-reset: section;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 767px) {
    .tips__list {
        display:block;
        -ms-flex-flow: inherit;
        flex-flow: inherit;
        -ms-flex-pack: inherit;
        justify-content: inherit;
        padding-left: 2rem
    }
}

.tips__item {
    padding-left: 1rem;
    position: relative;
    width: 45%;
    margin-bottom: 5rem
}

@media(max-width: 767px) {
    .tips__item {
        width:100%;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #f1f3f6
    }

    .tips__item:last-child {
        border-bottom: none
    }
}

.tips__item:before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero);
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #b37671;
    display: block;
    position: absolute;
    left: 0;
    top: -3px;
    font-weight: 400
}

@media(max-width: 767px) {
    .tips__item:before {
        font-size:2.2rem;
        line-height: 2.4rem;
        top: 0
    }
}

.tips__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .tips__title {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.tips__info {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1.5rem
}

.tips__info:last-child {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .tips__info {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.tips__list-item {
    margin-bottom: 4rem
}

.tips__list-item:last-child {
    margin-bottom: 0
}

.tips__list-item .tips__title {
    margin-bottom: 2rem
}

.tips--typ-full .tips__item {
    width: 100%;
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .tips--typ-full .tips__item:last-child {
        margin-bottom:2rem
    }
}

@media(max-width: 767px) {
    .tips--typ-full .tips__item {
        border-bottom:none;
        padding-bottom: 0;
        margin-bottom: 2rem
    }
}

.tips--typ-full .tips__title-wrap {
    margin-bottom: 2.5rem
}

.tips--no-count .tips__item {
    padding-left: 0
}

.tips--no-count .tips__item:before {
    content: none
}

.tips--no-count .tips__list {
    padding-left: 0
}

.chat-bot__btn {
    background: #6a4742;
    width: 6.4rem;
    height: 6.4rem;
    line-height: 6.4rem;
    border-radius: 50%;
    position: fixed;
    bottom: 10rem;
    right: 10rem;
    z-index: 10001;
    text-align: center;
    border-color: #6a4742;
    transition: all .3s ease;
    border: 0
}

@media(max-width: 767px) {
    .chat-bot__btn {
        opacity:.6
    }
}

.chat-bot__btn--typ2 {
    background: #f1f3f6;
    border-color: #f1f3f6
}

.chat-bot__btn--typ2 .chat-bot__icon {
    color: #6a4742
}

.chat-bot__btn--opaque {
    opacity: .5
}

.chat-bot__btn--chat {
    line-height: 7.2rem
}

.chat-bot__btn .chat-bot__btn-label {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 125%;
    font-size: 1.8rem;
    line-height: 1;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    width: 11rem;
    text-align: right
}

.chat-bot__btn--child {
    position: relative;
    right: auto;
    bottom: auto
}

.chat-bot__icon {
    color: #fff;
    font-size: 2.4rem
}

@media(max-width: 767px) {
    .chat-bot__icon {
        font-size:1.4rem
    }
}

@media(max-width: 1200px) {
    .chat-bot__desktop {
        display:none
    }
}

.chat-bot__mobile {
    display: none
}

.chat-bot__mobile .chat-bot__btn {
    bottom: 5rem;
    right: 2.4rem
}

.chat-bot__mobile .chat-bot__btn--child {
    bottom: auto;
    right: auto
}

@media(max-width: 1200px) {
    .chat-bot__mobile {
        display:block
    }
}

.chat-bot__mobile--active .chat-bot__btn {
    background: #f1f3f6;
    border-color: #f1f3f6
}

@media(max-width: 767px) {
    .chat-bot__mobile--active .chat-bot__btn {
        opacity:1
    }
}

.chat-bot__mobile--active .chat-bot__btn .chat-bot__icon {
    color: #6a4742
}

.chat-bot__mobile--active .chat-bot__btn--rotate {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.chat-bot__mobile--active .chat-bot__action-wrap {
    visibility: visible;
    opacity: 1
}

.chat-bot__action-wrap {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    margin: 0;
    position: fixed;
    right: 10rem;
    bottom: 16rem;
    z-index: 10001
}

@media(max-width: 1200px) {
    .chat-bot__action-wrap {
        right:2.5rem;
        bottom: 12rem
    }
}

@media(max-width: 767px) {
    .chat-bot__action-wrap .chat-bot__icon {
        font-size:2.4rem
    }
}

.chat-bot__item {
    margin-bottom: 2rem
}

.overlay {
    background: rgba(0,0,0,.8);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.overlay--active {
    opacity: 1;
    visibility: visible
}

@media(max-width: 1020px) {
    .overlay {
        display:block
    }
}

.birthday-block {
    height: 7rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    overflow: hidden;
    margin: -1.5rem 0 4rem
}

@media(max-width: 767px) {
    .birthday-block {
        box-shadow:none;
        margin: -15px -15px 15px
    }
}

.birthday-block__icon {
    font-size: 7rem;
    color: #f7a500;
    margin-bottom: -2rem;
    max-width: 7.5rem
}

@media(max-width: 767px) {
    .birthday-block__icon {
        font-size:5.6rem;
        padding-left: 1rem;
        max-width: 6rem
    }
}

.birthday-block__wish-wrap {
    display: -ms-flexbox;
    display: flex
}

@media(max-width: 767px) {
    .birthday-block__wish-wrap {
        -ms-flex-pack:start;
        justify-content: start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.birthday-block__wish {
    font-size: 3.2rem;
    text-transform: capitalize;
    margin: 0 1rem 0 2rem
}

@media(max-width: 767px) {
    .birthday-block__wish {
        font-size:2rem;
        line-height: 2rem;
        width: 100%
    }
}

.birthday-block__from {
    font-size: 2rem;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .birthday-block__from {
        font-size:1.6rem;
        line-height: 2rem;
        width: 100%;
        margin: 0 1rem 0 2rem
    }
}

.progress-list {
    font-size: 0;
    padding: 1.5rem 0 0 0
}

@media(max-width: 767px) {
    .progress-list {
        padding-top:2rem
    }
}

.progress-list__item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    position: relative;
    padding: 1.6rem 0 0
}

.progress-list__item:first-child:after {
    display: none
}

.progress-list__item:before {
    content: "";
    position: absolute;
    top: -.7rem;
    left: 0;
    width: 1.4rem;
    height: 1.4rem;
    background: #cdcece;
    display: inline-block;
    border-radius: 50%;
    z-index: 1
}

.progress-list__item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
    background: #cdcece
}

.progress-list__item--active:after {
    background-color: #b37671
}

.progress-list__item--active:before {
    content: "";
    background-color: #b37671
}

.progress-list__item--active .progress-list__icon,.progress-list__item--active .progress-list__step {
    color: #b37671
}

.progress-list__icon {
    font-size: 2.4rem;
    color: #cdcece
}

@media(max-width: 767px) {
    .progress-list__icon {
        font-size:2rem
    }
}

.progress-list__step {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #cdcece;
    margin-top: .5rem;
    display: block;
    width: 50%
}

@media(max-width: 767px) {
    .progress-list__step {
        font-size:1.2rem;
        line-height: 1.4rem;
        margin-top: 0
    }
}

.plan-info {
    text-align: center;
    background: rgba(237,201,198,.25);
    padding: 2.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 4rem 0 2rem
}

@media(max-width: 767px) {
    .plan-info {
        padding:1.6rem;
        margin-top: 2.4rem
    }
}

.plan-info__name,.plan-info__amt {
    font-size: 2.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    width: 50%
}

@media(max-width: 767px) {
    .plan-info__name,.plan-info__amt {
        font-size:2.2rem;
        line-height: 2.2rem;
        text-align: left
    }
}

.plan-info__name .text,.plan-info__amt .text {
    font-size: 2rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: block
}

@media(max-width: 767px) {
    .plan-info__name .text,.plan-info__amt .text {
        font-size:1.6rem;
        line-height: 1.6rem
    }
}

.plan-info__name {
    border-right: 1px solid #000
}

@media(max-width: 767px) {
    .plan-info__name {
        width:calc(50% - 1.5rem)
    }
}

@media(max-width: 767px) {
    .plan-info__amt {
        padding-left:1.5rem
    }
}

.product-card {
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border: solid 1px #cdcece;
    position: relative
}

.product-card--ad {
    max-height: 45rem
}

.product-card__top {
    padding: 4.8rem 2rem 1rem
}

.product-card__mid {
    padding: 1.6rem 2rem;
    height: 166px;
    overflow: hidden
}

.product-card__bottom {
    padding: 0 2rem 1.6rem;
    min-height: 13.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-card__bottom .button {
    width: 100%;
    position: relative;
    z-index: 1
}

.product-card__bottom .button:last-child {
    margin-top: 2rem
}

@media(max-width: 767px) {
    .product-card__bottom .button:last-child {
        margin-top:1rem
    }
}

.product-card__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #fff;
    text-transform: capitalize
}

@media(max-width: 767px) {
    .product-card__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.product-card__desc {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #fff;
    font-family: "pfhandbookpro-light",sans-serif;
    margin: 0
}

@media(max-width: 767px) {
    .product-card__desc {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.product-card__tag {
    position: absolute;
    top: 1.5rem;
    left: 0;
    background: #fff;
    color: #b37671;
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 0 1rem 0 2.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 2.3rem
}

@media(max-width: 767px) {
    .product-card__tag {
        font-size:1.2rem;
        line-height: 1.2rem;
        height: 2rem
    }
}

.product-card__icon {
    font-size: 1.6rem;
    line-height: 1.6rem;
    margin: 0 .6rem 0 0
}

@media(max-width: 767px) {
    .product-card__icon {
        font-size:1.2rem;
        line-height: 1.2rem
    }
}

.product-card__punch-line {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .product-card__punch-line {
        margin-bottom:1.2rem
    }
}

.product-card__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.features__item {
    padding-right: 1rem
}

.features__text {
    color: #6c7174;
    font-size: 1.8rem;
    line-height: 2rem;
    display: block
}

@media(max-width: 767px) {
    .features__text {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.features__icon {
    font-size: 2rem;
    display: block;
    max-width: 3.6rem
}

@media(max-width: 767px) {
    .features__icon {
        font-size:1.8rem;
        max-width: 3.2rem
    }
}

.term-products {
    max-width: 100rem;
    margin: auto
}

.term-products .slick-slide {
    margin: 0 1.6rem
}

.term-products .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 1020px) {
    .term-products .slick-list {
        padding:0 10% 0 0;
        margin: 0
    }
}

@media(max-width: 1200px) {
    .term-products .slick-nav--product {
        display:none
    }
}

.product-list--calc .slick-track {
    margin-left: 0;
    margin-right: 0
}

.company-info {
    padding: 0 4.8rem 0 4.6rem;
    max-width: 1400px
}

.company-info.nps-company-info {
    padding: 0
}

@media(max-width: 1020px) {
    .company-info.nps-company-info {
        padding:0 25px
    }
}

.company-info.nps-company-info .company-info__desc {
    max-width: 1360px;
    margin: auto;
    padding: 4px 25px;
    font-size: 1.8rem;
    font-weight: 500
}

@media(max-width: 1020px) {
    .company-info.nps-company-info .company-info__desc {
        padding:4px 0
    }
}

.company-info.brand-capital-brown-bg {
    background-color: #660d0a
}

@media(max-width: 1020px) {
    .company-info {
        padding:0 1.5rem
    }
}

@media screen and (max-width: 1200px) {
    .company-info {
        padding:0 4.8rem 0 2.6rem
    }
}

@media screen and (max-width: 1020px) {
    .company-info {
        padding:0 1.5rem
    }
}

.company-info__desc {
    color: #fff;
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: 500
}

@media(max-width: 767px) {
    .company-info__desc {
        font-size:1.8rem
    }
}

.mobile-quick-actions .action-list {
    display: none
}

@media(max-width: 767px) {
    .mobile-quick-actions .action-list {
        display:-ms-flexbox !important;
        display: flex !important;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        border-bottom: 1px solid #f1f3f6
    }
}

.mobile-quick-actions .action {
    padding: 1.3rem 0;
    display: inherit;
    -ms-flex-align: center;
    align-items: center
}

.mobile-quick-actions .action__icon {
    color: #6a4742;
    font-size: 1.8rem;
    margin-right: .4rem
}

.mobile-quick-actions .action__name {
    color: #6a4742;
    font-size: 1.6rem;
    line-height: 1.8rem
}

@media(max-width: 1020px) {
    .breadcrum-comp {
        display:block !important
    }
}

.breadcrum-comp__link {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #6c7174;
    text-transform: capitalize;
    position: relative;
    padding-right: 2.2rem
}

.breadcrum-comp__link:after {
    content: "";
    font-family: font-icons;
    position: absolute;
    right: .5rem;
    bottom: 0;
    font-size: 10px
}

.breadcrum-comp__link:last-child {
    color: #6a4742;
    cursor: default
}

.breadcrum-comp__link:last-child:after {
    display: none
}

.cat-pro-banner {
    max-width: 58.5%;
    display: inline-block
}

@media(max-width: 1020px) {
    .cat-pro-banner {
        max-width:70%
    }
}

@media(max-width: 767px) {
    .cat-pro-banner {
        margin-right:0;
        max-width: 100%
    }
}

.cat-pro-banner__subtitle {
    font-size: 3.2rem;
    line-height: 3.2rem;
    font-family: "pfhandbookpro-thin",sans-serif
}

.cat-pro-banner__subtitle--bold {
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .cat-pro-banner__subtitle {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.cat-pro-banner__title {
    font-size: 4.4rem;
    line-height: 4.4rem;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .cat-pro-banner__title {
        font-size:3.2rem;
        line-height: 3.2rem
    }
}

.cat-pro-banner__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin: 0
}

@media(max-width: 767px) {
    .cat-pro-banner__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.cat-pro-banner__second-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin-top: 3rem
}

@media(max-width: 767px) {
    .cat-pro-banner__second-title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.cat-pro-banner__second-title--regular {
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

.cat-pro-banner__third-title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .cat-pro-banner__third-title {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.cat-pro-banner__btn-wrap {
    padding-top: 4rem
}

@media(max-width: 767px) {
    .cat-pro-banner__btn-wrap {
        padding-top:1.5rem
    }
}

.cat-pro-banner__info {
    padding-bottom: 5rem;
    margin-top: 5rem;
    border-bottom: 1px solid #f1f3f6
}

@media(max-width: 767px) {
    .cat-pro-banner__info {
        padding-bottom:4rem;
        margin-top: 4rem
    }
}

.cat-pro-banner__info:first-child {
    margin-top: 0
}

.cat-pro-banner__info:last-child {
    padding-bottom: 0;
    border: none
}

.cat-pro-banner--typ-details .cat-pro-banner__desc {
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .cat-pro-banner--typ-details .cat-pro-banner__desc {
        margin-bottom:1.5rem
    }
}

.cat-pro-banner--typ-details .cat-pro-banner__desc:last-child {
    margin-bottom: 0
}

.cat-pro-banner--typ-details .cat-pro-banner__read-wrap {
    margin-top: 3rem
}

.cat-pro-banner--typ-dark .cat-pro-banner__title,.cat-pro-banner--typ-dark .cat-pro-banner__desc,.cat-pro-banner--typ-dark .cat-pro-banner__second-title {
    color: #000
}

.category-product-banner .read-less,.category-product-banner .read-more {
    padding-left: 0;
    display: none
}

@media(max-width: 767px) {
    .category-product-banner .read-less,.category-product-banner .read-more {
        display:block
    }
}

.category-product-banner .read-more {
    margin-top: 1.5rem
}

.category-product-banner .state-list {
    margin-top: 4rem
}

.category-product-banner .abc-form--download {
    margin-top: 3rem
}

.category-product-banner .abc-form--download .button-link--download {
    padding: 2rem
}

@media(max-width: 767px) {
    .category-product-banner .abc-form--download .button-link--download {
        padding:1.8rem 1.4rem
    }
}

.category-product-banner .abc-form--download .button-link--download .icon {
    color: #6a4742
}

.category-product-banner--pro {
    padding-bottom: 4rem;
    border-bottom: 1px solid #f1f3f6
}

.banner-ad-wrap {
    max-width: 23%;
    width: 100%;
    position: relative;
    display: inline-block;
    float: right
}

.banner-ad-wrap__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

@media(max-width: 1020px) {
    .banner-ad-wrap {
        max-width:30%
    }
}

@media(max-width: 767px) {
    .banner-ad-wrap {
        display:none
    }
}

.accordian--v2.revamp-disclaimer-container {
    max-width: 1304px;
    padding: 4% 0 4% 0 !important
}

@media(max-width: 1020px) {
    .accordian--v2.revamp-disclaimer-container {
        padding-left:16px !important;
        padding-right: 16px !important
    }
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-title {
    border: unset !important
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__title {
    background-color: unset !important;
    border-color: unset !important;
    border: unset !important
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__title .accordian__icon {
    margin: unset !important;
    color: rgba(0,0,0,.92)
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__title.js-trigger {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px !important;
    line-height: 120% !important;
    color: rgba(0,0,0,.92);
    padding: 8px 0
}

@media(max-width: 767px) {
    .accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__title.js-trigger {
        font-size:16px !important
    }
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__info {
    padding: 16px 0 0 0
}

@media(max-width: 767px) {
    .accordian--v2.revamp-disclaimer-container .revamp-accordian-title .accordian__info {
        padding:12px 0 0 0
    }
}

.accordian--v2.revamp-disclaimer-container .revamp-accordian-para {
    font-family: "pfencoresanspro",sans-serif !important;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

.accordian--v2.revamp-disclaimer-container .accordian__wrap {
    margin: unset
}

@media(max-width: 767px) {
    .accordian--v2.revamp-disclaimer-container {
        padding:60px 0 16px 0
    }
}

.accordian__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 1.6rem 6.4rem 1.6rem 1.6rem;
    background: #f5f5f5;
    position: relative;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all .3s ease
}

.accordian__title .accordian__icon {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1.6rem
}

@media(max-width: 767px) {
    .accordian__title {
        font-size:2rem;
        line-height: 2.2rem;
        padding: 2rem 6.4rem 2rem 1.6rem
    }
}

.accordian__title:hover {
    color:  #19503e
}

.accordian__icon {
    font-size: 2rem;
    color: #6a4742;
    transition: all .3s ease
}

.accordian__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .accordian__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.accordian__list {
    list-style-type: disc
}

.accordian__list-item {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .accordian__list-item {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.accordian__info {
    padding: 2rem 1.6rem;
    display: none
}

.accordian__item {
    border: 1px solid #ddd
}

.accordian__item--active .accordian__title {
    border-color: #ddd
}

.accordian__wrap {
    padding-left: 0;
    border-radius: 2px;
    overflow: hidden
}

.accordian__wrap--v1 .accordian__item {
    display: none
}

.accordian__wrap--v1 .accordian__item:nth-child(-n+4) {
    display: block
}

.accordian__view-all,.accordian__view-less {
    padding-left: 0;
    margin-top: 2rem
}

.accordian--v2 {
    max-width: 92.8rem;
    margin: 0 auto
}

.accordian--v2 .accordian__title {
    background: #fff
}

.accordian--v2 .accordian__icon {
    font-size: 1.4rem
}

.accordian--v2 .accordian__item {
    border: none;
    border-bottom: 1px solid #f1f3f6
}

.accordian--v2 .accordian__item:first-child {
    border-top: 1px solid #f1f3f6
}

.accordian--v2 .accordian__item--active .accordian__title {
    background: #f1f3f6;
    border-color: #f1f3f6
}

.accordian--v2 .accordian__item--active .accordian__icon {
    -ms-transform: translateY(-70%) rotate(180deg);
    transform: translateY(-70%) rotate(180deg)
}

.accordian--v2 .accordian__wrap {
    border-radius: 0
}

@media(max-width: 767px) {
    .accordian--v2 .accordian__wrap {
        margin:0 -15px;
        width: auto
    }
}

.accordian--v2 .title-wrap {
    text-align: center
}

@media(max-width: 767px) {
    .accordian--v2 .title-wrap {
        text-align:left
    }
}

.accordian--v3 .accordian__title:hover {
    color: #000
}

.accordian--v3 .accordian__title--icon {
    font-size: 2rem;
    transition: all .3s ease
}

.accordian--v3 .accordian__item {
    margin: 8px 0;
    border: none
}

.accordian--v3 .accordian__item--active .accordian__title {
    background: #d4ae69;
    color: #695934
}

.accordian--left {
    margin: 0
}

.accordian--contact {
    margin: 0;
    max-width: none
}

.accordian--contact .title-wrap {
    text-align: left
}

.accordian--contact .accordian__item:first-child {
    border-top: none
}

@media(max-width: 767px) {
    .accordian--contact .accordian__item:first-child {
        border-top:1px solid #f1f3f6
    }
}

.on-page-editor .accordian__wrap>div {
    width: calc(50% - 1.6rem);
    margin-bottom: 3.2rem
}

.on-page-editor .accordian__item {
    width: 100%
}

.on-page-editor .accordian--v2 .accordian__wrap>div {
    width: 100%;
    margin-bottom: 0
}

.on-page-editor .accordian__wrap--v1>div {
    width: 100%;
    margin-bottom: 0
}

@media only screen and (max-width: 1300px) {
    .accordian--v2.revamp-disclaimer-container {
        padding-left:16px !important;
        padding-right: 16px !important
    }
}

.table {
    max-width: 38rem
}

@media(max-width: 767px) {
    .table {
        width:100%
    }
}

.table__wrap {
    width: 100%;
    border: 1px solid #353535
}

.table__head .table__heading,.table__head .table__data,.table__body .table__heading,.table__body .table__data {
    vertical-align: middle;
    text-align: center;
    width: 33.33%;
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    border-bottom: none
}

.table__head .table__heading:first-child,.table__head .table__heading:nth-child(2),.table__head .table__data:first-child,.table__head .table__data:nth-child(2),.table__body .table__heading:first-child,.table__body .table__heading:nth-child(2),.table__body .table__data:first-child,.table__body .table__data:nth-child(2) {
    border-right: 1px solid #353535
}

@media(max-width: 767px) {
    .table__head .table__heading,.table__head .table__data,.table__body .table__heading,.table__body .table__data {
        font-size:1.6rem;
        line-height: 1.8rem;
        width: auto
    }

    .table__head .table__heading:first-child,.table__head .table__data:first-child,.table__body .table__heading:first-child,.table__body .table__data:first-child {
        width: 25%
    }
}

.table__row {
    border-bottom: 1px solid #353535
}

.table--typ2 {
    max-width: 54rem;
    margin-top: 2.5rem
}

@media(max-width: 767px) {
    .table--typ2 {
        margin-top:2rem
    }
}

.table--typ2 .table__head .table__heading,.table--typ2 .table__head .table__data,.table--typ2 .table__body .table__heading,.table--typ2 .table__body .table__data {
    vertical-align: top;
    text-align: left;
    width: 40%;
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 400;
    padding: 2rem 1.5rem
}

@media(max-width: 767px) {
    .table--typ2 .table__head .table__heading,.table--typ2 .table__head .table__data,.table--typ2 .table__body .table__heading,.table--typ2 .table__body .table__data {
        font-size:1.4rem;
        line-height: 1.6rem;
        padding: 1rem
    }
}

.table--typ2 .table__head .table__heading,.table--typ2 .table__body .table__heading {
    font-size: 2rem;
    line-height: 2.2rem
}

@media(max-width: 767px) {
    .table--typ2 .table__head .table__heading,.table--typ2 .table__body .table__heading {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.table--typ-allocation {
    max-width: initial;
    margin-bottom: 0
}

.table--typ-allocation .table__wrap {
    height: 23.7rem
}

.table--typ-allocation .table__head .table__heading,.table--typ-allocation .table__body .table__heading {
    font-weight: 400;
    padding: 1.5rem
}

.table--typ-allocation .table__head .table__data,.table--typ-allocation .table__body .table__data {
    padding: 1rem 1.5rem
}

.table--typ-allocation .table__head .table__data:last-child,.table--typ-allocation .table__body .table__data:last-child {
    border-right: none
}

.table--typ-allocation .table__head .table__heading,.table--typ-allocation .table__head .table__data,.table--typ-allocation .table__body .table__heading,.table--typ-allocation .table__body .table__data {
    width: 7.5rem;
    border-right: 1px solid #353535
}

.table--typ-allocation .table__head .table__heading:first-child,.table--typ-allocation .table__head .table__data:first-child,.table--typ-allocation .table__body .table__heading:first-child,.table--typ-allocation .table__body .table__data:first-child {
    text-align: left;
    width: 22.4rem
}

.table--typ-funds {
    max-width: initial;
    margin-bottom: 0
}

.table--typ-funds .table__head .table__heading,.table--typ-funds .table__body .table__heading {
    font-weight: 400;
    padding: 1.5rem
}

.table--typ-funds .table__head .table__data,.table--typ-funds .table__body .table__data {
    padding: 1.7rem 1.5rem
}

.table--typ-funds .table__head .table__data:last-child,.table--typ-funds .table__body .table__data:last-child {
    border-right: none
}

.table--typ-funds .table__head .table__data--filled,.table--typ-funds .table__body .table__data--filled {
    position: relative
}

.table--typ-funds .table__head .table__data--filled span,.table--typ-funds .table__body .table__data--filled span {
    position: absolute;
    background-color: #bd2b2b
}

.table--typ-funds .table__head .table__data--filled+.table__data--filled,.table--typ-funds .table__body .table__data--filled+.table__data--filled {
    border-left: 2px solid #bd2b2b
}

.table--typ-funds .table__head .table__heading,.table--typ-funds .table__head .table__data,.table--typ-funds .table__body .table__heading,.table--typ-funds .table__body .table__data {
    width: 7.5rem;
    border-right: 1px solid #353535
}

.table--typ-funds .table__head .table__heading:first-child,.table--typ-funds .table__head .table__data:first-child,.table--typ-funds .table__body .table__heading:first-child,.table--typ-funds .table__body .table__data:first-child {
    text-align: left;
    width: 9.9rem;
    word-break: break-word
}

.table--typ-no-border .table__wrap {
    width: 28.8rem
}

.table--typ-no-border .table__head .table__heading,.table--typ-no-border .table__body .table__heading {
    font-weight: 400;
    text-align: left;
    padding: 1.5rem
}

.table--typ-no-border .table__head .table__heading:first-child,.table--typ-no-border .table__body .table__heading:first-child {
    border-right: none
}

.table--income-tax {
    max-width: inherit;
    width: 100%;
    margin-bottom: 0
}

.table--income-tax .table__head .table__heading,.table--income-tax .table__head .table__data,.table--income-tax .table__body .table__heading,.table--income-tax .table__body .table__data {
    text-align: left;
    width: auto;
    font-size: 2rem;
    line-height: 2.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-weight: 400
}

.table--income-tax .table__head .table__heading:first-child,.table--income-tax .table__head .table__data:first-child,.table--income-tax .table__body .table__heading:first-child,.table--income-tax .table__body .table__data:first-child {
    width: 2rem
}

@media(max-width: 767px) {
    .table--income-tax .table__head .table__heading,.table--income-tax .table__head .table__data,.table--income-tax .table__body .table__heading,.table--income-tax .table__body .table__data {
        font-size:1.6rem;
        line-height: 1.8rem
    }

    .table--income-tax .table__head .table__heading:first-child,.table--income-tax .table__head .table__data:first-child,.table--income-tax .table__body .table__heading:first-child,.table--income-tax .table__body .table__data:first-child {
        width: auto
    }
}

.table--income-tax .table__head .table__heading .icon,.table--income-tax .table__head .table__data .icon,.table--income-tax .table__body .table__heading .icon,.table--income-tax .table__body .table__data .icon {
    font-size: 1.4rem
}

@media(max-width: 767px) {
    .filter {
        margin-right:-15px
    }
}

.filter__item {
    display: block;
    margin-bottom: 1.6rem
}

.filter__item:last-child {
    margin-bottom: 0
}

.filter__wrap {
    padding-left: 0
}

.filter .slick-slide {
    margin-right: 1.5rem
}

.faq-buy-guide__list {
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .faq-buy-guide__list {
        margin-bottom:2rem
    }
}

.faq-buy-guide__list .tabs__link--v3 {
    margin-right: 1rem
}

.faq .tabs__anchor--v3 {
    color: #e2a7a2;
    background-color: #fdf7f7
}

.faq .tabs__anchor--v3:hover,.faq .tabs__anchor--v3:focus,.faq .tabs__anchor--v3:active {
    color: #6a4742
}

.faq .tabs__link--active .tabs__anchor--v3 {
    background-color: #b37671;
    color: #fff
}

.faq .tabs__links--droplist {
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 2px 4px 0 rgba(205,206,206,.25)
}

.faq .tabs__links--droplist .tabs__link {
    color: #000;
    border-bottom: 1px solid #cdcece
}

.faq .tabs__links--droplist .tabs__link--active .tabs__anchor {
    background: transparent;
    color: #000
}

.faq .tabs__links--droplist .tabs__link--active .tabs__anchor:hover {
    color: #000
}

.faq .tabs__links--droplist .tabs__anchor {
    background: transparent;
    color: #000
}

.faq .tabs__links--droplist .tabs__anchor--active,.faq .tabs__links--droplist .tabs__anchor:hover {
    color: #000;
    background: #f1f3f6
}

.faq .tabs__links--droplist .tabs__anchor:active,.faq .tabs__links--droplist .tabs__anchor:focus-within {
    color: #000;
    background: #f1f3f6
}

.start-journey {
    padding: 3rem 1.5rem
}

@media(max-width: 767px) {
    .start-journey {
        padding:3rem 0
    }
}

.start-journey .qust-paging {
    text-align: center;
    font-size: 2.4rem;
    line-height: 2.6rem;
    padding-top: 1.8rem
}

@media(max-width: 767px) {
    .start-journey .qust-paging {
        font-size:1.8rem;
        line-height: 2.2rem;
        padding-top: 1rem
    }
}

.qust-series {
    margin-bottom: 0;
    width: calc(100% + 30px);
    padding: 0 15px;
    margin-left: -15px;
    overflow: hidden
}

.qust-series__card {
    background: #fff;
    border-radius: 2px;
    border: solid 1px #cdcece;
    padding: 2.4rem
}

@media(max-width: 767px) {
    .qust-series__card {
        padding:2rem 1.6rem
    }
}

.qust-series__title {
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .qust-series__title {
        font-size:2.4rem
    }
}

.qust-series .abc-form--qust .btn-wrap {
    text-align: right;
    padding-top: 2.4rem
}

@media(max-width: 767px) {
    .qust-series .abc-form--qust .btn-wrap {
        padding-top:1.2rem
    }
}

.qust-series .slick-slide.slick-active {
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24)
}

.benefits-list {
    max-width: 725px;
    margin: 0 auto;
    padding: 0
}

.benefits-list__item {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f3f6
}

@media(max-width: 767px) {
    .benefits-list__item {
        padding-bottom:1.6rem;
        margin-bottom: 1.6rem
    }
}

.benefits-list__item:last-child {
    border-bottom: 0
}

.benefits {
    padding-left: 8.5rem;
    position: relative
}

@media(max-width: 767px) {
    .benefits {
        padding-left:3.5rem
    }
}

.benefits__icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4.4rem;
    color: #b37671;
    max-width: 5.5rem
}

@media(max-width: 767px) {
    .benefits__icon {
        font-size:2.2rem;
        max-width: 2.2rem
    }
}

.benefits__title {
    display: block;
    font-size: 3.2rem;
    line-height: 1;
    color: #000
}

@media(max-width: 767px) {
    .benefits__title {
        font-size:2.2rem
    }
}

.benefits__title--typ-sm {
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-top: 2.5rem;
    margin-bottom: .8rem;
    display: block;
    color: #000
}

.benefits__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    display: block
}

@media(max-width: 767px) {
    .benefits__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.benefits__sublist {
    list-style: disc
}

@media(max-width: 767px) {
    .benefits__sublist {
        padding-top:0;
        padding-bottom: 1.5rem
    }
}

.benefits__sublist-item {
    font-size: 2.4rem;
    line-height: 3.2rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000 !important
}

@media(max-width: 767px) {
    .benefits__sublist-item {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media(max-width: 767px) {
    .benefits--mobile-v2 {
        padding-left:0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center
    }

    .benefits--mobile-v2 .benefits__icon {
        position: relative;
        top: auto;
        left: auto;
        font-size: 5rem;
        max-width: 5rem;
        width: 30%;
        margin-right: 1.5rem;
        margin-bottom: 1.5rem
    }

    .benefits--mobile-v2 .benefits__title--typ2 {
        width: 75%;
        margin-bottom: 1.5rem
    }

    .benefits--mobile-v2 .benefits__desc {
        width: 100%
    }
}

.info-banner__wrap {
    vertical-align: middle;
    padding: 2.9rem 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .info-banner__wrap {
        display:block;
        margin: 0 -15px;
        padding: 1rem 1.6rem;
        padding-bottom: 8rem;
        overflow: hidden
    }
}

.info-banner__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000
}

@media(max-width: 1200px) {
    .info-banner__title {
        font-size:3.4rem;
        line-height: 3.6rem
    }
}

@media(max-width: 767px) {
    .info-banner__title {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.info-banner__icon {
    font-size: 11rem;
    color: #b37671;
    display: inline-block;
    max-width: 11rem
}

@media(max-width: 1200px) {
    .info-banner__icon {
        font-size:8rem
    }
}

@media(max-width: 767px) {
    .info-banner__icon {
        font-size:8rem;
        position: absolute;
        left: 1.5rem;
        bottom: -1.8rem;
        max-width: 8rem
    }
}

@media(max-width: 767px) {
    .info-banner__icon--img {
        bottom:0
    }
}

.info-banner__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 0
}

@media(max-width: 1200px) {
    .info-banner__desc {
        font-size:2rem;
        line-height: 2.2rem
    }
}

@media(max-width: 767px) {
    .info-banner__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.info-banner__title-wrap {
    margin-left: 3.2rem
}

@media(max-width: 767px) {
    .info-banner__title-wrap {
        margin-left:0
    }
}

.info-banner__action-wrap {
    margin-left: auto;
    display: inline-block
}

@media(max-width: 767px) {
    .info-banner__action-wrap {
        position:absolute;
        right: 1.5rem;
        bottom: 2.1rem
    }
}

.info-banner--typ-no-icon {
    height: 16rem
}

@media(max-width: 767px) {
    .info-banner--typ-no-icon {
        margin:0 -1.5rem
    }
}

.info-banner--typ-no-icon .info-banner__wrap {
    padding: 2.9rem 0
}

@media(max-width: 767px) {
    .info-banner--typ-no-icon .info-banner__wrap {
        padding:2rem 0 5.4rem 0
    }
}

.info-banner--typ-no-icon .info-banner__title-wrap {
    margin-left: 0
}

@media(max-width: 767px) {
    .info-banner--typ-no-icon .info-banner__action-wrap {
        right:2rem;
        bottom: 1rem
    }
}

.bg-nav__cont-item .light-grey-full:before,.bg-nav__cont-item .light-grey-full:after {
    display: none
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .light-grey-full:before,.bg-nav__cont-item .light-grey-full:after {
        display:block
    }
}

.bg-nav__cont-item .info-banner__wrap {
    padding-left: 48px;
    padding-right: 48px
}

@media screen and (max-width: 1200px) {
    .bg-nav__cont-item .info-banner__wrap {
        padding-left:40px;
        padding-right: 40px
    }
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .info-banner__wrap {
        padding-left:0;
        padding-right: 0
    }
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .info-banner__icon {
        bottom:-4.2rem
    }
}

.tips__list {
    padding-left: 5rem;
    counter-reset: section;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 767px) {
    .tips__list {
        display:block;
        -ms-flex-flow: inherit;
        flex-flow: inherit;
        -ms-flex-pack: inherit;
        justify-content: inherit;
        padding-left: 2rem
    }
}

.tips__item {
    padding-left: 1rem;
    position: relative;
    width: 45%;
    margin-bottom: 5rem
}

@media(max-width: 767px) {
    .tips__item {
        width:100%;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid #f1f3f6
    }

    .tips__item:last-child {
        border-bottom: none
    }
}

.tips__item:before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero);
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #b37671;
    display: block;
    position: absolute;
    left: 0;
    top: -3px;
    font-weight: 400
}

@media(max-width: 767px) {
    .tips__item:before {
        font-size:2.2rem;
        line-height: 2.4rem;
        top: 0
    }
}

.tips__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .tips__title {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.tips__info {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1.5rem
}

.tips__info:last-child {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .tips__info {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.tips__list-item {
    margin-bottom: 4rem
}

.tips__list-item:last-child {
    margin-bottom: 0
}

.tips__list-item .tips__title {
    margin-bottom: 2rem
}

.tips--typ-full .tips__item {
    width: 100%;
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .tips--typ-full .tips__item:last-child {
        margin-bottom:2rem
    }
}

@media(max-width: 767px) {
    .tips--typ-full .tips__item {
        border-bottom:none;
        padding-bottom: 0;
        margin-bottom: 2rem
    }
}

.tips--typ-full .tips__title-wrap {
    margin-bottom: 2.5rem
}

.tips--no-count .tips__item {
    padding-left: 0
}

.tips--no-count .tips__item:before {
    content: none
}

.tips--no-count .tips__list {
    padding-left: 0
}

.info-card {
    padding: 3rem 0
}

@media(max-width: 767px) {
    .info-card {
        padding:2rem 0
    }
}

.info-card__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-left: 7rem;
    margin-bottom: 1rem;
    min-height: 7rem
}

@media(max-width: 1200px) {
    .info-card__title {
        font-size:2.4rem;
        line-height: 2.4rem;
        min-height: 5rem
    }
}

@media(max-width: 767px) {
    .info-card__title {
        font-size:2.2rem;
        line-height: 2.4rem;
        min-height: 5rem
    }
}

.info-card__info {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

.info-card__info:last-child {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .info-card__info {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.info-card__icon {
    font-size: 5rem;
    color: #b37671;
    position: absolute;
    top: 2rem;
    max-width: 5rem
}

@media(max-width: 767px) {
    .info-card__icon {
        font-size:3.8rem;
        max-width: 3.8rem
    }
}

.info-card__tile {
    padding: 2.5rem 2rem;
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    position: relative;
    border-radius: 2px;
    border: 1px solid #cdcece
}

@media(max-width: 1020px) {
    .info-card__tile {
        height:27rem
    }
}

@media(max-width: 767px) {
    .info-card__tile {
        height:21rem
    }
}

.info-card__tile--typ2 {
    height: 28rem
}

@media(max-width: 1200px) {
    .info-card__tile--typ2 {
        height:32rem
    }
}

.info-card .slick-slide {
    margin: 0 1.6rem
}

.info-card .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 1020px) {
    .info-card .slick-list {
        padding:0 10% 0 0;
        margin: 0
    }
}

.info-card--v2 {
    padding: 0
}

.info-card--v2 .info-card__tile {
    height: 42.4rem
}

@media(max-width: 1200px) {
    .info-card--v2 .info-card__tile {
        height:32rem
    }
}

@media(max-width: 767px) {
    .info-card__wrap {
        margin-right:-15px
    }
}

.info-card__wrap .slick-slide>div,.info-card__wrap .slick-slide .info-card__item,.info-card__wrap .slick-slide .info-card__tile {
    height: 100%
}

@media(max-width: 1020px) {
    .info-card .slick-nav--info-card,.info-card .slick-nav--info-card2 {
        display:none
    }
}

.illustration__img-wrap {
    border-radius: 2px;
    border: 1px solid #cdcece;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    display: block;
    padding: 1.5rem;
    width: 100%
}

@media(max-width: 767px) {
    .illustration__img-wrap {
        padding:.4rem
    }
}

.illustration__btn {
    display: none;
    margin-top: 1rem;
    margin-left: auto;
    background: transparent;
    border: none
}

.illustration__btn .illustration__icon {
    font-size: 2rem;
    color: #da9089;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem
}

.illustration__btn .illustration__link {
    color: #da9089;
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline
}

@media(max-width: 767px) {
    .illustration__btn {
        display:block
    }
}

.illustration__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 10000;
    display: none
}

.illustration__close {
    position: absolute;
    right: 2rem;
    top: 2rem
}

.illustration__icon-close {
    font-size: 2rem;
    color: #fff
}

.illustration__img-popup {
    display: none;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: auto;
    left: 1rem;
    right: 1rem;
    height: 12rem;
    position: fixed;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10001
}

.illustration--active .illustration__img-popup {
    display: block
}

.illustration--active .illustration__overlay {
    display: block
}

.wb-footer {
    background: #201e19;
    padding: 6rem 0
}

.wb-footer.nps-footer {
    background: unset;
    padding: unset
}

.wb-footer.nps-footer .footer-bottom-wrapper {
    padding: 0 25px
}

.wb-footer.nps-footer .footer-bottom-wrapper .footerlogo {
    margin: 20px auto 5px auto;
    max-width: 1360px
}

.wb-footer.nps-footer .footer-bottom-wrapper .footerlogo img {
    width: 78px;
    height: 18px
}

.wb-footer.nps-footer .footer-bottom-wrapper .copyright {
    max-width: 1360px;
    margin: 5px auto 20px auto;
    font-size: 1.6rem;
    line-height: 2.4rem;
    opacity: .7;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .wb-footer {
        padding:2rem 0 4rem
    }
}

.wb-footer .foot-link-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #cdcece
}

@media(max-width: 767px) {
    .wb-footer .foot-link-wrap {
        margin:0 -15px;
        border-bottom: 0
    }
}

.wb-footer .foot-link-wrap__col {
    width: 25%
}

@media(max-width: 1020px) {
    .wb-footer .foot-link-wrap__col {
        width:50%
    }
}

@media(max-width: 767px) {
    .wb-footer .foot-link-wrap__col {
        width:100%
    }
}

.wb-footer .img-link-block {
    display: -ms-flexbox;
    display: flex
}

.wb-footer .img-link-block__img {
    max-width: 5.5rem;
    height: 3.6rem;
    margin-right: 1rem
}

.foot-link-set {
    padding-right: 5rem
}

.foot-link-set img {
    width: 13rem;
    height: auto;
    aspect-ratio: 1/1
}

@media(max-width: 767px) {
    .foot-link-set {
        border-bottom:1px solid #cdcece;
        padding: 0 15px
    }
}

.foot-link-set__title-link {
    font-family: "pfencoresanspro-bold",sans-serif;
    font-size: 1.8rem;
    line-height: 2.6rem;
    color: #cdcece;
    margin-bottom: .8rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.foot-link-set__title-link:hover,.foot-link-set__title-link:active,.foot-link-set__title-link:focus {
    color: #da9089
}

.foot-link-set__title-link .icon {
    display: none
}

@media(max-width: 767px) {
    .foot-link-set__title-link {
        font-size:1.6rem;
        line-height: 2rem;
        padding: 2rem 3.5rem 2rem 0;
        margin-bottom: 0;
        position: relative
    }

    .foot-link-set__title-link br {
        display: none
    }

    .foot-link-set__title-link .icon {
        display: block;
        position: absolute;
        right: 0;
        top: 1.2rem;
        font-family: font-icons;
        font-size: 1.4rem;
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
        text-align: center;
        z-index: 1;
        transition: transform .3s ease-out
    }
}

@media(max-width: 767px) {
    .foot-link-set--active .foot-link-set__title-link .icon {
        -ms-transform:rotate(180deg);
        transform: rotate(180deg)
    }
}

.foot-link-set__sub-title {
    font-family: "pfencoresanspro-bold",sans-serif;
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: #cdcece;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.foot-link-set__link {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    line-height: 2.6rem;
    color: #cdcece;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.foot-link-set__link--bold {
    font-family: "pfencoresanspro-bold",sans-serif;
    line-height: 2.2rem
}

.foot-link-set__link:hover,.foot-link-set__link:active,.foot-link-set__link:focus {
    color: #da9089
}

.foot-link-set__list {
    padding-left: 0;
    margin-bottom: 4rem
}

.foot-link-set__list--sub {
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .foot-link-set__list {
        margin-bottom:2rem
    }
}

.foot-link-set__list--social {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.foot-link-set__list--social .foot-link-set__item {
    margin-right: 1.2rem
}

@media(max-width: 767px) {
    .foot-link-set__list--social .foot-link-set__item {
        margin-right:4rem
    }
}

@media(max-width: 767px) {
    .foot-link-set__list--social .foot-link-set__item::last-child {
        margin-right:0
    }
}

.foot-link-set__list--social .foot-link-set__icon {
    font-size: 2.2rem;
    color: #cdcece
}

@media(max-width: 767px) {
    .foot-link-set__list--social .foot-link-set__icon {
        font-size:2.8rem
    }
}

.foot-link-set__list--tax {
    max-width: 21rem
}

@media(max-width: 767px) {
    .foot-link-set__list--tax {
        max-width:100%
    }
}

.foot-link-set__list--tax .foot-link-set__item {
    padding: 1.8rem 0;
    border-bottom: 1px solid #cdcece
}

.foot-link-set__list--tax .foot-link-set__item:first-child {
    padding-top: 0
}

.foot-link-set__list--tax .foot-link-set__item:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.foot-link-set__list--tax .foot-link-set__link {
    line-height: 2.1rem;
    white-space: normal
}

@media(max-width: 767px) {
    .foot-link-set__cont {
        display:none
    }
}

.aware-block {
    padding: 2rem 0;
    border-bottom: 1px solid #cdcece;
    margin-bottom: 3rem
}

.aware-block__title {
    font-family: "pfencoresanspro-bold",sans-serif;
    font-size: 1.8rem;
    line-height: 2.6rem;
    color: #cdcece;
    margin-bottom: .8rem
}

.aware-block__desc {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #cdcece;
    margin: 0
}

.reg-office {
    padding: 2rem 0;
    border-bottom: 1px solid #cdcece
}

@media(max-width: 767px) {
    .reg-office {
        border-top:1px solid #cdcece
    }
}

.reg-office__title {
    font-family: "pfencoresanspro-bold",sans-serif;
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: #cdcece;
    display: block;
    margin-bottom: 2rem
}

.reg-office__title:nth-child(2) {
    margin-bottom: .8rem
}

.reg-office__desc {
    font-family: "pfencoresanspro-book",sans-serif;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #cdcece;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .foot-link-socialset {
        padding:0 15px
    }
}

.brief-history-wrap {
    padding: 3rem 0
}

.brief-history-wrap .title-wrap__title {
    text-align: center
}

@media(max-width: 1020px) {
    .history-card-list {
        margin:0 -15px
    }
}

.history-card-list .slick-slide {
    margin: 0 1.6rem
}

.history-card-list .slick-slide>div {
    height: 100%
}

.history-card-list .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 1020px) {
    .history-card-list .slick-list {
        padding:0 1.5rem 0;
        margin: 0 -15px
    }
}

.history-years-list {
    max-width: 54.5rem;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: 100%
}

.history-years-list .slick-list {
    width: 100%
}

@media screen and (max-width: 1024px) and (min-width:768px) {
    .history-years-list .slick-slide {
        width:80px !important
    }
}

@media screen and (max-width: 1024px) {
    .slick-nav--history {
        display:none
    }
}

.history-card {
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border: solid 1px #cdcece;
    background-color: #fff;
    padding: 1.2rem 2.4rem 8rem 2.4rem;
    min-height: 20rem;
    position: relative;
    height: 100%
}

@media(max-width: 767px) {
    .history-card {
        min-height:15rem
    }
}

.history-card__brief {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000
}

@media(max-width: 767px) {
    .history-card__brief {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.history-card__date {
    font-size: 2.2rem;
    line-height: 2.4rem;
    color: #6c7174;
    margin-bottom: .6rem;
    display: block;
    text-align: right
}

@media(max-width: 767px) {
    .history-card__date {
        font-size:1.6rem;
        line-height: 1.6rem
    }
}

.history-card__icon {
    font-size: 8rem;
    position: absolute;
    right: 2.4rem;
    bottom: 0;
    margin: 0;
    max-width: 8rem
}

@media(max-width: 767px) {
    .history-card__icon {
        font-size:6rem;
        max-width: 6rem;
        bottom: 0
    }
}

.profiles__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0
}

.profiles__item {
    width: 33%;
    margin-top: 8rem
}

.profiles__item:first-child,.profiles__item:nth-child(2),.profiles__item:nth-child(3) {
    margin-top: 0
}

@media(max-width: 767px) {
    .profiles__item {
        width:100%;
        margin-top: 2rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .profiles__item:nth-child(2),.profiles__item:nth-child(3) {
        margin-top: 2rem
    }
}

.profiles__item--modal {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0
}

.profiles__item--accord {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem
}

.profiles__item--accord:nth-child(2),.profiles__item--accord:nth-child(3) {
    margin-top: 4rem
}

@media(max-width: 767px) {
    .profiles__item--accord {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
        margin-top: 0;
        margin-top: 3rem
    }

    .profiles__item--accord:nth-child(2),.profiles__item--accord:nth-child(3) {
        margin-top: 3rem
    }
}

.profiles__img-wrap {
    max-width: 18rem;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .profiles__img-wrap {
        max-width:12.5rem;
        margin: 0 1.6rem 0 0
    }
}

.profiles__img-wrap--modal {
    max-width: 16rem;
    margin: 0 2.4rem 2.4rem 0
}

@media(max-width: 767px) {
    .profiles__img-wrap--modal {
        margin:0 1.6rem 2rem 0
    }
}

.profiles__name {
    font-size: 3.2rem;
    line-height: 1;
    color: #000
}

.profiles__name--accord {
    width: 50%
}

@media(max-width: 767px) {
    .profiles__name--accord {
        width:100%
    }
}

@media(max-width: 767px) {
    .profiles__name {
        font-size:2.2rem
    }
}

.profiles__designation {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #000;
    min-height: 4.8rem;
    padding-right: 30px
}

@media(max-width: 767px) {
    .profiles__designation {
        min-height:3.6rem;
        margin-bottom: 1.6rem;
        padding-right: 0
    }
}

.profiles__designation--accord {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .profiles__designation {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.profiles__button {
    padding-left: 0
}

@media(max-width: 767px) {
    .profiles__button {
        font-size:1.8rem;
        line-height: 1.8rem
    }
}

.profiles__about {
    max-height: 336px;
    padding-bottom: 2.4rem
}

.on-page-editor .profiles__list>div {
    width: 33%;
    margin-top: 8rem
}

.on-page-editor .profiles__list>div:nth-child(1),.on-page-editor .profiles__list>div:nth-child(2),.on-page-editor .profiles__list>div:nth-child(3) {
    margin-top: 0
}

.on-page-editor .profiles__item {
    width: 100%
}

.profiles-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    display: none;
    z-index: 10002
}

.profiles-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    display: none;
    max-width: 640px;
    max-height: 544px;
    border-radius: 2px;
    background: #fff;
    padding: 2.4rem 1rem 0 2.4rem;
    z-index: 10003
}

@media(max-width: 767px) {
    .profiles-modal {
        left:0;
        bottom: 0;
        -ms-transform: none;
        transform: none;
        top: unset;
        max-width: 100%
    }
}

.profiles-modal__close {
    position: absolute;
    top: 2.7rem;
    right: 2.4rem
}

.profiles-modal__close-icon {
    font-size: 1.5rem;
    color: #6a4742
}

.our-people-wrap {
    width: 100%
}

@media(max-width: 1020px) {
    .people-list {
        margin:0 -15px 4rem;
        padding-left: 15px;
        width: auto
    }
}

.people-list .slick-slide {
    margin: 0 .8rem
}

.people-list .slick-list {
    margin: 0 -1.6px
}

.media-mentions-wrap {
    position: relative;
    display: inline-block;
    width: 100%
}

.media-mentions-wrap .ad-banner {
    max-width: 26.6%;
    width: 100%;
    position: relative;
    display: inline-block;
    float: right
}

@media(max-width: 1020px) {
    .media-mentions-wrap .ad-banner {
        display:none
    }
}

.media-mentions {
    padding: 4rem 3.2rem 4rem 0;
    max-width: 58.5%;
    display: inline-block
}

@media(max-width: 1200px) {
    .media-mentions {
        max-width:55%
    }
}

@media(max-width: 1020px) {
    .media-mentions {
        max-width:100%
    }
}

@media(max-width: 767px) {
    .media-mentions {
        padding-right:0
    }
}

.media-mentions__list {
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.6rem
}

@media(max-width: 767px) {
    .media-mentions__list {
        -ms-flex-pack:justify;
        justify-content: space-between
    }
}

.media-mentions__item {
    margin-right: 3.2rem;
    text-align: center;
    max-width: 110px;
    overflow-wrap: break-word
}

@media(max-width: 767px) {
    .media-mentions__item {
        margin-right:0
    }
}

.media-mentions__icon-wrap {
    border-radius: 50%;
    background: #f1f3f6;
    width: 8rem;
    height: 8rem;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.24);
    margin: 0 auto 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

@media(max-width: 767px) {
    .media-mentions__icon-wrap {
        width:5.6rem;
        height: 5.6rem
    }
}

.media-mentions__icon {
    font-size: 3rem;
    line-height: 8rem;
    max-width: 3.2rem
}

@media(max-width: 767px) {
    .media-mentions__icon {
        font-size:2.4rem;
        line-height: 5.6rem;
        max-width: 2.4rem
    }
}

.media-mentions__name {
    font-size: 2rem;
    line-height: 1
}

@media(max-width: 767px) {
    .media-mentions__name {
        font-size:1.6rem
    }
}

.media-mentions__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.company-profile {
    padding: 4rem 0
}

@media(max-width: 767px) {
    .company-profile {
        padding:2rem 0
    }
}

.company-profile .cat-pro-banner__desc {
    margin-bottom: 3rem
}

.company-profile .tips__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .company-profile .tips__title {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.company-profile .tips__item {
    padding-left: 1.5rem
}

.contact {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0
}

@media(max-width: 767px) {
    .contact {
        margin:0 -15px
    }
}

.contact__head {
    background: #f1f3f6;
    padding: 1.6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .contact__head {
        padding:1.6rem 15px;
        position: relative;
        background: transparent;
        cursor: pointer
    }
}

.contact__body {
    padding: 1.6rem 0
}

@media(max-width: 767px) {
    .contact__body {
        padding:1.6rem 15px;
        margin-bottom: 2rem;
        border-bottom: 1px solid #f1f3f6;
        display: none
    }
}

@media(max-width: 767px) {
    .contact__body--center {
        text-align:center
    }
}

.contact__item {
    width: calc(50% - 1.6rem);
    border-bottom: 1px solid #f1f3f6;
    margin-bottom: 3.2rem
}

@media(max-width: 767px) {
    .contact__item {
        width:100%;
        margin-bottom: 0
    }

    .contact__item:nth-child(1),.contact__item:nth-child(2) {
        margin-bottom: 0
    }
}

@media(max-width: 767px) {
    .contact__item--active .contact__head {
        background:#f1f3f6
    }
}

.contact__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000
}

@media(max-width: 767px) {
    .contact__title {
        font-size:2rem;
        line-height: 2rem
    }
}

.contact__icon {
    font-size: 1.8rem;
    line-height: 1;
    max-width: 2rem;
    margin-right: 1.6rem
}

@media(max-width: 767px) {
    .contact__icon {
        font-size:1.6rem;
        margin-right: 2rem
    }
}

.contact__sublist {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0
}

@media(max-width: 767px) {
    .contact__sublist {
        display:block
    }
}

.contact__sublist--row {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.contact__sublist--row .contact__subitem {
    width: 50%;
    margin-bottom: 1rem
}

.contact__sublist--row .contact__subitem:last-child,.contact__sublist--row .contact__subitem:nth-last-child(2) {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .contact__sublist--row .contact__subitem:last-child,.contact__sublist--row .contact__subitem:nth-last-child(2) {
        margin-bottom:1.5rem
    }
}

@media(max-width: 767px) {
    .contact__sublist--row .contact__subitem {
        width:100%;
        margin-bottom: 1.5rem
    }
}

@media(max-width: 767px) {
    .contact__subitem {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 1.5rem
    }
}

.contact__desc {
    display: block;
    font-size: 2rem;
    line-height: 2.2rem
}

.contact__desc--bold {
    color: #000;
    display: inline-block
}

.contact__desc--v2 {
    margin-top: 1.6rem
}

@media(max-width: 767px) {
    .contact__desc {
        font-size:1.8rem;
        line-height: 1.8rem
    }
}

.contact a[href^="tel:"],.contact__link {
    color: #da9089 !important;
    font-size: 2rem;
    line-height: 2.2rem
}

@media(max-width: 767px) {
    .contact a[href^="tel:"],.contact__link {
        font-size:1.8rem;
        line-height: 1.8rem
    }
}

.contact__meta {
    display: none;
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: #6c7174;
    text-align: right
}

@media(max-width: 767px) {
    .contact__meta {
        display:block
    }
}

.contact-us-wrap.accordian--v2 .accordian__item .accordian__title {
    background: #fff
}

.contact-us-wrap.accordian--v2 .accordian__item--active .accordian__title {
    background: #f1f3f6;
    border-color: #f1f3f6
}

.contact-us-wrap .accordian__icon {
    color: #6a4742
}

.icon-card__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0
}

.icon-card__item {
    text-align: center;
    width: calc(20% - 3.2rem);
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border: solid 1px #cdcece;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 3rem 2rem 2rem;
    margin-right: 3.2rem;
    margin-bottom: 2rem;
    position: relative
}

.icon-card__item:last-child {
    padding-bottom: 1rem
}

@media(max-width: 1020px) {
    .icon-card__item {
        width:calc(20% - .8rem)
    }
}

@media(max-width: 767px) {
    .icon-card__item {
        width:calc(50% - .8rem);
        margin-bottom: 1.6rem;
        padding: 2rem 1.2rem 1rem
    }

    .icon-card__item:nth-child(odd) {
        margin-right: .8rem
    }

    .icon-card__item:nth-child(even) {
        margin-right: 0
    }
}

.icon-card__icon-wrap {
    margin-bottom: 1.5rem
}

.icon-card__icon {
    font-size: 7rem;
    line-height: 1;
    margin-bottom: 1rem;
    max-width: 7rem
}

@media(max-width: 767px) {
    .icon-card__icon {
        font-size:5rem;
        max-width: 5rem
    }
}

.icon-card__name {
    font-size: 2rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 767px) {
    .icon-card__name {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.icon-card__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.on-page-editor .icon-card__list>div {
    width: calc(20% - 3.2rem);
    margin-right: 3.2rem;
    margin-bottom: 2rem
}

.on-page-editor .icon-card__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0
}

.public-disclosure .col-xs-6 {
    width: 50%
}

.disclaimer__info,.disclaimer__label {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #6c7174;
    font-family: "pfencoresanspro-book",sans-serif
}

.disclaimer__info {
    margin-bottom: 1.5rem
}

.disclaimer__label {
    text-transform: uppercase
}

.disclaimer__title-wrap {
    margin-bottom: 1rem
}

.bg-nav {
    position: relative;
    padding: 0 0 0 28.8rem
}

@media(max-width: 1020px) {
    .bg-nav {
        padding:0;
        margin: 0 -1.5rem
    }
}

.bg-nav__title {
    display: none
}

@media(max-width: 1020px) {
    .bg-nav__title {
        display:block;
        font-size: 2.2rem;
        line-height: 1;
        font-family: "pfhandbookpro-thin",sans-serif;
        padding: 0 15px
    }
}

.bg-nav__nav-link {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #da9089;
    font-family: "pfhandbookpro-regular",sans-serif;
    background: #fdf7f7;
    padding: 1.4rem 1.5rem;
    border-radius: .4rem;
    transition: all .3s ease-in;
    display: block
}

.bg-nav__nav-link:hover,.bg-nav__nav-link--active {
    background: #6a4742;
    color: #f1f3f6
}

.bg-nav__nav-item {
    display: block;
    margin-bottom: 1.6rem
}

.bg-nav__nav-item:last-child {
    margin-bottom: 0
}

.bg-nav__cont-item {
    padding: 4rem 0
}

.bg-nav__cont-item:first-child {
    padding-top: 0
}

.bg-nav__cont-item .info-banner__title-wrap {
    margin: 0 1.5rem
}

@media(max-width: 1020px) {
    .bg-nav__cont-item {
        padding:2rem 1.5rem
    }
}

.bg-nav__nav {
    position: absolute;
    left: 0;
    padding-left: 0;
    top: .8rem;
    transition: top .4s ease-out;
    max-width: 25.6rem
}

.bg-nav__nav--sticky {
    position: fixed;
    margin-top: 4rem;
    top: 3.2rem
}

@media(max-width: 1020px) {
    .bg-nav__nav {
        position:relative;
        display: block;
        left: auto;
        top: auto;
        margin: 3rem 0;
        padding: 0 1.5rem;
        max-width: 100%
    }
}

.bg-nav--dropdown {
    position: relative
}

@media(max-width: 1020px) {
    .bg-nav--dropdown {
        margin:0 0 2rem
    }
}

.bg-nav__dropdown {
    width: 100%;
    border: 1px solid #cdcece;
    max-width: 288px;
    margin-right: 3.2rem;
    position: relative;
    padding: 1.2rem 1.8rem;
    border-radius: 4px;
    cursor: pointer
}

@media(max-width: 1020px) {
    .bg-nav__dropdown {
        max-width:100%;
        margin: 0 0 2rem 0
    }
}

.bg-nav__selected {
    font-size: 1.8rem;
    line-height: 1
}

.bg-nav__selected--placeholder {
    color: #6c7174;
    text-transform: capitalize
}

.bg-nav__drop-icon {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #6a4742;
    position: absolute;
    right: 1rem;
    top: 1.2rem
}

.bg-nav__droplist {
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 2px 4px 0 rgba(205,206,206,.25);
    position: absolute;
    top: 45px;
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
    z-index: 1;
    max-height: 22rem;
    overflow: hidden;
    display: none
}

.bg-nav__droplist .mCSB_inside>.mCSB_container {
    margin-right: 0
}

.bg-nav__droplist .bg-nav__nav-item {
    font-size: 1.6rem;
    line-height: 2rem;
    background: transparent;
    color: #000;
    border-bottom: 1px solid #cdcece;
    width: 100%;
    margin-bottom: 0
}

.bg-nav__droplist .bg-nav__nav-item--active .tabs__anchor {
    background: transparent;
    color: #000
}

.bg-nav__droplist .bg-nav__nav-item--active .tabs__anchor:hover {
    color: #000
}

.bg-nav__droplist .bg-nav__nav-link {
    font-size: 2rem;
    line-height: 1.1;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 1rem 1.6rem;
    border-radius: 2px;
    transition: all .5s ease;
    display: block;
    background: transparent;
    color: #000;
    display: block
}

@media(max-width: 1020px) {
    .bg-nav__droplist .bg-nav__nav-link {
        display:inline-block;
        text-align: left;
        width: 100%
    }
}

.bg-nav__droplist .bg-nav__nav-link--active,.bg-nav__droplist .bg-nav__nav-link:hover {
    color: #000;
    background: #f1f3f6
}

.bg-nav__droplist .bg-nav__nav-link:active,.bg-nav__droplist .bg-nav__nav-link:focus-within {
    color: #000;
    background: #f1f3f6
}

@media(max-width: 1020px) {
    .bg-nav__cont-wrap {
        padding-left:0
    }
}

@media(max-width: 1020px) {
    .bg-nav__info-banner {
        margin:0 -1.5rem
    }
}

@media(max-width: 1020px) {
    .bg-nav__info-banner-icon {
        font-size:7rem
    }
}

@media(max-width: 1020px) {
    .bg-nav__lead-form {
        margin:0 -1.5rem;
        width: auto;
        padding: 2rem 1.5rem
    }
}

@media(max-width: 1020px) {
    .bg-nav__lead-form-wrap {
        width:90% !important
    }
}

@media(max-width: 1020px) {
    .bg-nav__tips {
        margin:0 -1.5rem
    }
}

.bg-nav .media-tile-list {
    max-width: 73.6rem
}

.bg-nav .wb-info-card1-bg {
    background: transparent
}

.bg-nav .wb-info-card1-bg:before,.bg-nav .wb-info-card1-bg:after {
    display: none
}

.bg-nav .light-grey-full:before,.bg-nav .light-grey-full:after {
    display: none
}

@media(max-width: 1020px) {
    .bg-nav .light-grey-full:before,.bg-nav .light-grey-full:after {
        display:block
    }
}

.bg-nav .accordian--v2 {
    max-width: 100%
}

.bg-nav .video-blog-wrap--v2 {
    padding: 3rem 45px
}

.bg-nav .wb-lead-from-bg {
    padding: 3rem 5rem
}

.bg-nav .wb-lead-from-bg:before,.bg-nav .wb-lead-from-bg:after {
    display: none
}

@media(max-width: 1020px) {
    .bg-nav .wb-lead-from-bg:before,.bg-nav .wb-lead-from-bg:after {
        display:block
    }
}

.bg-nav .lead-form__container {
    display: block
}

.bg-nav .lead-form__title-wrap {
    margin-bottom: 2.5rem
}

@media screen and (max-width: 1200px) {
    .bg-nav .lead-form__title {
        font-size:3rem
    }
}

.bg-nav .lead-form__wrap {
    width: 60%
}

@media(max-width: 1020px) {
    .bg-nav .lead-form__wrap {
        width:90% !important
    }
}

.bg-nav .benefits-list {
    max-width: inherit
}

@media(max-width: 767px) {
    .bg-nav .benefits {
        padding-left:0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center
    }

    .bg-nav .benefits__icon {
        position: relative;
        top: auto;
        left: auto;
        font-size: 5rem;
        max-width: 5rem;
        width: 30%;
        margin-right: 1.5rem;
        margin-bottom: 1.5rem
    }
}

.why-buy {
    padding: 5rem 4rem
}

@media(max-width: 767px) {
    .why-buy {
        padding:3rem 1.5rem;
        margin: 0 -1.5rem
    }
}

.why-buy__title-wrap {
    margin-bottom: 4rem
}

.why-buy__list {
    max-width: inherit
}

.why-buy__item {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 4rem
}

.why-buy__item:last-child {
    margin-bottom: 0
}

.why-buy__item:nth-child(-n+3) {
    display: block
}

@media(max-width: 767px) {
    .why-buy__item:nth-child(-n+3).benefits--mobile-v2 {
        display:-ms-flexbox;
        display: flex
    }
}

.why-buy__button-link {
    margin-top: 1.7rem;
    margin-left: 6.5rem
}

@media(max-width: 767px) {
    .why-buy__button-link {
        margin-top:4rem;
        margin-left: 0;
        padding-left: 0
    }
}

.why-buy__button-link {
    margin-top: 1.7rem;
    margin-left: 6.5rem
}

@media(max-width: 767px) {
    .why-buy__button-link {
        margin-top:4rem;
        margin-left: 0;
        padding-left: 0
    }
}

.benefits-ulip__title-wrap {
    margin-bottom: 3.5rem
}

.benefits-ulip__list {
    max-width: inherit
}

.benefits-ulip__desc {
    margin-bottom: 1rem
}

.benefits-ulip__item {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f3f6
}

.benefits-ulip__item:last-child {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #f1f3f6
}

@media(max-width: 767px) {
    .benefits-ulip__item {
        padding-bottom:1.6rem;
        margin-bottom: 1.6rem
    }

    .benefits-ulip__item:last-child {
        margin-bottom: 3rem;
        padding-bottom: 1.6rem;
        border-bottom: 1px solid #f1f3f6
    }
}

.benefits-ulip__item:nth-child(-n+3) {
    display: block
}

@media(max-width: 767px) {
    .benefits-ulip__item:nth-child(-n+3).benefits--mobile-v2 {
        display:-ms-flexbox;
        display: flex
    }
}

.benefits-ulip__button-link {
    padding-left: 0
}

.btn-wrap {
    display: block;
    width: 100%
}

.btn-wrap.btn-left {
    text-align: left
}

.btn-wrap.btn-right {
    text-align: right
}

.btn-wrap.btn-center {
    text-align: center
}

.buy-plan {
    max-width: 39.4rem;
    margin: 0 auto;
    margin-top: 0
}

.buy-plan .tabs__sub-title {
    font-weight: 500
}

@media(max-width: 1020px) {
    .buy-plan {
        margin-top:2rem;
        padding-left: 1.6rem;
        padding-right: 1.6rem
    }
}

.website-ticker {
    padding: .5rem 1.5rem
}

.website-ticker__marquee {
    font-size: 1.6rem;
    line-height: 1;
    color: #000
}

.website-ticker__marquee a {
    color: #000
}

@media(max-width: 767px) {
    .website-ticker__marquee {
        font-size:1.4rem
    }
}

.locate-us__iframe {
    width: 100%;
    height: 70rem
}

@media(max-width: 767px) {
    .locate-us__iframe {
        height:61.2rem
    }
}

.wb-mob-nav-wrap {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: transform .4s ease-out;
    z-index: 9
}

.wb-mob-nav-wrap--active {
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.wb-mob-nav-wrap .search-wrap {
    padding: 0 1.5rem;
    position: relative;
    z-index: 5
}

.wb-mob-nav-wrap .search-wrap img {
    max-width: 400px;
    width: 100%
}

.wb-mob-nav-wrap .search-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 3
}

.wb-mob-nav-wrap__search-goback {
    position: absolute;
    left: 1.5rem;
    top: 2rem;
    display: none;
    font-size: 1.8rem;
    line-height: 1;
    padding-left: 0;
    z-index: 6
}

.wb-mob-nav-wrap__search-goback:hover,.wb-mob-nav-wrap__search-goback:focus,.wb-mob-nav-wrap__search-goback:active {
    color: #d9908a
}

.wb-mob-nav-wrap__search-goback .icon {
    font-size: 1.4rem;
    color: #d9908a
}

.wb-mob-nav-wrap__close {
    text-align: right;
    display: block;
    padding: 2rem 1.5rem 2.4rem
}

.wb-mob-nav-wrap__close .icon {
    color: #6a4742;
    font-size: 1.6rem
}

.wb-mob-nav-wrap__close:hover {
    padding: 2rem 1.5rem 2.4rem
}

.wb-mob-nav-wrap__copyright {
    font-size: 1.2rem;
    line-height: 1.4rem;
    color: #6c7174;
    padding-left: 1.5rem
}

.wb-mob-nav {
    position: relative;
    height: calc(100vh - 15rem)
}

.wb-mob-nav__head {
    padding: 1.6rem 1.5rem 2rem;
    position: relative
}

.wb-mob-nav__go-back {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none
}

.wb-mob-nav__go-back--active {
    display: block
}

.wb-mob-nav__go-back .icon {
    font-size: 1.8rem;
    color: #d9908a
}

.wb-mob-nav__title {
    text-align: center;
    font-weight: 500
}

.wb-mob-nav__title--default,.wb-mob-nav__title--link {
    color: #000;
    font-size: 2.2rem;
    line-height: 2.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.wb-mob-nav__title--default:active,.wb-mob-nav__title--default:hover,.wb-mob-nav__title--default:focus,.wb-mob-nav__title--link:active,.wb-mob-nav__title--link:hover,.wb-mob-nav__title--link:focus {
    color: #000
}

.wb-mob-nav__title--link {
    color: #d9908a;
    text-decoration: underline;
    display: none;
    padding: 0 4rem
}

.wb-mob-nav__title--link .icon {
    display: none
}

.wb-mob-nav__title--link:active,.wb-mob-nav__title--link:hover,.wb-mob-nav__title--link:focus {
    color: #d9908a
}

.wb-mob-nav__link a {
    font-size: 2rem;
    color: #000;
    padding: 2.05rem 4rem 2.05rem 1.5rem;
    width: 100%;
    display: block;
    border-bottom: 1px solid #f1f3f6;
    position: relative
}

.wb-mob-nav__link a:hover,.wb-mob-nav__link a.active {
    color: #fff;
    background: #d9908a
}

.wb-mob-nav__link a:hover .icon-arrow,.wb-mob-nav__link a.active .icon-arrow {
    color: #fff
}

.wb-mob-nav__link .icon-arrow {
    color: #6a4742;
    font-size: 1.8rem;
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    -ms-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg)
}

.wb-mob-nav__link--typ2 a {
    color: #d9908a;
    border-bottom: 0;
    text-decoration: underline
}

.wb-mob-nav__link {
    text-decoration: none;
    list-style: none;
    height: 100%;
    min-width: 100%
}

.wb-mob-nav__link-list--level1 {
    display: block;
    min-width: 100%
}

.wb-mob-nav__link .wb-mob-nav__link-list--level2 {
    display: none;
    position: relative;
    left: 0;
    background: #fff;
    display: none;
    min-width: 100%;
    margin: 0;
    padding: 0
}

.wb-mob-nav__link.active .wb-mob-nav__link-list--level2 {
    display: block
}

.wb-mob-nav__link-list--level2 li .wb-mob-nav__link-list--level3 {
    display: none;
    position: relative;
    left: 0;
    background: #fff;
    display: none;
    min-width: 100%;
    margin: 0;
    padding: 0
}

.wb-mob-nav__link-list--level2 li.active .wb-mob-nav__link-list--level3 {
    display: block
}

.wb-mob-nav__link-list--level3 li .wb-mob-nav__link-list--level4 {
    display: none;
    position: relative;
    left: 0;
    background: #fff;
    display: none;
    min-width: 100%;
    margin: 0;
    padding: 0
}

.wb-mob-nav__link-list--level3 li.active .wb-mob-nav__link-list--level4 {
    display: block
}

.first-level.active .icon-arrow::before {
    color: #6a4742;
    font-size: 1.8rem;
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.Second-level.active .icon-arrow::before {
    color: #6a4742;
    font-size: 1.8rem;
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.Third-level.active .icon-arrow::before {
    color: #6a4742;
    font-size: 1.8rem;
    display: inline-block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.download-file {
    padding: 3rem 0
}

@media(max-width: 1020px) {
    .download-file {
        background:transparent
    }
}

.download-file__container {
    max-width: 1200px;
    margin: 0 auto
}

@media(max-width: 1200px) {
    .download-file__container {
        width:100%;
        padding: 0 10rem
    }
}

@media(max-width: 1020px) {
    .download-file__container {
        width:100%;
        padding: 0 1.5rem
    }
}

.download-file__title-wrap {
    text-align: center
}

.download-file__count {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: block;
    margin-bottom: 1.5rem
}

.download-file__item {
    border-bottom: 1px solid #f1f3f6;
    display: none
}

.download-file__item:nth-child(-n+10) {
    display: block
}

@media(max-width: 1020px) {
    .download-file__item {
        margin:0 -15px
    }
}

.download-file__list {
    padding: 0
}

.download-file__list--typ2 .download-file__item {
    display: none
}

.download-file__list--typ2 .download-file__item:nth-child(-n+5) {
    display: block
}

.download-file__view-action {
    margin-top: 2rem;
    text-align: center
}

@media(max-width: 1020px) {
    .download-file__view-action {
        text-align:left
    }
}

.download-file--v2 {
    padding: 4rem 0
}

@media(max-width: 1020px) {
    .download-file--v2 {
        padding:0 0 2rem 0
    }
}

.download-file--v2 .download-file__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 -1.5rem
}

@media(max-width: 1020px) {
    .download-file--v2 .download-file__list {
        display:block;
        -ms-flex-flow: initial;
        flex-flow: initial
    }
}

.download-file--v2 .download-file__item {
    width: 33.33%;
    padding: 0 1.5rem
}

@media(max-width: 1020px) {
    .download-file--v2 .download-file__item {
        width:auto;
        padding: 0;
        margin: 0
    }
}

@media(max-width: 1200px) {
    .download-file--v2 .download-band__action-wrap .download-band__act-btn {
        margin-left:1rem
    }
}

.download-band {
    background: #fff;
    padding: 2rem;
    display: table;
    width: 100%
}

.download-band__label {
    font-size: 2rem;
    line-height: 1.1;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

.download-band__icon {
    font-size: 1.5rem;
    color: #6a4742
}

.download-band__title-wrap {
    text-align: left
}

.download-band__action-wrap {
    text-align: right;
    width: 30%
}

.download-band__action-wrap .download-band__act-btn {
    display: inline-block;
    margin-left: 3rem
}

.download-band__action-wrap .download-band__act-btn:first-child {
    margin-left: 0
}

.download-band__title-wrap,.download-band__action-wrap {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
    margin: 0
}

@media(max-width: 767px) {
    .download-band__title-wrap,.download-band__action-wrap {
        vertical-align:top
    }
}

.download-band__name {
    display: table-cell;
    padding-right: 8rem
}

.download-band__name:last-child {
    padding-right: 0
}

.download-band__name:nth-child(2) {
    width: 110px;
    padding-right: 0
}

@media screen and (max-width: 767px) {
    .download-band__name:nth-child(2) {
        width:45px
    }
}

@media(max-width: 767px) {
    .download-band__name {
        padding-right:1.5rem;
        vertical-align: top
    }
}

.download-band__label {
    margin-bottom: 0
}

.share-menu {
    position: relative
}

.share-menu__menu {
    background: #fff;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.18);
    padding: 2rem 1.5rem;
    transition: all .3s ease;
    width: 22.4rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    -ms-transform: translate(-50%,150%);
    transform: translate(-50%,150%);
    z-index: 2
}

.share-menu__menu:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 1rem 1rem 1rem;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    left: 50%;
    top: -1rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.share-menu__label {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 2rem
}

.share-menu__icon {
    font-size: 2.8rem;
    color: #6a4742 !important;
    display: inline-block;
    margin-right: 1rem;
    vertical-align: middle
}

.share-menu__text {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s ease;
    text-transform: capitalize
}

.share-menu__item-link {
    padding: 1rem 0
}

.share-menu__item-link:hover .share-menu__text {
    color:  #19503e
}

.share-menu__link-wrap {
    padding: 0
}

.share-menu__link-item {
    margin-bottom: 1rem
}

.share-menu__link-item:last-child {
    margin-bottom: 0
}

.share-menu:hover .share-menu__menu {
    opacity: 1;
    visibility: visible;
    -ms-transform: translate(-50%,105%);
    transform: translate(-50%,105%)
}

@media(max-width: 1020px) {
    .download-filter .form-row--download .col-xs-6 {
        -ms-flex:0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media(max-width: 767px) {
    .download-filter .form-row--download .col-xs-6 {
        -ms-flex:0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

@media(max-width: 1020px) {
    .download-filter .form-row--download .col-xs-12 {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media(max-width: 767px) {
    .download-filter .form-row--download .col-xs-12 {
        -ms-flex:0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media(max-width: 1020px) {
    .download-filter .abc-form--download-filter .row {
        width:100%;
        margin: 0
    }
}

.download-filter .abc-form--download-filter .selectize-input .item~.item {
    display: none
}

.download-filter__second-field {
    margin-top: 4rem
}

@media(max-width: 1020px) {
    .download-filter__second-field {
        margin-top:1rem
    }
}

@media(max-width: 767px) {
    .download-filter__second-field {
        margin-top:1rem
    }
}

.search-results__title {
    font-size: 3.2rem;
    line-height: 1;
    font-family: "pfhandbookpro-thin",sans-serif;
    text-align: center;
    margin-bottom: 3rem
}

@media(max-width: 1020px) {
    .search-results__title {
        font-size:2rem;
        font-family: "pfhandbookpro-regular",sans-serif;
        margin-bottom: 2rem;
        text-align: left
    }
}

.search-results__error {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color:  #19503e;
    margin-bottom: 2rem;
    text-align: center
}

@media(max-width: 1020px) {
    .search-results__error {
        font-size:1.2rem;
        line-height: 1.4rem;
        text-align: left
    }
}

@media(max-width: 1020px) {
    .search-results__block-wrap {
        width:auto;
        margin: 0 -15px
    }
}

.search-results__block {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 1.8rem);
    margin-bottom: 2.2rem
}

.search-results__block:nth-child(odd) {
    margin-right: 3.2rem
}

@media(max-width: 1020px) {
    .search-results__block {
        width:100%;
        margin-bottom: 0
    }

    .search-results__block:nth-child(odd) {
        margin-right: 0
    }
}

.search-results__head {
    font-size: 2.4rem;
    line-height: 2.6rem;
    background: #f5f5f5;
    padding: 1.8rem 6.4rem
}

@media(max-width: 1020px) {
    .search-results__head {
        padding:2rem 1.5rem;
        font-size: 2rem;
        line-height: 1;
        color: #6c7174
    }
}

.search-results__list {
    padding: 0 6.4rem
}

@media(max-width: 1020px) {
    .search-results__list {
        padding:0 1.5rem
    }
}

.search-results__item {
    border-bottom: 1px solid #f1f3f6;
    position: relative
}

.search-results__item:last-child {
    border-bottom: 0
}

.search-results__link {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    display: block;
    padding: 2.4rem 0;
    white-space: nowrap;
    width: 65%;
    overflow: hidden;
    text-overflow: ellipsis
}

.search-results__link:hover,.search-results__link:focus,.search-results__link:active {
    color: #000
}

.search-results__link:hover .search-results__icon,.search-results__link:focus .search-results__icon,.search-results__link:active .search-results__icon {
    color:  #19503e
}

@media(max-width: 1020px) {
    .search-results__link {
        padding:2rem 0;
        font-size: 2rem;
        line-height: 1
    }
}

.search-results__icon {
    font-size: 1.8rem;
    line-height: 1;
    color: #6a4742;
    position: absolute;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.search-results .searchaccordian__item {
    display: none
}

.search-results .searchaccordian__view-all,.search-results .searchaccordian__view-less {
    padding: 20px 6.4rem 10px
}

@media screen and (max-width: 1020px) {
    .search-results .searchaccordian__view-all,.search-results .searchaccordian__view-less {
        padding:20px 2.4rem 10px 15px
    }
}

.search-results__head {
    position: relative;
    cursor: pointer
}

.search-results__head .accordian__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.search-results__head.active>.accordian__icon:before {
    content: ""
}

.abc-form--search .form-group {
    margin-bottom: 0
}

.abc-form--search .select {
    width: 71.3%
}

.abc-form--search .selectize-dropdown .option {
    color: #000
}

.abc-form--search .selectize-dropdown .option a {
    color: #000;
    border-bottom: none
}

.abc-form--search .selectize-dropdown .optgroup-header {
    font-size: 1.4rem;
    line-height: 1.6rem;
    background: #f5f5f5;
    color: #6c7174;
    padding: .8rem 1.6rem
}

.abc-form--search .selectize-control.single .item {
    color: #000;
    line-height: 3.2rem
}

.abc-form--search .selectize-control.single .selectize-input {
    border: 0;
    height: 46px
}

.abc-form--search .selectize-control.single .selectize-input:after {
    display: none
}

.abc-form--search .selectize-control.single .selectize-input input {
    height: 3.2rem
}

.abc-form--search .selectize-dropdown-content {
    background: #fff;
    width: 32.8rem;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid #cdcece;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.16),0 0 1px 0 rgba(0,0,0,.08)
}

@media(max-width: 1020px) {
    .abc-form--search .selectize-dropdown-content {
        width:calc(100vw - 3rem)
    }
}

.abc-form--search .selectize-dropdown [data-selectable] .highlight {
    background: #6c7174;
    color: #fff
}

.abc-form--search .input-group--search {
    border: 1px solid #cdcece;
    padding-left: 1px;
    background: #fff;
    border-radius: 4px
}

.abc-form--search .input-group--search .input-group-addon {
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    position: relative;
    padding: 0 1.5rem;
    cursor: pointer
}

.abc-form--search .input-group--search .input-group-addon--clear {
    display: none
}

.abc-form--search .input-group--search .input-group-addon .icon {
    font-size: 1.8rem;
    line-height: 4.6rem;
    margin: 0;
    color: #6a4742
}

.abc-form--search .input-group--search .input-group-addon .icon-cancel {
    font-size: 1.4rem
}

.abc-form--search .input-group--search .form-control {
    box-shadow: none;
    border: none;
    padding: 1rem
}

.abc-form--search .input-group--search .form-control:-ms-input-placeholder {
    color: #cdcece;
    font-size: 1.8rem;
    line-height: 1;
    font-family: "pfhandbookpro-regular",sans-serif
}

.abc-form--search .input-group--search .form-control::placeholder {
    color: #cdcece;
    font-size: 1.8rem;
    line-height: 1;
    font-family: "pfhandbookpro-regular",sans-serif
}

.abc-form--search .input-group--search .input-group-btn {
    background: #6a4742
}

.abc-form--search .input-group--search .input-group-btn .bubble {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #6a4742;
    position: absolute;
    top: -20%;
    right: 6%
}

.abc-form--search .input-group--search .input-group-btn .btn {
    padding: 1rem 2rem;
    font-size: 2rem;
    line-height: 2.4rem;
    color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif
}

.abc-form--search .input-group--search .form-control {
    padding: 8px;
    border-radius: 4px;
    height: 46px
}

.abc-form--search .input-group--search .form-control:-ms-input-placeholder {
    color: #495057;
    opacity: 1
}

.abc-form--search .input-group--search .form-control::placeholder {
    color: #495057;
    opacity: 1
}

.abc-form--search .input-group--search .input-group-btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.optgroup-header {
    font-size: 1.4rem;
    line-height: 1.6rem;
    background: #f5f5f5;
    color: #6c7174;
    padding: .8rem 1.6rem;
    font-weight: bold;
    border-color: #cdcece
}

.website-search-wrap--page-level {
    display: none
}

@media(max-width: 1020px) {
    .website-search-wrap--page-level {
        display:block
    }
}

@media screen and (max-width: 1020px) {
    ul#ui-id-2,ul#ui-id-3 {
        width:calc(100% - 34px) !important
    }
}

.article-list__title-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 3rem;
    padding: 0 2rem 0 1.5rem
}

.article-list__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    text-transform: capitalize
}

@media(max-width: 767px) {
    .article-list__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.article-list__slick-nav {
    display: none
}

@media(max-width: 1020px) {
    .article-list__slick-nav {
        display:none
    }
}

@media(max-width: 767px) {
    .article-list__slick-nav {
        display:none
    }
}

.article-list__list {
    background: #fff
}

.article-list__list .slick-nav {
    margin-top: 3.2rem
}

.article-list__item-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 1.5rem
}

.article-list__item-list .article-list__item-tile {
    width: 100%;
    max-width: 40.4rem;
    margin-right: 3.2rem
}

.article-list__item-list .article-list__item-tile:last-child {
    margin-right: 0
}

.article-list__item-list .slick-list {
    margin: 0 -1.5rem;
    width: calc(100% + 3rem)
}

.article-list__item-list .slick-list .slick-track {
    margin-left: 0
}

.article-list__item-list .slick-slide>div {
    height: 100%
}

.article-list__item-list .slick-slide .article-list__item-tile {
    height: 100%;
    margin-bottom: 0
}

.article-list__item-list .slick-slide .media-tile__wrapper--blog {
    min-height: 100%;
    height: 100%
}

@media(max-width: 1020px) {
    .article-list__item-list .slick-dots {
        position:relative
    }
}

.article-list__item-list.slick-initialized+.article-list__slick-nav {
    display: block
}

@media(max-width: 1020px) {
    .article-list__item-list.slick-initialized+.article-list__slick-nav {
        display:none
    }
}

@media(max-width: 767px) {
    .article-list__item-list.slick-initialized+.article-list__slick-nav {
        display:none
    }
}

.article-list__button {
    padding: 0
}

@media(max-width: 767px) {
    .article-list__button {
        font-size:1.8rem;
        line-height: 2rem
    }
}

@media(max-width: 1020px) {
    .article-list--bg-mobile {
        margin:0 -1.5rem;
        padding: 1.5rem;
        background: rgba(237,201,198,.15)
    }
}

@media(max-width: 767px) {
    .article-list--bg-mobile {
        margin:0 -1.5rem;
        padding: 1.5rem;
        background: rgba(237,201,198,.15)
    }
}

.article-list--bg-mobile .article-list__list {
    background: transparent
}

.article-list .slick-dots {
    bottom: -2rem
}

@media(max-width: 1020px) {
    .article-list__slick-nav--popular {
        display:none
    }
}

.article-detail__button {
    padding: 0;
    text-decoration: none
}

.article-detail__item-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 100%;
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .article-detail__item-list {
        left:auto
    }
}

.article-detail__item-tile {
    width: 33.33%;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    margin-top: 0
}

@media(max-width: 1020px) {
    .article-detail__item-tile {
        width:50%
    }
}

@media(max-width: 767px) {
    .article-detail__item-tile {
        width:100%;
        padding: 0
    }
}

@media(max-width: 1020px) {
    .article-detail__item-tile:nth-last-child(-n+2) {
        margin-bottom:0
    }
}

.article-detail__item-tile:nth-last-child(-n+3) {
    margin-bottom: 0
}

@media(max-width: 1020px) {
    .article-detail__item-tile:nth-last-child(-n+3) {
        margin-bottom:2rem
    }
}

@media(max-width: 767px) {
    .article-detail__item-tile:nth-last-child(-n+3) {
        margin-bottom:2rem
    }
}

@media(max-width: 767px) {
    .article-detail__item-tile:last-child {
        margin-bottom:0
    }
}

@media(max-width: 767px) {
    .article-detail__item-tile .article-detail__wrapper--blog {
        min-height:28rem
    }
}

@media(max-width: 767px) {
    .article-detail__item-tile .article-detail__media--blog {
        height:18rem
    }
}

.article-detail__title-wrap {
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .article-detail__title-wrap {
        margin-bottom:2rem
    }
}

.highlighted {
    display: inline;
    position: relative;
    background: #cdcece
}

.highlighted--active {
    background: #edc9c6;
    cursor: pointer
}

.highlighted--active:hover {
    background: #da9089
}

.highlighted__tooltip {
    position: absolute;
    top: -7.5rem;
    right: -3rem;
    padding: 1.6rem;
    background: #fff;
    box-shadow: 0 3px 4px 0 rgba(0,0,0,.16);
    border: 1px solid #cdcece;
    display: block;
    cursor: pointer
}

.highlighted__tooltip:hover,.highlighted__tooltip:active {
    background: #f0ecec
}

.highlighted__tooltip:hover:after,.highlighted__tooltip:active:after {
    border-top-color: #f0ecec
}

.highlighted__tooltip:after {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid transparent;
    border-top: 1.5rem solid #fff
}

.highlighted__tooltip--clear {
    display: none;
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6a4742;
    font-family: "pfhandbookpro-regular",sans-serif;
    top: -5.5rem;
    width: 13rem
}

.highlighted__tooltip--clear:after {
    border-top-color: #fff
}

.highlighted__icon {
    font-size: 2.8rem;
    line-height: 1;
    color: #6a4742
}

.article-detail-info__container {
    width: 73.4rem;
    margin: 3rem auto
}

@media(max-width: 1020px) {
    .article-detail-info__container {
        width:80%;
        margin: 1.5rem auto
    }
}

@media(max-width: 767px) {
    .article-detail-info__container {
        width:100%;
        margin: 1.5rem auto
    }
}

.article-detail-info__container--share {
    margin: 0 auto
}

@media(max-width: 1020px) {
    .article-detail-info__container--share {
        width:80%;
        margin: 0 auto
    }
}

@media(max-width: 767px) {
    .article-detail-info__container--share {
        width:100%;
        margin: 0 auto
    }
}

.article-detail-info__title-wrap {
    padding-bottom: 2.4rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid #f1f3f6
}

.article-detail-info__meta {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .article-detail-info__meta {
        font-size:1.2rem;
        line-height: 1.4rem
    }
}

.article-detail-info__meta-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-left: 0
}

.article-detail-info__meta-info .article-detail-info__item {
    margin-right: 6rem
}

@media(max-width: 1020px) {
    .article-detail-info__meta-info .article-detail-info__item {
        margin-right:3.5rem
    }
}

@media(max-width: 767px) {
    .article-detail-info__meta-info .article-detail-info__item {
        margin-right:1.7rem
    }
}

.article-detail-info__meta-info .article-detail-info__item:first-child {
    max-width: 300px
}

@media(max-width: 1020px) {
    .article-detail-info__meta-info .article-detail-info__item:first-child {
        max-width:225px
    }
}

@media(max-width: 767px) {
    .article-detail-info__meta-info .article-detail-info__item:first-child {
        max-width:180px;
        margin-right: auto
    }
}

@media(max-width: 425px) {
    .article-detail-info__meta-info .article-detail-info__item:first-child {
        max-width:110px
    }
}

.article-detail-info__meta-info .article-detail-info__item:last-child {
    margin-left: auto;
    margin-right: 0
}

@media(max-width: 767px) {
    .article-detail-info__meta-info .article-detail-info__item:last-child {
        margin-left:0
    }
}

.article-detail-info__meta-info .article-detail-info__item .media-tile__likes {
    position: relative;
    bottom: auto;
    right: auto
}

.article-detail-info__meta-info .article-detail-info__item .media-tile__likes .media-tile__like-icon {
    font-size: 1.5rem;
    margin: 4px
}

.article-detail-info__share-wrap {
    padding-left: 0;
    margin-left: -2rem
}

@media(max-width: 767px) {
    .article-detail-info__share-wrap {
        margin-left:-1rem
    }
}

.article-detail-info__share-item {
    display: inline-block;
    margin-right: 3.2rem;
    padding: 2rem;
    transition: all .3s ease-in;
    border-radius: 50%
}

@media(max-width: 1020px) {
    .article-detail-info__share-item {
        padding:1.5rem;
        margin-right: 2rem
    }
}

@media(max-width: 767px) {
    .article-detail-info__share-item {
        padding:1rem;
        margin-right: 1.5rem
    }
}

.article-detail-info__share-item:last-child {
    margin-right: 0;
    padding: 2rem
}

@media(max-width: 1020px) {
    .article-detail-info__share-item:last-child {
        padding:1.5rem
    }
}

@media(max-width: 767px) {
    .article-detail-info__share-item:last-child {
        padding:1rem
    }
}

.article-detail-info__share-item:hover {
    background: #f0ecec
}

.article-detail-info__share-item:hover .article-detail-info__icon {
    color: #6a4742
}

@media screen and (max-width: 991px) {
    .article-detail-info__share-item:only-child .share-menu__menu,.article-detail-info__share-item:first-child .share-menu__menu {
        margin-left:82px
    }
}

.article-detail-info__icon {
    font-size: 2.8rem;
    color: #6a4742 !important
}

@media(max-width: 767px) {
    .article-detail-info__icon {
        font-size:2.4rem
    }
}

.article-detail-info__img-banner {
    width: 100%;
    height: 56rem;
    overflow: hidden;
    margin: 6rem 0
}

@media(max-width: 1020px) {
    .article-detail-info__img-banner {
        width:auto;
        height: 40rem;
        margin: 4rem -1.5rem
    }
}

@media(max-width: 767px) {
    .article-detail-info__img-banner {
        width:auto;
        height: auto;
        margin: 4rem -1.5rem
    }
}

.article-detail-info__img-banner--first-child {
    margin-top: 2.4rem
}

.article-detail-info__img {
    width: 100%
}

.article-detail-info__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .article-detail-info__p {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 2rem
    }
}

.article-detail-info__highlighted {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .article-detail-info__highlighted {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.article-detail-info__highlighted--seperator {
    padding: 1.5rem 0;
    border-top: 1px solid #e2a7a2;
    border-bottom: 1px solid #e2a7a2
}

@media(max-width: 767px) {
    .article-detail-info__highlighted--seperator {
        padding:.8rem 0
    }
}

.likes {
    cursor: pointer
}

.likes__icon {
    font-size: 1.5rem
}

.likes--active .likes__icon {
    color:  #19503e
}

.author__title {
    font-size: 2rem;
    line-height: 2.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 2rem
}

.author__info {
    display: block
}

.author__img-wrap,.author__info-wrap {
    display: inline-block;
    vertical-align: middle
}

.author__img-wrap {
    width: 6.4rem;
    height: 6.4rem;
    overflow: hidden;
    margin-right: 2rem
}

@media(max-width: 767px) {
    .author__img-wrap {
        width:5rem;
        height: 5rem;
        margin-right: 1.2rem
    }
}

.author__img {
    width: 100%
}

.author__name {
    font-size: 2rem;
    line-height: 2.2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    text-transform: capitalize;
    display: block
}

@media(max-width: 767px) {
    .author__name {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.author__designation {
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    display: block
}

@media(max-width: 767px) {
    .author__designation {
        font-size:1.2rem;
        line-height: 1.4rem
    }
}

.insurance-dictionary__title-wrap {
    max-width: 44.8rem;
    margin-bottom: 8rem
}

@media(max-width: 767px) {
    .insurance-dictionary__title-wrap {
        margin-bottom:4rem
    }
}

.insurance-filter__link {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #cdcece;
    text-transform: uppercase;
    transition: all .3s ease-in
}

.insurance-filter__link--active,.insurance-filter__link:active,.insurance-filter__link:focus {
    color: #6a4742
}

@media(max-width: 767px) {
    .insurance-filter__link {
        letter-spacing:5px
    }
}

.insurance-filter__cont-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.insurance-filter__cont {
    padding: 0;
    max-width: 73.6rem
}

.insurance-filter__filter-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding: 0
}

@media(max-width: 767px) {
    .insurance-filter__filter-wrap {
        margin-bottom:2rem
    }
}

.insurance-filter__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .insurance-filter__title {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.insurance-filter__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .insurance-filter__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.insurance-filter__item {
    margin-bottom: 4rem;
    display: none
}

.insurance-filter__item:last-child {
    margin-bottom: 0
}

.insurance-filter__item--active {
    display: block
}

@media(max-width: 767px) {
    .insurance-filter__filter-item {
        margin-right:2.5rem;
        white-space: nowrap
    }
}

.feedback-wrap {
    width: 100%
}

.feedback-wrap .login-success {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border: solid 1px #cdcece;
    background-color: #fff;
    width: 100%;
    max-width: 32.8rem;
    text-align: center;
    padding: 2.4rem;
    z-index: 10003
}

.feedback-wrap .login-success--active {
    display: block
}

.feedback-wrap .login-success__icon {
    font-size: 6.4rem;
    line-height: 1;
    color: #1f874c
}

.feedback-wrap .login-success__title {
    font-size: 3.2rem;
    line-height: 1
}

.feedback-wrap .login-success__msg {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif
}

.feedback-wrap__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 10002;
    display: none
}

.feedback-wrap__overlay__close {
    position: absolute;
    right: 2rem;
    top: 2rem
}

.feedback-wrap__overlay__icon {
    font-size: 2rem;
    color: #fff
}

.feedback-wrap .tabs__anchor--v2 {
    color: #cdcece;
    background: transparent
}

.feedback-wrap .tabs__anchor--v2:hover,.feedback-wrap .tabs__anchor--v2:active,.feedback-wrap .tabs__anchor--v2:focus {
    color: #cdcece
}

.feedback-wrap .tabs__link--v2 {
    border-bottom: 1px solid #cdcece
}

.feedback-wrap .tabs__link--active .tabs__anchor--v2 {
    color: #6a4742;
    background: transparent;
    border-bottom: 2px solid #6a4742
}

.feedback-wrap .tabs__link--active .tabs__anchor--v2:hover,.feedback-wrap .tabs__link--active .tabs__anchor--v2:active,.feedback-wrap .tabs__link--active .tabs__anchor--v2:focus {
    color: #6a4742
}

.sme-scheme__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 3rem
}

.sme-scheme__p:last-child {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .sme-scheme__p {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 1.5rem
    }
}

.sme-scheme__desc {
    margin-bottom: 4rem
}

.sme-scheme__info-wrap {
    padding: 0
}

.sme-scheme__info-item {
    margin-bottom: 8rem
}

@media(max-width: 767px) {
    .sme-scheme__info-item {
        margin-bottom:4rem
    }
}

.sme-scheme__info-item:last-child {
    margin-bottom: 0
}

.sme-scheme__info-item:first-child {
    width: 60%
}

@media(max-width: 1020px) {
    .sme-scheme__info-item:first-child {
        width:100%
    }
}

@media(max-width: 767px) {
    .sme-scheme__info-item:first-child {
        width:100%
    }
}

.sme-scheme__form {
    width: 65%
}

@media(max-width: 767px) {
    .sme-scheme__form {
        width:100%
    }
}

.sme-scheme__tips {
    padding: 5rem 5rem 1rem 5rem
}

@media(max-width: 1020px) {
    .sme-scheme__tips {
        margin:0 -1.5rem 8rem;
        padding: 2rem 1.5rem
    }
}

@media(max-width: 767px) {
    .sme-scheme__tips {
        margin:0 -1.5rem 4rem;
        padding: 2rem 1.5rem
    }
}

.sme-scenario__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: .8rem
}

@media(max-width: 767px) {
    .sme-scenario__title {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.sme-scenario__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0
}

@media(max-width: 767px) {
    .sme-scenario__content {
        display:block;
        -ms-flex-pack: inherit;
        justify-content: inherit
    }
}

.sme-scenario__item {
    width: 48%
}

@media(max-width: 767px) {
    .sme-scenario__item {
        width:100%;
        margin-bottom: 2rem
    }

    .sme-scenario__item:last-child {
        margin-bottom: 0
    }
}

.sme-scenario__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .sme-scenario__desc {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 2rem
    }
}

.sme-scenario__img-wrap {
    max-height: 27.6rem
}

.sme-scenario__img {
    width: 100%
}

.rate-us__modal {
    position: fixed;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    max-width: 64rem;
    max-height: 57rem;
    background: #fff;
    padding: 2.4rem 2.4rem 0 2.4rem;
    z-index: 10003;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in;
    overflow-y: auto
}

@media(max-width: 767px) {
    .rate-us__modal {
        left:1rem;
        right: 1rem;
        -ms-transform: translate(0%,-50%);
        transform: translate(0%,-50%);
        width: auto;
        height: auto;
        padding: 1.5rem 2.4rem
    }
}

.rate-us__modal--active {
    visibility: visible;
    opacity: 1
}

.rate-us__modal--thankyou {
    max-width: 38.8rem;
    min-height: 18.6rem;
    padding: 2.4rem;
    height: auto
}

@media(max-width: 767px) {
    .rate-us__modal--thankyou {
        left:4rem;
        right: 4rem
    }
}

.rate-us__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: rgba(0,0,0,.6);
    z-index: 10002
}

.rate-us__title {
    font-size: 3.2rem;
    line-height: 1
}

@media(max-width: 767px) {
    .rate-us__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.rate-us__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .rate-us__desc {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 4rem
    }
}

.rate-us__desc--bold {
    font-family: "pfhandbookpro-regular",sans-serif
}

.rate-us__close {
    position: absolute;
    right: 2.4rem;
    top: 2.8rem
}

@media(max-width: 767px) {
    .rate-us__close {
        right:1.6rem;
        top: 1.6rem
    }
}

.rate-us__close-icon {
    font-size: 1.6rem;
    color: #6a4742
}

.rate-us .exp-rating__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    text-align: center;
    margin-bottom: 2.4rem
}

@media(max-width: 767px) {
    .rate-us .exp-rating__title {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.rate-us .noUi-horizontal {
    height: .5rem;
    background: #d8d8d8;
    border: none
}

.rate-us .noUi-horizontal:before,.rate-us .noUi-horizontal:after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.rate-us .noUi-horizontal:before {
    left: -.6rem;
    background: #edc9c6
}

.rate-us .noUi-horizontal:after {
    right: -.6rem;
    background: #d8d8d8
}

.rate-us .noUi-horizontal .noUi-connect {
    background: #edc9c6;
    background: -webkit-gradient(left top,right top,color-stop(0%,#edc9c6),color-stop(23%,#e2a7a2),color-stop(49%,#da9089),color-stop(73%,#b37671),color-stop(100%,#6a4742));
    background: linear-gradient(to right,#edc9c6 0%,#e2a7a2 23%,#da9089 49%,#b37671 73%,#6a4742 100%);
    filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr=" #edc9c6 ", endColorstr=" #6a4742 ", GradientType=1 )"
}

.rate-us .noUi-horizontal .noUi-handle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    right: -1rem;
    top: -.8rem;
    cursor: pointer
}

.rate-us .noUi-horizontal .noUi-handle:before,.rate-us .noUi-horizontal .noUi-handle:after {
    content: none
}

.rate-us .noUi-horizontal .noUi-marker-horizontal.noUi-marker-large {
    display: none
}

.rate-us .noUi-horizontal .noUi-marker-horizontal.noUi-marker-sub {
    height: .8rem;
    background: #6c7174
}

.rate-us .noUi-horizontal .noUi-value-horizontal.noUi-value-large {
    color: #6c7174;
    font-size: 2.4rem;
    line-height: 2.6rem;
    top: -.7rem
}

.rate-us .noUi-horizontal .noUi-value-horizontal.noUi-value-sub {
    display: none
}

.rate-us .noUi-horizontal .noUi-tooltip {
    bottom: -144%;
    background: #fdf7f7;
    border: 0;
    font-size: 2.4rem;
    line-height: 2.4rem;
    z-index: -1
}

.abc-form .form-group .form-check--smiley {
    display: inline-block;
    vertical-align: middle;
    width: 19%;
    text-align: center;
    padding-left: 0;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #cdcece;
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .abc-form .form-group .form-check--smiley {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.abc-form .form-group .form-check .radio.form-check-label--smiley {
    width: 4.2rem;
    height: 4.2rem;
    border: 0;
    box-shadow: none;
    display: block;
    position: relative;
    margin: 0 auto 1.2rem;
    transition: transform .3s ease-in
}

@media(max-width: 767px) {
    .abc-form .form-group .form-check .radio.form-check-label--smiley {
        width:3rem;
        height: 3rem
    }
}

.abc-form .form-group .form-check .radio.form-check-label--worst {
    background: url(../images/weary-face-emoji.png);
    background-size: cover
}

.abc-form .form-group .form-check .radio.form-check-label--poor {
    background: url(../images/sad-face-emoji.png);
    background-size: cover
}

.abc-form .form-group .form-check .radio.form-check-label--avg {
    background: url(../images/neutral-face-emoji.png);
    background-size: cover
}

.abc-form .form-group .form-check .radio.form-check-label--good {
    background: url(../images/relieved-emoji.png);
    background-size: cover
}

.abc-form .form-group .form-check .radio.form-check-label--excel {
    background: url(../images/heart-eyes-emoji.png);
    background-size: cover
}

.abc-form .form-group .form-check input:checked~.radio.form-check-label--smiley {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    -ms-transform: scale(1.33);
    transform: scale(1.33)
}

@media(max-width: 767px) {
    .abc-form .form-group .form-check input:checked~.radio.form-check-label--smiley {
        -ms-transform:scale(1.5);
        transform: scale(1.5)
    }
}

.abc-form .form-group .form-check input:checked~.form-check__text {
    color: #000
}

.abc-form .form-row--range-wrap {
    background: #fdf7f7;
    padding: 1.5rem 7rem 5rem;
    margin: 0 -2.4rem
}

@media(max-width: 767px) {
    .abc-form .form-row--range-wrap {
        padding:1.5rem 3rem 4rem
    }
}

.abc-form--rating .btn-wrap {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem
}

.on-page-editor .abc-form--rating .form-group .scLooseFrameZone.scEnabledChrome {
    display: inline-block;
    width: 19%;
    text-align: center;
    vertical-align: middle
}

.on-page-editor .abc-form--rating .form-group .scLooseFrameZone.scEnabledChrome .form-check--smiley {
    width: 100%
}

.msg {
    text-align: center
}

.msg__icon {
    font-size: 6rem;
    display: inline-block;
    margin-bottom: .8rem
}

.msg__img {
    max-width: 6rem;
    display: inline-block;
    margin-bottom: .8rem
}

.msg__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .msg__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.msg__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .msg__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.our-funds__page-title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 1.5rem
}

@media(max-width: 767px) {
    .our-funds__page-title {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: .5rem
    }
}

.our-funds__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    text-transform: capitalize
}

@media(max-width: 767px) {
    .our-funds__title {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.our-funds__title--bottom-space {
    margin-bottom: 1.5rem
}

.our-funds__desc .our-funds__p {
    margin-bottom: 5rem
}

@media(max-width: 767px) {
    .our-funds__desc .our-funds__p {
        margin-bottom:2.5rem
    }
}

.our-funds__desc .our-funds__p:last-child {
    margin-bottom: 0
}

.our-funds__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000
}

@media(max-width: 767px) {
    .our-funds__p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.our-funds__title-wrap {
    margin-bottom: 2.5rem
}

@media(max-width: 767px) {
    .our-funds__title-wrap {
        margin-bottom:1.5rem
    }
}

.our-funds__head {
    margin: 0 8rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f3f6
}

@media(max-width: 1020px) {
    .our-funds__head {
        margin:0
    }
}

@media(max-width: 767px) {
    .our-funds__head {
        margin:0;
        margin-bottom: 1.2rem
    }
}

.our-funds__container {
    max-width: 73.6rem;
    margin: 0 auto
}

.our-funds__container--left {
    margin: 0
}

.our-funds__social-wrap {
    margin-bottom: 3.5rem
}

@media(max-width: 767px) {
    .our-funds__social-wrap {
        margin-bottom:3rem
    }
}

.our-funds__social-wrap,.our-funds__info-wrap {
    padding: 0
}

.our-funds__social-item {
    display: inline-block;
    margin-right: 2rem;
    vertical-align: middle
}

.our-funds__social-item:last-child {
    margin-right: 0
}

.our-funds__social-link {
    font-size: 2.4rem;
    max-width: 2.4rem;
    max-height: 2.4rem;
    display: inline-block
}

@media(max-width: 767px) {
    .our-funds__social-link {
        font-size:2.2rem;
        max-width: 2.2rem;
        max-height: 2.2rem
    }
}

.our-funds__social-img {
    width: 100%
}

.our-funds__info-title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    margin-bottom: .8rem
}

@media(max-width: 767px) {
    .our-funds__info-title {
        font-size:3.2rem;
        line-height: 3.4rem;
        margin-bottom: .3rem
    }
}

.our-funds__info-subtitle {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 2.2rem
}

@media(max-width: 767px) {
    .our-funds__info-subtitle {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 1.3rem
    }
}

.our-funds__info-item {
    margin-bottom: 8rem
}

@media(max-width: 767px) {
    .our-funds__info-item {
        margin-bottom:3.7rem
    }
}

.our-funds__info-item:last-child {
    margin-bottom: 0
}

.our-funds__form {
    margin-top: 4rem
}

@media(max-width: 767px) {
    .our-funds__form {
        margin-top:2rem
    }
}

@media(max-width: 767px) {
    .our-funds__form .form-group--download {
        width:100%
    }
}

.our-funds__infography {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 1020px) {
    .our-funds__infography {
        display:block;
        -ms-flex-align: initial;
        align-items: initial;
        -ms-flex-pack: initial;
        justify-content: initial
    }
}

.our-funds__infography .our-funds__title-wrap {
    max-width: 73.6rem
}

@media(max-width: 1200px) {
    .our-funds__infography .our-funds__title-wrap {
        max-width:53rem
    }
}

.our-funds__img-wrap {
    max-width: 35.2rem;
    display: block
}

@media(max-width: 1020px) {
    .our-funds__img-wrap {
        width:80%;
        margin: 0 auto
    }
}

.our-funds__form-group {
    margin-bottom: 2rem
}

.our-funds__form-group:last-child {
    margin-bottom: 0
}

.our-funds__row {
    margin-top: 4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end
}

@media(max-width: 1020px) {
    .our-funds__row {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-top: 2rem
    }
}

@media(max-width: 767px) {
    .our-funds__row {
        display:block;
        -ms-flex-pack: initial;
        justify-content: initial;
        -ms-flex-align: initial;
        align-items: initial
    }
}

.our-funds__row .our-funds__form {
    margin-top: 0
}

.our-funds__row-item {
    width: 50%
}

@media(max-width: 767px) {
    .our-funds__row-item {
        width:100%;
        margin-bottom: 2rem
    }

    .our-funds__row-item:last-child {
        margin-bottom: 0
    }
}

.our-funds-list {
    padding: 0;
    counter-reset: section
}

.our-funds-list__item {
    margin-bottom: 8rem
}

@media(max-width: 767px) {
    .our-funds-list__item {
        margin-bottom:3.7rem
    }
}

.our-funds-list__item:last-child {
    margin-bottom: 0
}

.our-funds-list__item .our-funds-list__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000
}

@media(max-width: 767px) {
    .our-funds-list__item .our-funds-list__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.our-funds-list__item .our-funds-list__title--bottom-space {
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .our-funds-list__item .our-funds-list__title--bottom-space {
        margin-bottom:.9rem
    }
}

.our-funds-list__item .our-funds-list__title:before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero);
    color: #b37671;
    font-size: 3.2rem;
    line-height: 3.4rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: inline-block;
    margin-right: .7rem
}

@media(max-width: 767px) {
    .our-funds-list__item .our-funds-list__title:before {
        font-size:2.2rem;
        line-height: 2.4rem;
        margin-right: .25rem
    }
}

.our-funds-list__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .our-funds-list__p {
        font-size:1.8rem;
        line-height: 2.2rem;
        margin-bottom: 1.5rem
    }
}

.our-funds-list__highlight {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    display: inline-block;
    margin-right: .5rem
}

@media(max-width: 767px) {
    .our-funds-list__highlight {
        font-size:1.8rem;
        line-height: 2rem;
        margin-right: .2rem
    }
}

.our-funds-list__desc .our-funds-list__p:last-child {
    margin-bottom: 0
}

.our-funds-list__caption {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .our-funds-list__caption {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 1rem
    }
}

.our-funds-list__figure {
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .our-funds-list__figure {
        margin-bottom:2rem
    }
}

.our-funds-list__img {
    width: 100%
}

.our-funds-chart-wrap {
    max-width: 93rem;
    margin: 4rem auto 0
}

@media(max-width: 767px) {
    .our-funds-chart-wrap {
        margin:2rem auto 0
    }
}

.our-funds-chart-wrap .our-funds-chart {
    min-height: 40rem
}

@media(max-width: 767px) {
    .our-funds-chart-wrap .our-funds-chart {
        min-height:18rem
    }
}

.historical-nav-tabs {
    width: 100%
}

.historical-nav-tabs .tabs__anchor--v2 {
    min-width: 27rem;
    text-align: center
}

@media(max-width: 767px) {
    .historical-nav-tabs .tabs__anchor--v2 {
        min-width:50vw
    }
}

.historical-nav-tabs .tabs__links--v3 {
    max-width: 54.4rem;
    margin: 0 auto
}

@media(max-width: 1020px) {
    .historical-nav-tabs .tabs__links--v3 {
        max-width:100%
    }
}

.historical-nav-tabs .tabs__anchor--v3 {
    padding: 1rem 3.2rem
}

.historical-nav-tabs .abc-form {
    max-width: 54rem;
    margin: 4rem auto 0
}

@media(max-width: 1020px) {
    .historical-nav-tabs .abc-form {
        margin:2rem auto 0
    }
}

.historical-nav-tabs .table {
    max-width: 54rem;
    margin: 4rem auto 0;
    height: 211px;
    overflow-y: auto
}

@media(max-width: 767px) {
    .historical-nav-tabs .table {
        height:199px
    }
}

@media(max-width: 767px) {
    .historical-nav-tabs .table__head .table__heading:first-child,.historical-nav-tabs .table__head .table__data:first-child,.historical-nav-tabs .table__body .table__heading:first-child,.historical-nav-tabs .table__body .table__data:first-child {
        width:50%
    }
}

.historical-nav-tabs .graph-list .slick-slide {
    margin: 0 .8rem
}

@media(max-width: 1020px) {
    .historical-nav-tabs .graph-list {
        margin:0 -15px 0;
        padding-left: 15px;
        width: auto;
        max-width: none
    }
}

.data-value {
    padding: 2rem 0
}

@media(max-width: 1020px) {
    .data-value {
        padding:2rem 0
    }
}

.data-value__wrap {
    padding: 0;
    margin-bottom: 0
}

.data-value__item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8rem
}

@media(max-width: 1020px) {
    .data-value__item {
        margin-bottom:0;
        margin-right: 4rem
    }
}

@media(max-width: 767px) {
    .data-value__item {
        margin-bottom:2rem;
        margin-right: 4rem
    }
}

.data-value__item:last-child {
    margin-right: 0
}

@media(max-width: 1020px) {
    .data-value__item:last-child,.data-value__item:nth-last-child(2) {
        margin-bottom:0
    }
}

.data-value__label {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: .6rem
}

@media(max-width: 1020px) {
    .data-value__label {
        font-size:1.6rem;
        line-height: 1.8rem;
        margin-bottom: .2rem
    }
}

.data-value__value {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 0
}

@media(max-width: 1020px) {
    .data-value__value {
        font-size:2rem;
        line-height: 2.2rem
    }
}

.assets-allocation__wrap {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width: 1020px) {
    .assets-allocation__wrap {
        -ms-flex-flow:row wrap;
        flex-flow: row wrap
    }
}

@media(max-width: 767px) {
    .assets-allocation__wrap {
        display:block;
        -ms-flex-align: initial;
        align-items: initial;
        -ms-flex-pack: initial;
        justify-content: initial
    }
}

.assets-allocation__item-name {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #6c7174;
    display: block;
    margin-bottom: .5rem
}

@media(max-width: 767px) {
    .assets-allocation__item-name {
        font-size:2rem;
        line-height: 2.2rem;
        margin-bottom: 1rem
    }
}

@media(max-width: 1200px) {
    .assets-allocation__item {
        width:32%
    }
}

@media(max-width: 1020px) {
    .assets-allocation__item {
        width:48%;
        margin-bottom: 2rem
    }

    .assets-allocation__item:last-child {
        margin-bottom: 0
    }
}

@media(max-width: 767px) {
    .assets-allocation__item {
        margin-bottom:2rem;
        width: 100%
    }
}

@media(max-width: 767px) {
    .assets-allocation__item:last-child {
        margin-bottom:0
    }
}

.nav-calc {
    padding: 3rem
}

@media(max-width: 1020px) {
    .nav-calc {
        padding:3rem 1.5rem
    }
}

@media(max-width: 767px) {
    .nav-calc {
        margin:0 -1.5rem;
        padding: 2rem 1.5rem
    }
}

.nav-calc__item-wrap {
    padding: 0;
    margin: 0
}

.nav-calc__label {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: .5rem;
    display: block
}

@media(max-width: 767px) {
    .nav-calc__label {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.nav-calc__value {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #b37671;
    font-family: "pfhandbookpro-thin",sans-serif;
    position: relative;
    display: inline-block
}

@media(max-width: 767px) {
    .nav-calc__value {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.nav-calc__value .nav-calc__sup {
    position: absolute;
    top: .6rem;
    right: -1.7rem
}

.nav-calc__count {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #b37671;
    font-family: "pfhandbookpro-bold",sans-serif;
    display: block
}

@media(max-width: 767px) {
    .nav-calc__count {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.nav-calc__sup {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #b37671;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .nav-calc__sup {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.nav-calc__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 10rem
}

@media(max-width: 1020px) {
    .nav-calc__item {
        margin-right:4rem
    }
}

.nav-calc__item:last-child {
    margin-right: 0
}

.know-funds__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .know-funds__title {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.know-funds__p {
    font-size: 2.4rem;
    line-height: 1.1;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .know-funds__p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.know-funds__title-wrap {
    max-width: 73.6rem;
    margin-bottom: 2.4rem
}

.know-funds__link-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0
}

@media(max-width: 767px) {
    .know-funds__link-wrap {
        display:block;
        -ms-flex-pack: initial;
        justify-content: initial;
        -ms-flex-align: initial;
        align-items: initial
    }
}

.know-funds__link-item {
    width: 32%
}

@media(max-width: 767px) {
    .know-funds__link-item {
        width:100%;
        margin-bottom: 2rem
    }

    .know-funds__link-item:last-child {
        margin-bottom: 0
    }
}

.know-funds__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.6rem 3rem;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.24)
}

@media(max-width: 767px) {
    .know-funds__link {
        border-right:.2rem;
        padding: .95rem 2rem;
        min-height: 5rem
    }
}

.know-funds__link:hover .know-funds__icon--arrow {
    color:  #19503e
}

.know-funds__link--fixed-width {
    max-width: 54.4rem
}

.know-funds__link-text {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    text-transform: capitalize;
    width: 94%
}

@media(max-width: 767px) {
    .know-funds__link-text {
        font-size:2rem;
        line-height: 2.2rem;
        width: auto
    }
}

.know-funds__icon {
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
    color: #6a4742;
    display: inline-block;
    margin-right: 2rem
}

@media(max-width: 767px) {
    .know-funds__icon {
        font-size:2.3rem;
        width: 2.3rem;
        height: 2.3rem;
        margin-right: 1.6rem
    }
}

.know-funds__icon--arrow {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    transition: all .3s ease-in;
    margin-right: 0
}

@media(max-width: 767px) {
    .know-funds__icon--arrow {
        font-size:1.6rem;
        width: 1.6rem;
        height: 1.6rem
    }
}

.know-funds--container-sm {
    max-width: 73.6rem;
    margin: 0 auto
}

.group-service__btn {
    margin-top: 1rem;
    margin-left: auto;
    background: transparent;
    border: none;
    display: inline-block;
    margin-right: 4rem
}

.group-service__btn:last-child {
    margin-right: 0
}

.group-service__btn .group-service__icon {
    font-size: 1.8rem;
    color: #da9089;
    display: inline-block;
    vertical-align: middle;
    margin-right: .6rem
}

.group-service__btn .group-service__link {
    color: #da9089;
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline
}

.group-solutions {
    margin-bottom: 3rem
}

.group-solutions__desc {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    max-width: 73.6rem
}

@media(max-width: 767px) {
    .group-solutions__desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.group-solutions__item {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000 !important;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .group-solutions__item {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.group-solutions__list {
    max-width: 73.6rem;
    list-style-type: disc
}

.info-text {
    padding: 2rem 0
}

.info-text__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .info-text__title {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.info-text__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .info-text__p {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: 1rem
    }
}

.info-text__p:last-child {
    margin-bottom: 0
}

.info-text__desc {
    max-width: 73.6rem
}

.range-slider-wrap {
    max-width: 73.6rem;
    margin: 0 auto
}

.range-slider-wrap--img {
    padding: 8rem 0 5rem;
    max-width: 72.6rem
}

@media(max-width: 767px) {
    .range-slider-wrap--img {
        padding:7rem 0 5rem
    }
}

.range-slider-wrap--img .noUi-target {
    background: #ccc;
    border-radius: 9px;
    box-shadow: none;
    border: 0;
    margin-bottom: 8rem
}

.range-slider-wrap--img .noUi-connect {
    background: #c21b24
}

.range-slider-wrap--img .noUi-horizontal {
    height: 3px
}

.range-slider-wrap--img .noUi-horizontal .noUi-handle {
    width: 17px;
    height: 17px;
    border-radius: 24px;
    right: -5px;
    box-shadow: 0 0 16px 0 rgba(122,18,24,.49);
    background-image: linear-gradient(69deg,#ae000f 15%, #19503e 83%);
    cursor: pointer
}

.range-slider-wrap--img .noUi-horizontal .noUi-handle:before,.range-slider-wrap--img .noUi-horizontal .noUi-handle:after {
    display: none
}

@media(max-width: 1020px) {
    .range-slider-wrap--img .noUi-horizontal {
        margin:0 15px
    }
}

.range-slider-wrap--img .noUi-marker-horizontal.noUi-marker-large {
    width: 0
}

.range-slider-wrap--img .noUi-value {
    font-size: 2rem;
    line-height: 2.2rem
}

@media(max-width: 1020px) {
    .range-slider-wrap--img .noUi-value {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.range-slider-wrap--img .noUi-pips-horizontal {
    padding: 5px 0;
    width: calc(100% - 30px);
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.range-slider-wrap--img .noUi-tooltip {
    box-shadow: none;
    border: none;
    background: transparent
}

.range-slider-wrap--img .noUi-tooltip .icon {
    font-size: 6rem;
    color: #6a4742
}

@media(max-width: 1020px) {
    .range-slider-wrap--img .noUi-tooltip .icon {
        font-size:4rem
    }
}

.range-slider-wrap--img [disabled] .noUi-connect {
    background: #ccc
}

.range-slider-wrap--img [disabled] .noUi-tooltip {
    display: none
}

.range-slider-wrap--img [disabled].noUi-horizontal .noUi-handle {
    background: #ccc;
    box-shadow: none
}

@media(max-width: 1020px) {
    .range-slider-wrap--img .range-slider-wrap__title-wrap {
        margin-bottom:0;
        margin-top: 5.5rem
    }
}

.range-slider-wrap--img .range-slider-wrap__title-wrap {
    margin-bottom: 0
}

.range-slider-wrap__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1020px) {
    .range-slider-wrap__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.range-slider-wrap__input,.range-slider-wrap__dummy-inpt {
    display: inline-block;
    border: none;
    border-bottom: 1px solid #cdcece;
    text-align: right;
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #000;
    padding: 0 1rem;
    width: 80%
}

.range-slider-wrap__input:-ms-input-placeholder,.range-slider-wrap__dummy-inpt:-ms-input-placeholder {
    color: #f5f5f5
}

.range-slider-wrap__input::placeholder,.range-slider-wrap__dummy-inpt::placeholder {
    color: #f5f5f5
}

@media(max-width: 1020px) {
    .range-slider-wrap__input,.range-slider-wrap__dummy-inpt {
        font-size:3.2rem;
        line-height: 4rem
    }
}

.range-slider-wrap__input {
    display: none
}

.range-slider-wrap__input::-ms-clear {
    width: 0;
    height: 0
}

.range-slider-wrap__input.error+.range-slider-wrap__dummy-inpt {
    border: solid 1px #bd2b2b !important;
    background: #bd2b2b1f !important
}

.range-slider-wrap__input-text {
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #6c7174;
    position: absolute;
    right: 0;
    bottom: -2.2rem
}

@media(max-width: 767px) {
    .range-slider-wrap__input-text {
        font-size:1.2rem;
        line-height: 1.4rem;
        bottom: -1.8rem
    }
}

.range-slider-wrap .input-dummy__icon,.range-slider-wrap .input-dummy__value {
    display: inline-block;
    vertical-align: top
}

.range-slider-wrap .input-dummy__icon {
    font-size: 1.8rem;
    margin: 6px -3px 0 0
}

@media(max-width: 1020px) {
    .range-slider-wrap .input-dummy__icon {
        font-size:1.2rem;
        margin: 8px -3px 0 0
    }
}

.range-slider-wrap__title-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 5.5rem
}

.range-slider-wrap__wrap-item {
    width: 50%;
    position: relative
}

.range-slider-wrap__wrap-item:first-child {
    width: 48%
}

.range-slider-wrap__wrap-item:last-child {
    text-align: right
}

.range-slider-wrap__wrap-item--opac {
    opacity: 0
}

.range-slider-wrap--ruler {
    padding: 0 0 7rem
}

.range-slider-wrap--ruler .noUi-target {
    padding: 0 3rem;
    position: relative
}

@media(max-width: 767px) {
    .range-slider-wrap--ruler .noUi-target {
        margin:0 -15px
    }
}

.range-slider-wrap--ruler .noUi-target:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6.7rem;
    background: #edc9c6;
    opacity: .3
}

.range-slider-wrap--ruler .noUi-target.noUi-horizontal {
    height: 0;
    border: none
}

.range-slider-wrap--ruler .noUi-marker-horizontal.noUi-marker {
    background: #d9908a;
    width: 1px;
    height: 1.6rem
}

.range-slider-wrap--ruler .noUi-marker-horizontal.noUi-marker.noUi-marker-large {
    height: 3rem
}

.range-slider-wrap--ruler .noUi-value-large {
    top: 40%;
    color: #d9908a;
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1020px) {
    .range-slider-wrap--ruler .noUi-value-large {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.range-slider-wrap--ruler .noUi-pips-horizontal {
    padding-top: 0;
    width: auto;
    right: 0;
    margin: 0 3rem auto
}

.range-slider-wrap--ruler .noUi-tooltip {
    -ms-transform: translate(-50%,-43%);
    transform: translate(-50%,-43%);
    background: #ae000f;
    background: -webkit-gradient(left top,left bottom,color-stop(0%,#ae000f),color-stop(100%, #19503e));
    background: linear-gradient(to bottom,#ae000f 0%, #19503e 100%);
    filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr=" #ae000f ", endColorstr="  #19503e ", GradientType=0 )";
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding: 1rem 0;
    border-radius: .2rem;
    border: none;
    text-align: center;
    width: 7rem;
    min-height: 3.8rem
}

@media(max-width: 1020px) {
    .range-slider-wrap--ruler .noUi-tooltip {
        width:4.5rem;
        padding: .4rem 0
    }
}

.range-slider-wrap--ruler .noUi-tooltip:after {
    content: "";
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 9.5px 0 9.5px;
    border-color:  #19503e transparent transparent transparent;
    bottom: -8px
}

@media(max-width: 1020px) {
    .range-slider-wrap--ruler .noUi-tooltip:after {
        border-width:6px 7.5px 0 7.5px;
        bottom: -6px
    }
}

.range-slider-wrap--ruler .noUi-handle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8.5px 0 8.5px;
    border-color: #fff transparent transparent transparent;
    background: none;
    box-shadow: none;
    right: -8px;
    top: 0;
    cursor: pointer
}

.range-slider-wrap--ruler .noUi-handle:after,.range-slider-wrap--ruler .noUi-handle:before {
    content: none
}

.range-slider-wrap--drag {
    padding: 0 0 4rem
}

.range-slider-wrap--drag .range-slider-wrap__title-wrap {
    margin-bottom: 3rem
}

.range-slider-wrap--drag .noUi-pips-horizontal {
    padding: 0;
    width: calc(100% - 30px);
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.range-slider-wrap--drag .noUi-pips-horizontal .noUi-marker {
    display: none
}

.range-slider-wrap--drag .noUi-horizontal {
    height: 3px
}

.range-slider-wrap--drag .noUi-horizontal .noUi-handle {
    cursor: pointer;
    top: -9px;
    right: -20px;
    width: 40px;
    height: 21px;
    border-radius: 6px;
    box-shadow: 0 0 16px 0 rgba(122,18,24,.49);
    background-image: linear-gradient(69deg,#ae000f 15%, #19503e 83%)
}

.range-slider-wrap--drag .noUi-horizontal .noUi-handle:before,.range-slider-wrap--drag .noUi-horizontal .noUi-handle:after {
    font-family: font-icons;
    font-size: 8px;
    color: #fff;
    background: transparent;
    width: auto;
    line-height: 1
}

.range-slider-wrap--drag .noUi-horizontal .noUi-handle:before {
    content: "";
    left: 10px
}

.range-slider-wrap--drag .noUi-horizontal .noUi-handle:after {
    content: "";
    left: 20px
}

.range-slider-wrap--drag .noUi-target {
    background: #ccc;
    border-radius: 9px;
    box-shadow: none;
    border: 0
}

.range-slider-wrap--drag .noUi-tooltip {
    box-shadow: none;
    border: none;
    background-color: transparent;
    bottom: auto;
    top: 120%;
    font-size: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #da9089
}

@media(max-width: 1020px) {
    .range-slider-wrap--drag .noUi-tooltip {
        font-size:1.8rem
    }
}

.range-slider-wrap--drag .noUi-value {
    font-size: 2rem;
    line-height: 2.2rem
}

@media(max-width: 1020px) {
    .range-slider-wrap--drag .noUi-value {
        font-size:1.4rem;
        line-height: 1.6rem;
        left: -1rem
    }
}

.range-slider-wrap--drag .noUi-base {
    width: calc(100% - 39px);
    left: 20px
}

.range-slider-wrap--wealth .noUi-tooltip__img {
    min-width: 2rem
}

.range-slider-wrap--wealth .noUi-tooltip__img--sm {
    min-width: 3.6rem
}

.range-slider-wrap--wealth .noUi-tooltip__img--md {
    min-width: 4rem
}

.range-slider-wrap--wealth .noUi-tooltip__img--lg {
    min-width: 5.3rem
}

.range-slider-wrap--percent .range-slider-wrap__wrap-item:last-child::after {
    content: '%';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 3.6rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    padding-right: 2px
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .range-slider-wrap__wrap-item:last-child::after {
        font-size:2.7rem;
        top: -10%;
        right: 3%
    }
}

.range-slider-wrap--percent .range-slider-wrap__input {
    display: inline-block;
    padding-right: 36px
}

.range-slider-wrap--percent .noUi-horizontal {
    height: 42px;
    background: #f9eeed;
    border-radius: 21px;
    border: none;
    box-shadow: none
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-horizontal {
        height:32px
    }
}

.range-slider-wrap--percent .noUi-horizontal .noUi-handle {
    top: -2px;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    box-shadow: 0 0 16px 0 rgba(122,18,24,.49);
    background-image: linear-gradient(69deg,#ae000f 15%, #19503e 83%);
    cursor: pointer
}

.range-slider-wrap--percent .noUi-horizontal .noUi-handle:before,.range-slider-wrap--percent .noUi-horizontal .noUi-handle:after {
    display: none
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-horizontal .noUi-handle {
        width:36px;
        height: 36px
    }
}

.range-slider-wrap--percent .noUi-tooltip {
    background: transparent;
    box-shadow: none;
    border: 0;
    bottom: 16%;
    font-size: 1.8rem;
    line-height: 2rem;
    color: #fff
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-tooltip {
        font-size:1.2rem;
        line-height: 1.2rem
    }
}

.range-slider-wrap--percent .noUi-pips-horizontal {
    top: 0;
    left: 2%;
    width: 92%
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-pips-horizontal {
        top:-3px;
        left: 3%;
        width: 88%
    }
}

.range-slider-wrap--percent .noUi-marker-horizontal.noUi-marker-large {
    display: none
}

.range-slider-wrap--percent .noUi-marker-horizontal.noUi-marker-normal {
    height: 12px;
    top: 16px;
    background-color: #d9908a
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-marker-horizontal.noUi-marker-normal {
        top:13px;
        opacity: .3
    }
}

.range-slider-wrap--percent .noUi-value-horizontal {
    -ms-transform: none;
    transform: none;
    color: #d9908a
}

@media(max-width: 1020px) {
    .range-slider-wrap--percent .noUi-value-horizontal {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.range-slider-wrap--percent .noUi-base {
    width: 95%;
    margin: 0 auto
}

.calc-form {
    max-width: 73.6rem;
    margin: 0 auto
}

.calc-form__inline {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 1rem
}

.calc-form__inline:last-child {
    margin-right: 0
}

.calc-form__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    text-transform: capitalize
}

@media(max-width: 767px) {
    .calc-form__title {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-form__header {
    margin-bottom: 1.5rem
}

@media(max-width: 767px) {
    .calc-form__header {
        margin-bottom:1.2rem
    }
}

.calc-form__footer {
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    position: relative;
    height: 8rem;
    padding: 0;
    margin: 0
}

.calc-form__footer .calc-form__footer-item {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.calc-form__footer .calc-form__footer-item:first-child {
    left: 2rem;
    right: auto
}

@media(max-width: 767px) {
    .calc-form__footer .calc-form__footer-item:first-child {
        left:.5rem
    }
}

.calc-form__footer .calc-form__footer-item:last-child {
    right: 2rem;
    left: auto
}

.calc-form__footer .calc-form__note {
    position: absolute;
    left: 0;
    top: -3rem
}

@media(max-width: 767px) {
    .calc-form__footer .calc-form__note {
        top:-5rem;
        left: 1.5rem;
        right: 1.5rem
    }
}

.calc-form__form-item {
    margin-bottom: 4rem
}

@media(max-width: 767px) {
    .calc-form__form-item {
        margin-bottom:2rem;
        transition: all .3s ease
    }
}

.calc-form__form-item--flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.calc-form__form-item--flex .calc-form__form-control {
    text-align: right;
    width: 100%
}

.calc-form__form-item--flex .calc-form__title {
    width: 55%
}

@media(max-width: 767px) {
    .calc-form__form-item--fade-out {
        opacity:0
    }
}

.calc-form__head-wrap {
    margin-bottom: 3rem
}

.calc-form__form-label {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: block;
    margin-bottom: 0;
    max-width: 60%
}

@media(max-width: 767px) {
    .calc-form__form-label {
        font-size:2.2rem;
        line-height: 2.4rem;
        max-width: inherit
    }
}

.calc-form__form-label .calc-form__form-control {
    display: inline-block;
    margin: 0 1rem;
    width: 6rem;
    text-align: center;
    vertical-align: middle
}

.calc-form__form-label--text-grey {
    color: #6c7174
}

.calc-form__form-label--full {
    max-width: 100%
}

@media(max-width: 767px) {
    .calc-form__form-label--full {
        max-width:inherit
    }
}

.calc-form__form-control {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    font-family: "pfhandbookpro-bold",sans-serif;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #cdcece
}

@media(max-width: 767px) {
    .calc-form__form-control {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.calc-form__form-control--md-width {
    width: 25.5rem
}

.calc-form__form-control--other-field {
    margin-top: 5rem
}

.calc-form__overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 10001;
    display: none
}

.calc-form__loader-icon {
    font-size: 6.4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

@media(max-width: 767px) {
    .calc-form__loader-icon {
        font-size:4.4rem
    }
}

.calc-form__loader-icon.icon-wealth-13 {
    left: 46%;
    top: 44%
}

.calc-form__modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100%;
    background: #fff;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    padding: 4rem 3rem;
    max-width: 38.8rem;
    z-index: 10002;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border: solid 1px #cdcece
}

@media(max-width: 767px) {
    .calc-form__modal {
        max-width:28rem;
        padding: 2.4rem 1.6rem
    }
}

.calc-form__modal-img-wrap {
    width: 16rem;
    height: 16rem;
    margin: 0 auto 2rem;
    background: url("../images/calc-loader.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative
}

@media(max-width: 767px) {
    .calc-form__modal-img-wrap {
        width:9.4rem;
        height: 9.4rem
    }
}

.calc-form__modal-title {
    font-size: 3.2rem;
    line-height: 1;
    color: #000
}

@media(max-width: 767px) {
    .calc-form__modal-title {
        font-size:2.2rem;
        margin-bottom: .5rem
    }
}

.calc-form__modal-desc {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    margin: 0
}

@media(max-width: 767px) {
    .calc-form__modal-desc {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-form__modal--income {
    max-width: 60rem;
    padding: 2rem;
    text-align: left
}

.calc-form__input-wrap {
    position: relative;
    width: 52.5%
}

.calc-form__dummy-inpt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    border: none;
    border-bottom: 1px solid #cdcece;
    text-align: right;
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #000;
    padding: 0 1rem;
    background: #fff;
    cursor: pointer
}

.calc-form__dummy-inpt:-ms-input-placeholder {
    color: #f5f5f5
}

.calc-form__dummy-inpt::placeholder {
    color: #f5f5f5
}

@media(max-width: 1020px) {
    .calc-form__dummy-inpt {
        font-size:3.2rem;
        line-height: 4rem
    }
}

.calc-form__note {
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 0
}

@media(max-width: 767px) {
    .calc-form__note {
        font-size:1.2rem;
        line-height: 1.2rem
    }
}

.calc-form__note-icon {
    font-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: .5rem
}

@media(max-width: 767px) {
    .calc-form__note-icon {
        font-size:1.2rem
    }
}

.calc-form__info-icon {
    font-size: 1.4rem
}

.calc-form__info-link {
    position: absolute;
    top: -5.7rem;
    right: 0
}

@media(max-width: 767px) {
    .calc-form__info-link {
        top:-5.2rem
    }
}

.calc-form .input-dummy__icon,.calc-form .input-dummy__value {
    display: inline-block;
    vertical-align: top
}

.calc-form .input-dummy__icon {
    font-size: 1.8rem;
    margin: 6px -3px 0 0
}

@media(max-width: 1020px) {
    .calc-form .input-dummy__icon {
        font-size:1.2rem;
        margin: 8px -3px 0 0
    }
}

.calc-form span.error {
    background-color: transparent !important;
    color:  #19503e;
    border: 0 !important
}

.act-wrap__btn {
    margin-left: auto;
    background: transparent;
    border: none;
    display: inline-block;
    margin-right: 4rem
}

.act-wrap__btn:last-child {
    margin-right: 0
}

.act-wrap__btn .act-wrap__icon {
    font-size: 1.1rem;
    color: #da9089;
    display: inline-block;
    vertical-align: middle;
    margin-top: 1rem
}

.act-wrap__btn .act-wrap__link {
    color: #da9089;
    font-size: 1.8rem;
    line-height: 2rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    display: inline-block;
    vertical-align: middle;
    text-decoration: underline
}

.progress-bar {
    display: block;
    height: 1px;
    background: #f1f3f6;
    position: relative
}

@media(max-width: 767px) {
    .progress-bar {
        margin:0 -1.5rem
    }
}

.progress-bar__filled {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background:  #19503e;
    transition: all .3s ease;
    width: 30%
}

.progress-bar__text {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1200px) {
    .progress-bar__text {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

@media(max-width: 1020px) {
    .progress-bar__text {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.progress-bar__value {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 1020px) {
    .progress-bar__value {
        font-size:1.4rem;
        line-height: 1.6rem
    }
}

.progress-bar__value .icon {
    font-size: 1.2rem
}

@media(max-width: 1020px) {
    .progress-bar__value .icon {
        font-size:10px
    }
}

.progress-bar__text-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.progress-bar--typ2 {
    padding-bottom: 3rem;
    background: transparent;
    border-top: 1px solid #f1f3f6;
    height: auto;
    overflow: inherit
}

.progress-bar--typ2 .progress-bar__text-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0
}

.progress-bar--typ2 .progress-bar__filled {
    height: .6rem;
    border-radius: .3rem;
    top: -3px
}

@media(max-width: 1020px) {
    .progress-bar--typ2 {
        padding-bottom:2.5rem
    }
}

@media(max-width: 767px) {
    .progress-bar--typ2 {
        margin:0
    }
}

.progres__item {
    margin-bottom: 2rem
}

.progres__item:last-child {
    margin-bottom: 0
}

.progress-card {
    padding: 0 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-family: "pfhandbookpro-bold",sans-serif
}

.progress-card__back {
    font-size: 2rem;
    width: 20%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px
}

.progress-card__step-title {
    font-size: 2.3rem;
    line-height: 1.4;
    color: #695934;
    text-align: center;
    width: 54%
}

.progress-card__details {
    width: 24%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 1.4rem
}

.progress-card__details__step {
    border: 1px solid #695934;
    border-radius: 50%;
    padding: 7px 4px;
    margin-right: 8px;
    width: 36px;
    height: 36px;
    font-size: 11px
}

.progress-card__details__progress-wrapper {
    display: block
}

.progress-card__details__label {
    color: #6c7174
}

.progress-card__details__step-title {
    color: #695934;
    font-size: 1.8rem;
    display: none
}

.progress-card__details__current-progress__value {
    color: #695934
}

.progress-card__details__next-step__value {
    color: #695934
}

@media(max-width: 767px) {
    .progress-card {
        padding:0 0
    }

    .progress-card__back {
        padding: 0
    }

    .progress-card__back--text {
        display: none
    }

    .progress-card__step-title {
        display: none
    }

    .progress-card__details {
        width: 100%;
        padding: 0;
        -ms-flex-pack: center;
        justify-content: center
    }

    .progress-card__details__step {
        border: 1px solid #695934;
        border-radius: 50%;
        padding: 10px 4px;
        margin-right: 8px
    }

    .progress-card__details__progress-wrapper {
        display: block
    }

    .progress-card__details__label {
        color: #6c7174
    }

    .progress-card__details__current-progress {
        display: none
    }

    .progress-card__details__step-title {
        display: block
    }

    .progress-card__details__next-step__value {
        color: #695934
    }
}

.progress-cardbar {
    width: 100%;
    height: 6px;
    background: #695934;
    margin: 8px 0;
    color: #000;
    position: relative
}

.progress-cardbar__filled {
    width: 30%;
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #695934
}

.icon-radio {
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.5rem
}

@media(max-width: 767px) {
    .icon-radio {
        -ms-flex-flow:row wrap;
        flex-flow: row wrap;
        width: 100%
    }
}

.icon-radio__wrap {
    position: relative;
    margin-right: 2rem;
    width: 13.1rem
}

@media(max-width: 767px) {
    .icon-radio__wrap {
        margin-right:1rem;
        margin-bottom: 2.5rem;
        width: 10rem
    }
}

@media(max-width: 576px) {
    .icon-radio__wrap {
        width:9rem
    }
}

.icon-radio__input:not(old) {
    width: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    position: absolute
}

.icon-radio__input:not(old)~.icon-radio__label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
    margin-bottom: 0
}

.icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #6a4742
}

.icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #6a4742
}

.icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__check-box {
    background: #6a4742
}

@media(max-width: 767px) {
    .icon-radio--strip {
        width:100%;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.icon-radio--strip .icon-radio__wrap {
    margin-right: 0;
    border-right: 1px solid #cdcece;
    border-bottom: 1px solid #cdcece
}

@media(max-width: 767px) {
    .icon-radio--strip .icon-radio__wrap {
        margin-bottom:0
    }
}

@media(max-width: 1200px) {
    .icon-radio--strip .icon-radio__wrap {
        border-right:1px solid #cdcece;
        border-bottom: 1px solid #cdcece
    }

    .icon-radio--strip .icon-radio__wrap:nth-child(3n+3) {
        border-right: 1px solid #cdcece
    }

    .icon-radio--strip .icon-radio__wrap:nth-last-child(-n+3) {
        border-bottom: 1px solid #cdcece
    }
}

@media(max-width: 767px) {
    .icon-radio--strip .icon-radio__wrap:nth-child(3n+3) {
        border-right:none
    }

    .icon-radio--strip .icon-radio__wrap:nth-last-child(-n+3) {
        border-bottom: none
    }
}

.icon-radio--strip .icon-radio__wrap:last-child {
    border-right: none
}

.icon-radio--strip .icon-radio__card {
    box-shadow: none;
    border: none;
    height: auto
}

.icon-radio--strip .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    font-family: "pfhandbookpro-bold",sans-serif
}

.icon-radio--strip .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card {
    background: #6a4742
}

.icon-radio--strip .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--strip .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #fff
}

.icon-radio--no-border .icon-radio__wrap {
    margin-right: 5rem
}

@media(max-width: 576px) {
    .icon-radio--no-border .icon-radio__wrap {
        margin-right:0
    }
}

.icon-radio--no-border .icon-radio__wrap:last-child {
    margin-right: 0
}

.icon-radio--no-border .icon-radio__card {
    box-shadow: none;
    border: none;
    height: auto
}

.icon-radio--no-border .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card {
    padding: 2rem 0
}

.icon-radio--no-border .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    font-family: "pfhandbookpro-bold",sans-serif
}

.icon-radio--streched .icon-radio__card {
    min-height: 13rem;
    height: 100%;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media(max-width: 767px) {
    .icon-radio--btn {
        width:100%
    }
}

.icon-radio--btn .icon-radio__wrap {
    width: auto;
    margin-right: 3rem
}

.icon-radio--btn .icon-radio__card {
    height: auto;
    padding: 1rem 2.5rem;
    border: none;
    box-shadow: none;
    background: #fdf7f7;
    border-radius: .4rem
}

@media(max-width: 767px) {
    .icon-radio--btn .icon-radio__card {
        padding:1rem 1.5rem
    }
}

.icon-radio--btn .icon-radio__card .calc-icon-card__text {
    color: #edc9c6
}

.icon-radio--btn .icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #b37671
}

.icon-radio--btn .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card {
    background: #b37671
}

.icon-radio--btn .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #fff
}

.icon-radio--btn-health {
    margin-bottom: 1rem
}

.icon-radio--btn-health .icon-radio__main-label {
    margin-right: 1rem
}

.icon-radio--default {
    margin-top: 1.5rem
}

.icon-radio--default .calc-icon-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 21rem;
    text-align: left
}

@media(max-width: 767px) {
    .icon-radio--default .calc-icon-card {
        width:14rem;
        max-width: inherit
    }
}

.icon-radio--default .calc-icon-card__text {
    font-size: 3.2rem
}

@media(max-width: 767px) {
    .icon-radio--default .calc-icon-card__text {
        font-size:1.8rem
    }
}

.icon-radio--default .calc-icon-card__check-box {
    top: 50%;
    right: auto;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.icon-radio--default .icon-radio__wrap {
    width: auto;
    margin-right: 0
}

.icon-radio--default .icon-radio__card {
    height: auto;
    padding: 0 0 0 4rem;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0
}

@media(max-width: 767px) {
    .icon-radio--default .icon-radio__card {
        padding:0 0 0 3rem
    }
}

.icon-radio--default .icon-radio__card .calc-icon-card__text {
    color: #000
}

.icon-radio--default .icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #000
}

.icon-radio--default .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__check-box {
    background: #6a4742
}

@media(max-width: 767px) {
    .icon-radio--two-ele {
        max-width:25rem
    }

    .icon-radio--two-ele .icon-radio__wrap {
        width: 12rem;
        border-right: 1px solid #cdcece;
        border-bottom: 1px solid #cdcece
    }

    .icon-radio--two-ele .icon-radio__wrap:nth-last-child(-n+3) {
        border-bottom: 1px solid #cdcece
    }

    .icon-radio--two-ele .icon-radio__wrap:nth-child(3n+3) {
        border-right: 1px solid #cdcece
    }

    .icon-radio--two-ele .icon-radio__wrap:nth-child(even) {
        border-right: none
    }

    .icon-radio--two-ele .icon-radio__wrap--last {
        border-bottom: none !important
    }

    .icon-radio--two-ele .icon-radio__wrap--last-child-border {
        border-right: 1px solid #cdcece !important
    }
}

.icon-radio--circle {
    -ms-flex-pack: center;
    justify-content: center
}

.icon-radio--circle .icon-radio__wrap {
    position: relative;
    margin-right: 3rem;
    width: 7.1rem
}

.icon-radio--circle .icon-radio__card {
    box-shadow: none;
    height: 7.1rem
}

.icon-radio--circle .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%
}

.icon-radio--circle .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--circle .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #edc9c6;
    padding: 0;
    margin: 0
}

.icon-radio--circle .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__icon {
    font-size: 3.2rem;
    margin-bottom: 4px
}

.icon-radio--circle .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card {
    background: #695934
}

.icon-radio--circle .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--circle .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #6a4742
}

.icon-radio--separated {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.icon-radio--separated .icon-radio__wrap {
    position: relative;
    margin-right: 4rem;
    margin-bottom: 1rem;
    width: 25.1rem
}

.icon-radio--separated .icon-radio__card {
    box-shadow: none;
    height: 9.9rem
}

.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label {
    z-index: 1;
    cursor: pointer;
    margin-bottom: 0
}

.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 32px;
    border-radius: 5px
}

.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #edc9c6;
    padding: 0;
    margin: 0
}

.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__icon {
    margin-right: 16px;
    margin-top: -20px
}

.icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    text-align: left
}

.icon-radio--separated .icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card {
    background: #f1f3f6
}

.icon-radio--separated .icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--separated .icon-radio__input:not(old):hover~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #edc9c6
}

.icon-radio--separated .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card {
    background: #695934;
    box-shadow: 0 5px 10px #695934;
    border: 1px solid #6a4742
}

.icon-radio--separated .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__icon,.icon-radio--separated .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__text {
    color: #6a4742
}

.icon-radio--separated .icon-radio__input:not(old):checked~.icon-radio__label+.calc-icon-card .calc-icon-card__check-box {
    background: #6a4742
}

@media(max-width: 767px) {
    .icon-radio--separated {
        margin-right:0;
        width: 100%;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }

    .icon-radio--separated .icon-radio__wrap {
        margin-right: 0;
        width: 17.1rem
    }

    .icon-radio--separated .icon-radio__input:not(old)~.icon-radio__label+.calc-icon-card {
        padding: 0 12px
    }
}

.calc-icon-card {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 0 19px 0 rgba(106,71,66,.24);
    position: relative;
    height: 14.9rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media(max-width: 767px) {
    .calc-icon-card {
        height:12.5rem
    }
}

.calc-icon-card__icon {
    font-size: 5rem;
    width: 5rem;
    height: 5rem;
    display: block;
    margin: 0 auto 1rem;
    color: #da9089;
    transition: all .3s ease
}

@media(max-width: 767px) {
    .calc-icon-card__icon {
        font-size:3rem;
        width: 3rem;
        height: 3rem
    }
}

.calc-icon-card__text {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #da9089;
    font-family: "pfhandbookpro-regular",sans-serif;
    transition: all .3s ease
}

@media(max-width: 767px) {
    .calc-icon-card__text {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-icon-card__check-box {
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid #6a4742;
    border-radius: .4rem;
    background: #fff;
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all .3s ease
}

@media(max-width: 767px) {
    .calc-icon-card__check-box {
        width:2rem;
        height: 2rem;
        border-width: 1px
    }
}

.calc-icon-card__check-box .calc-icon-card__check {
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 40%;
    left: 35%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

@media(max-width: 767px) {
    .calc-icon-card__check-box .calc-icon-card__check {
        font-size:10px;
        top: 39%;
        left: 29%
    }
}

.gender-switch-wrap {
    max-width: 45rem;
    margin: 1.6rem 0
}

.gender-switch-wrap__title {
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 1.2rem
}

@media(max-width: 767px) {
    .gender-switch-wrap__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.gender-switch {
    height: 5rem;
    border-radius: 5.2rem;
    background-color: #fdf7f7;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.gender-switch__group {
    width: 33.33%;
    position: relative;
    z-index: 2
}

.gender-switch__label {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 2rem;
    line-height: 5rem;
    border-radius: 5.2rem;
    color: #cdcdcd;
    text-align: center;
    display: block;
    margin: 0
}

@media(max-width: 767px) {
    .gender-switch__label {
        font-size:1.8rem
    }
}

.gender-switch__input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer
}

.gender-switch__input:checked+.gender-switch__label {
    color: #da9089
}

.gender-switch__input:checked+.gender-switch__label .gender-switch__icon {
    display: inline-block
}

.gender-switch__indicator {
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 33%;
    height: 100%;
    z-index: 0;
    border-radius: 50px;
    transition: transform .4s ease-out
}

.gender-switch__icon {
    font-size: 3rem;
    color: #6a4742;
    vertical-align: middle;
    margin: 0 2rem 0 0;
    display: none
}

@media(max-width: 767px) {
    .gender-switch__icon {
        margin:0 1.2rem 0 0
    }
}

.calc-steps__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    counter-reset: section;
    margin-bottom: 0;
    padding: 0
}

.calc-steps__anchor {
    font-size: 1.8rem;
    line-height: 2rem;
    color: #cdcece;
    font-family: "pfhandbookpro-regular",sans-serif;
    display: block;
    padding: 1rem 0 1.3rem 2.5rem;
    background: none;
    position: relative;
    transition: all .3s ease-in;
    min-height: 4rem
}

@media(max-width: 767px) {
    .calc-steps__anchor {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.calc-steps__anchor:before {
    counter-increment: section;
    content: counter(section,decimal-leading-zero);
    position: absolute;
    left: 0
}

.calc-steps__anchor-text {
    display: none;
    white-space: nowrap
}

.calc-steps__link {
    transition: all .5s ease-in;
    width: 2.5rem;
    margin-right: 2rem;
    overflow: hidden
}

.calc-steps__link:last-child {
    margin-right: 0
}

.calc-steps__link:after {
    content: none
}

.calc-steps__link--active {
    width: auto
}

.calc-steps__link--active .calc-steps__anchor {
    color: #6c7174
}

.calc-steps__link--active .calc-steps__anchor-text {
    display: inline-block
}

.calc-steps__link:hover .calc-steps__anchor {
    color: #6c7174
}

.calc-steps__head {
    margin-bottom: 3rem
}

@media(max-width: 767px) {
    .calc-steps__head {
        margin-bottom:2rem
    }
}

.calc-steps__content {
    padding-bottom: 0;
    min-height: 45.9rem;
    padding-bottom: 8rem;
    position: relative
}

@media(max-width: 767px) {
    .calc-steps__content {
        min-height:38.4rem
    }
}

.calc-steps__content .calc-form__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0
}

@media(max-width: 767px) {
    .calc-steps__content .calc-form__footer {
        left:-1.5rem;
        right: -1.5rem
    }
}

.calc-steps__slide {
    display: none;
    padding: 0 0 4rem
}

.calc-steps__slide--active {
    display: block
}

.calc-stepper {
    position: relative;
    margin: 1.6rem auto 3rem;
    height: 6rem;
    padding: 0 10rem
}

@media(max-width: 767px) {
    .calc-stepper {
        padding:0;
        background-color: transparent !important
    }
}

.calc-stepper:after {
    content: "";
    background: #fdf7f7;
    background: linear-gradient(90deg,#fdf7f7 0%,rgba(253,247,247,0) 45%,rgba(253,247,247,0) 55%,#fdf7f7 100%);
    position: absolute;
    left: 10rem;
    right: 10rem;
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none
}

@media(max-width: 767px) {
    .calc-stepper:after {
        left:0;
        right: 0;
        background: transparent
    }
}

.calc-stepper .swiper-wrapper {
    height: auto
}

.calc-stepper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 4rem;
    height: 6rem;
    font-size: 3rem;
    line-height: 6rem;
    text-align: center;
    color: #e2a7a2;
    cursor: grab
}

@media(max-width: 767px) {
    .calc-stepper .swiper-slide {
        font-size:2.4rem
    }
}

.calc-stepper .swiper-slide-active {
    color: #000;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 4.4rem
}

@media(max-width: 767px) {
    .calc-stepper .swiper-slide-active {
        font-size:3.2rem
    }
}

.calc-stepper__frame {
    width: 4rem;
    height: 4.5rem;
    border-bottom: 1px solid #cdcece;
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
    cursor: text
}

.calc-stepper__label {
    position: absolute;
    white-space: nowrap;
    text-align: center;
    left: 50%;
    bottom: -3.8rem;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 767px) {
    .calc-stepper__label {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.calc-stepper__input {
    position: absolute;
    font-size: 3rem;
    width: 4rem;
    left: 5rem;
    line-height: 5rem;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    top: 50%;
    text-align: center;
    z-index: 2;
    opacity: 0
}

.cs-banner {
    max-width: 73.6rem
}

.cs-banner__h1 {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .cs-banner__h1 {
        font-size:1.8rem;
        line-height: 2rem;
        margin-bottom: .4rem
    }
}

.cs-banner__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .cs-banner__title {
        font-size:3.2rem;
        line-height: 3.4rem;
        margin-bottom: .6rem
    }
}

.cs-banner__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .cs-banner__p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.cs-banner__highlight {
    display: block;
    margin: 2rem 0 1rem 0;
    font-size: 4.4rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #b37671
}

@media(max-width: 767px) {
    .cs-banner__highlight {
        font-size:3.2rem;
        line-height: 3.4rem;
        margin: 1.6rem 0 .6rem 0
    }
}

.card-info {
    padding: 3rem 4.5rem;
    background: #fff;
    border: 1px solid #cdcece;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border-radius: .2rem
}

@media(max-width: 767px) {
    .card-info {
        padding:2rem
    }
}

.card-info__title {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1.2rem
}

@media(max-width: 767px) {
    .card-info__title {
        font-size:3.2rem;
        line-height: 3.4rem;
        margin-bottom: 1.6rem
    }
}

.card-info__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

.card-info__p:last-child {
    margin-bottom: 0
}

@media(max-width: 767px) {
    .card-info__p {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.card-info__p a {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .card-info__p a {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.card-info__desc {
    margin-bottom: 2rem
}

.card-info__act-wrap {
    text-align: right
}

.link-distribution__head {
    padding: 1.7rem 4rem;
    border: 1px solid #cdcece;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    border-radius: .2rem;
    background: rgba(255,255,255,0);
    background: -webkit-gradient(left top,left bottom,color-stop(0%,rgba(255,255,255,0)),color-stop(100%,rgba(179,118,113,.16)));
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(179,118,113,.16) 100%);
    filter: "progid:DXImageTransform.Microsoft.gradient( startColorstr=" #fff ", endColorstr=" #b37671 ", GradientType=0 )";
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .link-distribution__head {
        padding:1.7rem 2rem
    }
}

.link-distribution__icon-wrap {
    width: 6.4rem;
    height: 6.4rem;
    margin-right: 3.6rem
}

@media(max-width: 767px) {
    .link-distribution__icon-wrap {
        margin-right:2.5rem
    }
}

.link-distribution__icon {
    font-size: 6.4rem
}

.link-distribution__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    text-transform: capitalize;
    font-weight: 500
}

@media(max-width: 767px) {
    .link-distribution__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.link-distribution__link-list {
    padding: 4rem 0 6rem
}

@media(max-width: 767px) {
    .link-distribution__link-list {
        padding:1.4rem 0 3.4rem
    }
}

@media(max-width: 767px) {
    .link-distribution__link-list .three-col-list.link-list__container ul li a {
        font-size:1.6rem;
        line-height: 2.2rem;
        padding: 1.2rem 2rem 1.2rem 0
    }
}

@media(max-width: 767px) {
    .link-distribution__link-list .three-col-list.link-list__container ul li a:after {
        font-size:1.6rem
    }
}

.link-distribution__link-list .link-list__list li a:after {
    top: 2.5rem
}

.calc-result__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .calc-result__title {
        font-size:2.2rem;
        line-height: 2.4rem;
        margin-bottom: 1.2rem
    }
}

.calc-result__highlight-count {
    font-size: 4.4rem;
    line-height: 4.6rem;
    color: #b37671;
    font-family: "pfhandbookpro-bold",sans-serif;
    position: relative;
    display: block;
    padding-left: 2rem;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .calc-result__highlight-count {
        font-size:3.2rem;
        line-height: 3.4rem
    }
}

.calc-result__highlight-count .calc-result__rupee {
    position: absolute;
    top: -.3rem;
    left: 0
}

.calc-result__rupee {
    font-size: 2rem;
    color: #b37671
}

@media(max-width: 767px) {
    .calc-result__rupee {
        font-size:1.4rem
    }
}

.calc-result__p {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .calc-result__p {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-result__p:last-child {
    margin-bottom: 0
}

.calc-result__strong {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .calc-result__strong {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-result__strong .icon {
    font-size: 1.4rem;
    color: #000
}

@media(max-width: 767px) {
    .calc-result__strong .icon {
        font-size:10px
    }
}

.calc-result__info-wrap {
    border: 1px solid #cdcece;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2rem
}

@media(max-width: 767px) {
    .calc-result__info-wrap {
        display:block;
        margin: 0 -1.5rem;
        margin-bottom: 1.8rem;
        min-height: auto
    }
}

.calc-result__lhs {
    max-width: 38.3rem;
    padding: 2rem 4rem 2rem 2rem
}

@media(max-width: 1200px) {
    .calc-result__lhs {
        max-width:33.3rem;
        padding: 2rem
    }
}

@media(max-width: 1020px) {
    .calc-result__lhs {
        max-width:29.3rem;
        padding: 2rem 2rem 2rem 2rem
    }
}

@media(max-width: 767px) {
    .calc-result__lhs {
        max-width:inherit;
        padding: 1.5rem
    }
}

.calc-result__rhs {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 2rem 2rem 4rem
}

@media(max-width: 1200px) {
    .calc-result__rhs {
        padding:2rem
    }
}

@media(max-width: 1020px) {
    .calc-result__rhs {
        padding:2rem;
        display: block
    }
}

@media(max-width: 767px) {
    .calc-result__rhs {
        padding:1.5rem;
        display: -ms-flexbox;
        display: flex
    }
}

@media(max-width: 767px) {
    .calc-result__rhs--retirement {
        padding-bottom:10rem;
        position: relative
    }
}

@media(max-width: 1020px) {
    .calc-result__rhs--retirement .calc-result__input-list {
        left:2rem;
        right: 2rem
    }
}

@media(max-width: 767px) {
    .calc-result__rhs--retirement .calc-result__input-list {
        position:absolute;
        left: 1.5rem;
        right: 1.5rem;
        bottom: 0
    }
}

.calc-result__graph-wrap {
    width: 29.3rem;
    margin-right: 1.5rem
}

@media(max-width: 1020px) {
    .calc-result__graph-wrap {
        margin:0 auto 2rem
    }
}

@media(max-width: 767px) {
    .calc-result__graph-wrap {
        width:16.6rem;
        margin-right: 2rem
    }
}

@media(max-width: 767px) {
    .calc-result__graph-info {
        width:80%
    }
}

.calc-result__action-wrap {
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media(max-width: 767px) {
    .calc-result__action-wrap {
        -ms-flex-flow:row wrap;
        flex-flow: row wrap
    }
}

.calc-result__act-btn {
    margin-left: 4rem
}

.calc-result__act-btn:first-child {
    margin-left: 0
}

.calc-result__act-btn .button-link {
    padding: 0
}

.calc-result__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.calc-result__row:first-child {
    margin-right: 4rem
}

@media(max-width: 767px) {
    .calc-result__row:first-child {
        margin-right:0;
        margin-bottom: 2rem
    }
}

@media(max-width: 767px) {
    .calc-result__row:last-child .calc-result__act-btn {
        margin-left:6rem
    }
}

@media(max-width: 576px) {
    .calc-result__row:last-child .calc-result__act-btn {
        margin-left:2.5rem
    }
}

.calc-result__icon {
    font-size: 1.6rem
}

.calc-result__cont {
    padding: 2rem 0 3rem 0;
    border-bottom: 1px solid #f0ecec
}

.calc-result__cont:first-child {
    padding-top: 0
}

.calc-result__cont:last-child {
    padding-bottom: 0;
    border-bottom: none
}

@media(max-width: 767px) {
    .calc-result__cont {
        padding:1.5rem 0 .5rem 0
    }
}

.calc-result__input-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.calc-result__input-list-item {
    width: 45%;
    margin-bottom: .8rem
}

.calc-result__input-list-item--full {
    width: 100%
}

@media(max-width: 767px) {
    .calc-result__input-list-item--full {
        width:30%
    }
}

@media(max-width: 767px) {
    .calc-result__input-list-item {
        width:30%;
        margin-bottom: 1.5rem
    }
}

.calc-result__input-label {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

@media(max-width: 767px) {
    .calc-result__input-label {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-result__input-value {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .calc-result__input-value {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.calc-result__input-value--text {
    position: relative;
    padding-left: 2rem
}

.calc-result__input-value--text .icon {
    font-size: 1.6rem;
    position: absolute;
    left: 0
}

@media(max-width: 576px) {
    .calc-result__input-value--text .icon {
        font-size:1.3rem
    }
}

.calc-result__input {
    background: transparent;
    border: none;
    height: 4rem
}

.calc-result__input-group {
    position: relative;
    max-width: 17rem
}

.calc-result__input-group .calc-result__input {
    padding-left: 2rem;
    width: 100%
}

@media(max-width: 576px) {
    .calc-result__input-group .calc-result__input {
        padding-left:1.5rem
    }
}

.calc-result__input-group .calc-result__input-addon {
    font-size: 1.6rem;
    position: absolute;
    bottom: 10%;
    left: 0
}

@media(max-width: 767px) {
    .calc-result__input-group .calc-result__input-addon {
        font-size:1.3rem;
        bottom: 25%
    }
}

.calc-result__input-group .calc-result__input-addon-text {
    font-size: 1.6rem;
    position: absolute;
    bottom: 25%;
    right: 25%;
    text-transform: capitalize;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif
}

@media(max-width: 767px) {
    .calc-result__input-group .calc-result__input-addon-text {
        font-size:1.3rem;
        bottom: 40%
    }
}

.calc-result__input-group--sm-input .calc-result__input {
    max-width: 10rem
}

@media(max-width: 767px) {
    .calc-result__input-group--sm-input .calc-result__input {
        max-width:6rem
    }
}

.calc-result__progress-wrap {
    margin-top: 2rem
}

.calc-result--income {
    position: relative
}

.calc-result--income .calc-result__rhs,.calc-result--income .calc-result__lhs {
    width: 100%
}

@media(max-width: 1020px) {
    .calc-result--income .calc-result__info-wrap {
        display:block
    }
}

.calc-result--income .calc-result__rhs {
    border-left: 1px solid #cdcece
}

@media(max-width: 767px) {
    .calc-result--income .calc-result__rhs {
        padding-bottom:0
    }
}

@media(max-width: 1020px) {
    .calc-result--income .calc-result__lhs {
        max-width:initial;
        width: 100%
    }
}

.calc-result--income .banner-ad-wrap {
    position: absolute;
    top: 0;
    right: 0
}

@media(max-width: 1200px) {
    .calc-result--income .banner-ad-wrap {
        display:none
    }
}

.calc-result--income .calc-result__parent-cont {
    width: 75%
}

@media(max-width: 1200px) {
    .calc-result--income .calc-result__parent-cont {
        width:100%
    }
}

.calc-result--income .calc-result__tabs-link {
    padding: 1.5rem 7.6rem
}

@media(max-width: 767px) {
    .calc-result--income .calc-result__tabs-link {
        padding:1.5rem 3.5rem
    }
}

@media(max-width: 767px) {
    .calc-result--income .tabs__content {
        padding-bottom:0
    }
}

@media(max-width: 767px) {
    .calc-result--income .tabs__links--v3 {
        margin-bottom:2rem;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

.calc-speedometer {
    width: 300px;
    height: 300px;
    position: relative
}

.calc-speedometer .progress-vline {
    position: absolute;
    top: 5%;
    bottom: 50%;
    left: 50%;
    width: 1px;
    -ms-transform: rotate(-124deg) translateX(-50%);
    transform: rotate(-124deg) translateX(-50%);
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%
}

.calc-speedometer .progress-vline .progress-vline-handel span {
    display: inline-block;
    position: absolute;
    top: 0;
    height: 15%;
    width: 1px;
    background-color: #6c7174;
    -ms-transform-origin: 0 670%;
    transform-origin: 0 670%;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    transition-duration: 1s;
    transition-timing-function: linear;
    overflow: hidden
}

.calc-speedometer .progress-graph {
    background-image: url(../images/speedometer.png);
    background-repeat: no-repeat;
    padding: 6.5%;
    background-position: center 3%;
    background-size: 84%;
    position: absolute
}

.calc-speedometer canvas {
    -ms-transform: rotate(-36deg);
    transform: rotate(-36deg)
}

.calc-speedometer .start-value {
    position: absolute;
    left: 17%;
    top: 76%;
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 767px) {
    .calc-speedometer .start-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer .end-value {
    position: absolute;
    right: 17%;
    top: 76%;
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 767px) {
    .calc-speedometer .end-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer .percent-value-wrapper {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center
}

.calc-speedometer .percent-value-wrapper .percent-value {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 4.4rem;
    line-height: 1;
    color: #000
}

@media(max-width: 767px) {
    .calc-speedometer .percent-value-wrapper .percent-value {
        font-size:3.2rem
    }
}

.calc-speedometer .percent-value-wrapper .static-lbl {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000
}

@media(max-width: 767px) {
    .calc-speedometer .percent-value-wrapper .static-lbl {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-speedometer .percent-value-wrapper span {
    display: block
}

.calc-speedometer-half {
    width: 300px;
    height: 300px;
    position: relative
}

.calc-speedometer-half .progress-vline {
    position: absolute;
    top: 10%;
    bottom: 50%;
    left: 50%;
    width: 1px;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -ms-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg)
}

.calc-speedometer-half .progress-vline:after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.calc-speedometer-half .progress-vline .progress-vline-handel {
    width: 1px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%
}

.calc-speedometer-half .progress-vline .progress-vline-handel span {
    display: inline-block;
    width: 1px;
    height: 1px;
    -ms-transform: translateX(-50%) rotate(0deg);
    transform: translateX(-50%) rotate(0deg);
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    transition-duration: 1s;
    transition-timing-function: linear;
    border-style: solid;
    border-width: 0 3px 100px 3px;
    border-color: transparent transparent #000 transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    overflow: hidden
}

.calc-speedometer-half .progress-graph {
    background-image: url(../images/half-speedometer.png);
    background-repeat: no-repeat;
    padding: 6.5%;
    background-position: center -81%;
    background-size: 84%;
    position: absolute
}

.calc-speedometer-half canvas {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.calc-speedometer-half .start-value {
    position: absolute;
    left: 13%;
    top: 53%;
    font-size: 1.4rem;
    line-height: 1;
    color: #6c7174
}

@media(max-width: 767px) {
    .calc-speedometer-half .start-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer-half .end-value {
    position: absolute;
    right: 9%;
    top: 53%;
    font-size: 1.4rem;
    line-height: 1;
    color: #6c7174
}

@media(max-width: 767px) {
    .calc-speedometer-half .end-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer-half .percent-value-wrapper {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 62%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center
}

.calc-speedometer-half .percent-value-wrapper .percent-value {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 4.4rem;
    line-height: 1;
    color: #000;
    margin-top: 2rem
}

@media(max-width: 767px) {
    .calc-speedometer-half .percent-value-wrapper .percent-value {
        font-size:3.2rem;
        margin-top: 4rem
    }
}

.calc-speedometer-half .percent-value-wrapper .static-lbl {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000
}

@media(max-width: 767px) {
    .calc-speedometer-half .percent-value-wrapper .static-lbl {
        font-size:1.8rem;
        line-height: 2rem
    }
}

.calc-speedometer-half .percent-value-wrapper span {
    display: block
}

.calc-speedometer-full {
    width: 300px;
    height: 300px;
    position: relative
}

.calc-speedometer-full .progress-vline {
    position: absolute;
    top: 10%;
    bottom: 50%;
    left: 50%;
    width: 1px;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -ms-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg)
}

.calc-speedometer-full .progress-vline:after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.calc-speedometer-full .progress-graph {
    background-image: url(../images/full-speedometer.png);
    background-repeat: no-repeat;
    padding: 6.5%;
    background-position: center 50%;
    background-size: 84%;
    position: absolute
}

.calc-speedometer-full canvas {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.calc-speedometer-full .start-value {
    position: absolute;
    left: 50%;
    bottom: 0;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 1200px) {
    .calc-speedometer-full .start-value {
        bottom:-1.5rem
    }
}

@media(max-width: 767px) {
    .calc-speedometer-full .start-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer-full .end-value {
    position: absolute;
    left: 50%;
    top: 0;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.8rem;
    line-height: 2rem;
    color: #6c7174
}

@media(max-width: 1200px) {
    .calc-speedometer-full .end-value {
        top:-1.5rem
    }
}

@media(max-width: 767px) {
    .calc-speedometer-full .end-value {
        font-size:1.1rem;
        line-height: 1.2rem
    }
}

.calc-speedometer-full .percent-value-wrapper {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center
}

.calc-speedometer-full .percent-value-wrapper span {
    display: block
}

.calc-speedometer-full .percent-value-wrapper .percent-value {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 4.4rem;
    line-height: 1;
    color: #000
}

@media(max-width: 767px) {
    .calc-speedometer-full .percent-value-wrapper .percent-value {
        font-size:3.2rem
    }
}

.calc-speedometer-full .percent-value-wrapper .static-lbl {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000
}

@media(max-width: 767px) {
    .calc-speedometer-full .percent-value-wrapper .static-lbl {
        font-size:1.8rem;
        line-height: 2rem
    }
}

#pdfcontainer #calculatorResultContainer .calc-speedometer-half .progress-vline .progress-vline-handel span,#pdfcontainer #calculatorResultContainer .calc-speedometer .progress-vline .progress-vline-handel span {
    transition-duration: unset
}

.wb-login-wrap {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.wb-login-wrap .ad-banner {
    max-width: 45rem
}

@media(max-width: 1020px) {
    .wb-login-wrap .ad-banner {
        display:none
    }
}

.wb-login {
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: calc(100% - 45rem);
    padding-right: 7rem
}

@media(max-width: 1020px) {
    .wb-login {
        max-width:100%;
        padding-right: 0;
        margin-bottom: 2rem
    }
}

.wb-login__box {
    border-radius: .4rem;
    box-shadow: 0 0 1.4rem 0 rgba(106,71,66,.24);
    border: .1rem solid #cdcece;
    background-color: #fff;
    max-width: 70rem;
    min-height: 40rem;
    position: relative
}

.wb-login__head {
    padding: 2.4rem;
    background-color: #f0ece9;
    color: #6c7174
}

.wb-login__body {
    padding: 2.4rem
}

.wb-login .button-link {
    padding-left: 0
}

.wb-login .btn-wrap {
    position: absolute;
    bottom: 2.4rem;
    right: 2.4rem
}

@media screen and (max-width: 1024px) {
    .wb-login .btn-wrap {
        position:static
    }
}

.wb-login .abc-form .form-group--otp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end
}

.wb-login .abc-form .form-group--otp .form-group__label {
    width: 100%
}

.wb-login .abc-form .form-group--otp .input-group {
    width: 35%;
    margin-right: 3rem
}

@media(max-width: 767px) {
    .wb-login .abc-form .form-group--otp .input-group {
        width:100%;
        margin-right: unset;
        margin-bottom: 1.2rem
    }
}

.wb-login .abc-form .form-group--otp .otp-timer {
    font-size: 1.8rem;
    line-height: 2.8rem;
    padding-right: 2rem
}

@media(max-width: 767px) {
    .wb-login .abc-form .form-group--otp .otp-timer {
        padding-right:unset
    }
}

.wb-login .abc-form .form-control--otp {
    width: 100%;
    line-height: 5rem;
    height: 5rem;
    margin-right: unset;
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 2.5rem
}

@media(max-width: 767px) {
    .wb-login .abc-form .form-control--otp {
        letter-spacing:4rem
    }
}

@media only screen and (max-width: 380px) {
    .wb-login .abc-form .form-control--otp {
        letter-spacing:3.5rem
    }
}

.income-info__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    margin-bottom: 1rem
}

.income-info__p {
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    font-size: 2.4rem;
    line-height: 2.6rem;
    margin-bottom: 1.8rem
}

.income-info__close {
    font-size: 1.8rem;
    color: #000;
    position: absolute;
    top: 2rem;
    right: 2rem
}

@media(max-width: 767px) {
    .tax-list {
        background:#fdf7f7;
        padding: 2rem 1.5rem;
        margin: 0 -1.5rem
    }
}

.tax-list__title {
    font-size: 2.4rem;
    line-height: 2.6rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif
}

@media(max-width: 767px) {
    .tax-list__title {
        font-size:2.2rem;
        line-height: 2.4rem
    }
}

.tax-list__value {
    font-size: 3.2rem;
    line-height: 3.4rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #b37671;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0
}

.tax-list__value .icon {
    font-size: 1.2rem;
    color: #b37671;
    position: absolute;
    top: -4px;
    left: 0
}

.tax-list__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid #f0ecec
}

.tax-list__item:last-child {
    border-bottom: none
}

#lang-topmenu-mobile {
    display: none
}

@media(max-width: 1020px) {
    #lang-topmenu-mobile {
        display:block
    }
}

#lang-mobile-dropdown {
    position: absolute;
    top: 20%;
    background: #ffffff5e;
    border-radius: 2rem;
    padding: 0 1rem
}

@media(max-width: 1020px) {
    #lang-mobile-dropdown {
        right:14rem;
        top: 28px
    }
}

@media(max-width: 767px) {
    #lang-mobile-dropdown {
        right:10.5rem
    }
}

.lang-childmenu-mobile-dropdown::after {
    position: absolute;
    right: 10%;
    top: -10px;
    width: 0;
    height: 0;
    content: "";
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff
}

@media(max-width: 767px) {
    .lang-childmenu-mobile-dropdown::after {
        right:4.5%
    }
}

.language__icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    height: 1.6rem;
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    width: 1.6rem;
    transition: all .3s ease;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent
}

.language__icon--english {
    background-image: url("../images/lang-english.png")
}

.language__icon--hindi {
    background-image: url("../images/lang-hindi.png")
}

.language__icon--telegu {
    background-image: url("../images/lang-telegu.png")
}

.language__icon--tamil {
    background-image: url("../images/lang-tamil.png")
}

.language__icon--kannada {
    background-image: url("../images/lang-kannada.png")
}

.language__icon__mobile {
    margin-left: unset !important
}

@media(max-width: 767px) {
    .language__icon {
        margin-left:1.2rem
    }
}

.language__title {
    font-size: 1.8rem;
    line-height: 1.8rem;
    color: #000;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
    transition: all .3s ease
}

.language__selected {
    color: #fff
}

@media(max-width: 767px) {
    .language__selected {
        display:none
    }
}

.language__item {
    display: block;
    padding: 1rem .5rem;
    font-weight: 600 !important
}

@media(max-width: 1020px) {
    .language__item__selected {
        display:inline
    }
}

@media(max-width: 767px) {
    .language__item__selected {
        display:-ms-inline-grid;
        display: inline-grid
    }
}

.top-black .language__icon {
    color: #6a4742 !important
}

.top-black .language .selectize-dropdown .active {
    color: #fff !important
}

.hero-container {
    padding: 0 24px
}

.hero-container .hero-banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end
}

.hero-container .hero-text-block {
    text-align: center
}

.hero-container .hero-text-block span {
    font-weight: bold;
    letter-spacing: 5px
}

.hero-card {
    width: 75%;
    background: #f1f3f6;
    position: relative;
    top: -50px;
    display: -ms-flexbox;
    display: flex;
    margin: -35px auto;
    box-shadow: 0 5px 6px rgba(0,0,0,.16)
}

.hero-card__bg {
    background: #ecddc0;
    display: -ms-flexbox;
    display: flex;
    margin: auto
}

.hero-card__item {
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px
}

.hero-card__item:last-child {
    border-right: none
}

.hero-card__item--wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.hero-card__item--wrapper .hero-card__item--value {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 5rem;
    color:  #19503e;
    line-height: 1.2
}

.hero-card__item--wrapper .hero-card__item--detail {
    text-transform: uppercase;
    font-family: "pfhandbookpro-bold",sans-serif
}

.hero-card__item--text p {
    padding: 10px;
    margin: 30px;
    letter-spacing: 2px;
    color: #000;
    font-size: 2rem;
    font-weight: bold
}

.hfl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    margin: auto !important;
    width: 90% !important;
    align-items: flex-start
}

@media(max-width: 1020px) {
    .hfl {
        width:100% !important
    }
}

@media(max-width: 767px) {
    .hfl {
        width:100% !important
    }
}

.hfl .tabs__content--active {
    border: 1px solid #ecddc0;
    padding: 15px;
    box-shadow: 0 2px 4px 0 rgba(236,221,192,.5)
}

.hfl .tabs__contents--vertical {
    max-width: 860px
}

.hfl .tabs__anchor--v3 {
    color: #695934;
    background-color: #f1f3f6
}

.hfl .tabs__anchor--v3:hover,.hfl .tabs__anchor--v3:focus,.hfl .tabs__anchor--v3:active {
    color: #695934
}

.hfl .tabs__anchor--v3 .txt {
    font-size: 1.5rem;
    display: -ms-flexbox;
    display: flex;
    margin-top: -13px;
    padding-left: 35px
}

.hfl .tabs__anchor--v3 .icon {
    display: inline;
    font-size: 3rem;
    vertical-align: middle
}

.hfl .tabs__anchor--v3 .icon-next {
    display: inline;
    font-size: 1.2rem;
    float: right;
    vertical-align: middle
}

.hfl .tabs__link--active .tabs__anchor--v3 {
    background-color: #ecddc0;
    color: #695934
}

.hfl .tabs__links--droplist {
    background: #695934;
    border: 1px solid #695934;
    box-shadow: 0 2px 4px 0 rgba(105,89,52,.25);
    min-height: 360px
}

.hfl .tabs__links--droplist .tabs__link {
    color: #695934;
    border-bottom: 1px solid #695934
}

.hfl .tabs__links--droplist .tabs__link--active .tabs__anchor {
    background: transparent;
    color: #695934
}

.hfl .tabs__links--droplist .tabs__link--active .tabs__anchor:hover {
    color: #695934
}

.hfl .tabs__links--droplist .tabs__anchor {
    background: transparent;
    color: #695934
}

.hfl .tabs__links--droplist .tabs__anchor--active,.hfl .tabs__links--droplist .tabs__anchor:hover {
    color: #695934;
    background: #f1f3f6
}

.hfl .tabs__links--droplist .tabs__anchor:active,.hfl .tabs__links--droplist .tabs__anchor:focus-within {
    color: #695934;
    background: #f1f3f6
}

@media(max-width: 1020px) {
    .hfl .tabs--vertical {
        width:100% !important
    }
}

@media(max-width: 767px) {
    .hfl .tabs--vertical {
        width:100% !important
    }
}

.info-card {
    padding: 3rem 0
}

@media(max-width: 767px) {
    .info-card {
        padding:2rem 0
    }
}

.info-card__title {
    font-size: 3.2rem;
    line-height: 3.4rem;
    color: #000;
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-left: 7rem;
    margin-bottom: 1rem;
    min-height: 7rem
}

@media(max-width: 1200px) {
    .info-card__title {
        font-size:2.4rem;
        line-height: 2.4rem;
        min-height: 5rem
    }
}

@media(max-width: 767px) {
    .info-card__title {
        font-size:2.2rem;
        line-height: 2.4rem;
        min-height: 5rem
    }
}

.info-card__info {
    font-size: 2rem;
    line-height: 2.2rem;
    color: #000;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

.info-card__info:last-child {
    margin-bottom: 0;
    padding-top: 6rem
}

@media(max-width: 767px) {
    .info-card__info {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.info-card__info2 {
    font-size: 2rem;
    line-height: 2.2rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    margin-bottom: 1rem
}

.info-card__info2:last-child {
    margin-bottom: 0;
    margin-top: 6rem;
    padding-left: 6rem
}

@media(max-width: 767px) {
    .info-card__info2 {
        font-size:1.6rem;
        line-height: 1.8rem
    }
}

.info-card__icon {
    font-size: 5rem;
    color: #b37671;
    position: absolute;
    top: 2rem;
    max-width: 5rem
}

@media(max-width: 767px) {
    .info-card__icon {
        font-size:3.8rem;
        max-width: 3.8rem
    }
}

.info-card__icon2 {
    font-size: 5rem;
    color: #b37671;
    position: absolute;
    top: 21rem;
    max-width: 5rem
}

@media(max-width: 767px) {
    .info-card__icon2 {
        font-size:3.8rem;
        max-width: 3.8rem
    }
}

.info-card__tile {
    padding: 2.5rem 2rem;
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(106,71,66,.24);
    height: 30.2rem;
    position: relative;
    border-radius: 2px;
    border: 1px solid #cdcece
}

@media(max-width: 1020px) {
    .info-card__tile {
        height:27rem
    }
}

@media(max-width: 767px) {
    .info-card__tile {
        height:21rem
    }
}

.info-card__tile--typ2 {
    height: 28rem
}

@media(max-width: 1200px) {
    .info-card__tile--typ2 {
        height:32rem
    }
}

.info-card .slick-slide {
    margin: 0 1.6rem
}

.info-card .slick-list {
    margin: 0 -1.6px
}

@media(max-width: 1020px) {
    .info-card .slick-list {
        padding:0 10% 0 0;
        margin: 0
    }
}

.info-card--v2 {
    padding: 0
}

.info-card--v2 .info-card__tile {
    height: 42.4rem
}

@media(max-width: 1200px) {
    .info-card--v2 .info-card__tile {
        height:32rem
    }
}

@media(max-width: 767px) {
    .info-card__wrap {
        margin-right:-15px
    }
}

@media(max-width: 1020px) {
    .info-card .slick-nav--info-card,.info-card .slick-nav--info-card2 {
        display:none
    }
}

.boldfont {
    font-weight: bold;
    color: #000
}

.addcontent::before {
    content: "\a";
    white-space: pre
}

.boxs {
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: 0 20px 40px rgba(0,0,0,.16);
    opacity: 1;
    margin: 20px auto
}

.highnumber {
    text-align: center;
    font-family: "pfhandbookpro-regular",sans-serif;
    letter-spacing: 0;
    color: #ecddc0;
    opacity: 1;
    letter-spacing: 0;
    font-size: 75px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 10rem
}

.titlehead {
    text-align: left;
    font-family: "pfhandbookpro-bold",sans-serif;
    letter-spacing: 0;
    color: #695934;
    opacity: 1;
    display: inline-block;
    font-size: 2rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal
}

.ctadesc {
    font-family: "pfhandbookpro-regular",sans-serif;
    padding-top: 3rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    font-size: 1.8rem;
    color: #6c7174
}

.accbg {
    background: #ecddc0 0% 0% no-repeat padding-box;
    border: 1px solid #ecddc0;
    padding: 30px;
    width: 90%;
    margin: auto !important
}

.accbtn {
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);
    border-radius: 3px;
    font-family: 20px/28px "pfhandbookpro-regular",sans-serif;
    opacity: 1;
    color: #000;
    border: 0;
    width: 166px;
    display: block;
    height: 52px
}

.card {
    background: #fff 0% 0% no-repeat padding-box;
    padding: 10px;
    margin: 10px
}

.titlehead-acc {
    text-align: left;
    font-family: "pfhandbookpro-bold",sans-serif;
    letter-spacing: 0;
    color: #695934;
    font-size: 1.8rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    vertical-align: 1rem
}

.helptext_danger {
    font-family: "pfhandbookpro-regular",sans-serif;
    letter-spacing: 0;
    color: #8b151b;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal
}

.helptext {
    font-family: "pfhandbookpro-regular",sans-serif;
    letter-spacing: 0;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #808080
}

.docs {
    font-family: "pfhandbookpro-regular",sans-serif;
    color: #000 !important;
    font-size: 1.8rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    vertical-align: 1rem;
    padding-left: 0
}

.docs li {
    line-height: 1.7
}

.coapp-progress-tracker {
    margin: 20px auto;
    text-align: center;
    color: #000;
    width: 90%
}

.coapp-progress-tracker .circle {
    display: inline-block;
    background: #ecddc0;
    width: 220px;
    height: 60px;
    vertical-align: top;
    padding: 10px;
    margin-top: 21px
}

.coapp-progress-tracker .circle .label {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 190px;
    text-align: center;
    font-size: 17px;
    font-weight: bold
}

.coapp-progress-tracker .circle .label p {
    color: #000;
    margin: auto
}

.coapp-progress-tracker .circle .label .front-icon {
    font-size: 2rem;
    padding: 5px
}

.coapp-progress-tracker .circle .label .back-icon {
    padding: 5px;
    margin-left: auto;
    font-size: 2rem
}

.coapp-progress-tracker .circle .p-label {
    margin-top: 2px;
    width: 55%
}

.coapp-progress-tracker .circle .sub-label {
    position: relative;
    top: -20px;
    font-weight: bold;
    font-size: 1.3rem
}

.coapp-progress-tracker .circle .act {
    border: 1px solid #695934
}

.coapp-progress-tracker .circle .title {
    color: #b5b5ba;
    line-height: 18px;
    margin-left: -30px;
    display: block;
    width: 100px;
    margin-top: 5px
}

.coapp-progress-tracker .circle .done {
    background: #000
}

.coapp-progress-tracker .active {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ecddc0;
    left: -115px;
    top: 45px;
    position: relative
}

.coapp-progress-tracker .bg-white {
    border: 1px dotted #000;
    padding: 15px
}

.coapp-progress-tracker .bg-white .round {
    border: 1px solid #000;
    width: 30px;
    height: 30px;
    border-radius: 50%
}

.coapp-progress-tracker .bg-white .round span {
    color: #000;
    position: relative
}

.coapp-progress-tracker .bg-white .label {
    background: #fff
}

.coapp-progress-tracker .bg-white .label p {
    color: #000;
    margin: auto
}

.coapp-progress-tracker .bar {
    display: inline-block;
    background: #695934;
    width: 220px;
    height: 80px;
    vertical-align: top;
    position: relative;
    width: 50px;
    height: 2px;
    margin: 0 -5px 17px -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    top: 51px;
    vertical-align: top
}

.coapp-progress-tracker .bar .done {
    background: #000
}

.coapp-progress-tracker .bar .done .label {
    color: #fff;
    background: #ecddc0 0% 0% no-repeat padding-box;
    opacity: 1;
    box-shadow: inset 0 0 2px rgba(0,0,0,.2)
}

.coapp-progress-tracker .bar .done .title {
    color: #444
}

.coapp-progress-tracker .bar .active {
    background: linear-gradient(to right,#eee 40%,#fff 60%)
}

.coapp-progress-tracker .circle:before,.coapp-progress-tracker .circle:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    width: 0;
    height: 0
}

.coapp-progress-tracker .circle:before {
    left: 100px;
    border: 11px solid transparent;
    border-bottom-color: #080808
}

.coapp-progress-tracker .circle:after {
    left: 100px;
    border: 10px solid transparent;
    border-bottom-color: #070707
}

.app-progress-tracker .circle,.app-progress-tracker .bar {
    display: inline-block;
    background: #fff;
    width: 246px;
    height: 90px;
    vertical-align: top;
    border: .5px solid #1f874c
}

.app-progress-tracker .bar {
    position: relative;
    width: 80px;
    height: 2px;
    margin: 0 -5px 17px -5px;
    border-left: none;
    border-right: none;
    border-radius: 0;
    top: 40px;
    vertical-align: top
}

.app-progress-tracker .circle .label {
    float: right;
    padding-right: 41px;
    padding-top: 13px
}

.app-progress-tracker .circle .label .sub-label {
    font-size: 10px;
    letter-spacing: 0;
    color: #919191
}

.stay-money-wise {
    width: 100%;
    padding: 15px
}

.stay-money-wise .title {
    line-height: 1.25;
    font-size: 2.4rem;
    margin: 0 0 16px;
    font-family: "pfhandbookpro-bold",sans-serif
}

@media screen and (min-width: 1200px) {
    .stay-money-wise .title {
        font-size:2.9rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise .title {
        font-size:4.1rem
    }
}

@media(max-width: 767px) {
    .stay-money-wise .title {
        margin:0 0 29px
    }
}

@media screen and (max-width: 575px) {
    .stay-money-wise .title {
        margin:0 0 8px;
        font-size: 1.5rem
    }
}

.stay-money-wise__ul {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.stay-money-wise__ul li {
    margin: 0 14px 14px 0;
    padding: 0;
    width: calc(33.333% - 10px)
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li {
        margin:0 11px 11px 0;
        width: calc(33.333% - 8px)
    }
}

.stay-money-wise__ul li::before {
    content: "";
    display: none
}

.stay-money-wise__ul li:nth-child(3n+3) {
    margin-right: 0
}

.stay-money-wise__ul li.information-box {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 3px 7px 13px 0 rgba(0,0,0,.08)
}

.stay-money-wise__ul li.information-box a {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 9px 7px
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li.information-box a {
        padding:4px 5px
    }
}

@media(max-width: 767px) {
    .stay-money-wise__ul li.information-box a {
        padding:16px 10px
    }
}

@media screen and (max-width: 575px) {
    .stay-money-wise__ul li.information-box a {
        padding:4px 4px
    }
}

.stay-money-wise__ul li.information-box a>.icon::before {
    line-height: inherit
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li.information-box a>.icon {
        font-size:2rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money-wise__ul li.information-box a>.icon {
        font-size:3.1rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box a>.icon {
        font-size:1.6rem
    }
}

.stay-money-wise__ul li.information-box .sub-title {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color:  #19503e;
    line-height: normal;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 1200px) {
    .stay-money-wise__ul li.information-box .sub-title {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise__ul li.information-box .sub-title {
        font-size:2.2rem
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li.information-box .sub-title {
        font-size:10px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money-wise__ul li.information-box .sub-title {
        font-size:1.5rem;
        margin-top: 5px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box .sub-title {
        font-size:1.2rem;
        line-height: 1.08
    }
}

.stay-money-wise__ul li.information-box .sub-title .icon {
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    color:  #19503e
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li.information-box .sub-title .icon {
        font-size:.8rem
    }
}

@media screen and (max-width: 767px) and (min-width:575px) {
    .stay-money-wise__ul li.information-box .sub-title .icon {
        font-size:.7rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box .sub-title .icon {
        font-size:2rem
    }
}

.stay-money-wise__ul li.information-box .sub-title__text {
    display: block;
    margin-right: 15px;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.2rem
}

@media screen and (min-width: 1200px) {
    .stay-money-wise__ul li.information-box .sub-title__text {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise__ul li.information-box .sub-title__text {
        font-size:2.2rem
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money-wise__ul li.information-box .sub-title__text {
        font-size:10px;
        margin-right: 0
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money-wise__ul li.information-box .sub-title__text {
        font-size:1.5rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box .sub-title__text {
        font-size:.9rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money-wise__ul li.information-box .sub-title .icon-right-arrow-thin {
        font-size:1.6rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box .sub-title .icon-right-arrow-thin {
        font-size:10px
    }
}

.stay-money-wise__ul li.information-box .info {
    font-size: 1.1rem;
    margin: 0;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .stay-money-wise__ul li.information-box .info {
        font-size:1.3rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise__ul li.information-box .info {
        font-size:1.9rem
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise__ul li.information-box .info {
        font-size:1.3rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li.information-box .info {
        font-size:1.1rem
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise__ul li.information-box.mb-hide {
        display:none
    }
}

@media screen and (min-width: 1200px) {
    .stay-money-wise__ul li.information-box .icon {
        font-size:2.7rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise__ul li.information-box .icon {
        font-size:3.8rem
    }
}

@media screen and (max-width: 768px) and (min-width:576px) {
    .stay-money-wise__ul li {
        width:calc(33.333% - 11px);
        margin: 0 16px 16px 0
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise__ul li {
        width:calc(33.333% - 3px);
        margin: 0 4px 4px 0
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise__ul {
        display:-ms-flexbox;
        display: flex
    }
}

.stay-money-wise .view-more-less {
    display: none;
    -ms-flex-pack: center;
    justify-content: center
}

.stay-money-wise .view-more-less .btn-view-more {
    background-color:  #19503e;
    color: #fff;
    font-size: 2rem;
    min-width: 120px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0 16px 0;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 5px;
    border-radius: 2px;
    border: 0
}

.stay-money-wise .view-more-less .btn-view-more .icon {
    font-size: 10px;
    display: inline;
    margin: 0;
    line-height: 0
}

@media screen and (max-width: 575px) {
    .stay-money-wise .view-more-less .btn-view-more {
        font-size:2rem
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise .view-more-less {
        display:-ms-flexbox;
        display: flex;
        position: relative
    }

    .stay-money-wise .view-more-less::before,.stay-money-wise .view-more-less::after {
        content: "";
        display: block;
        height: 1px;
        background-color:  #19503e;
        position: absolute;
        bottom: 0;
        width: calc(50% + 15px)
    }

    .stay-money-wise .view-more-less::after {
        right: -15px
    }

    .stay-money-wise .view-more-less::before {
        left: -15px
    }
}

.stay-money-wise .view-more-less.arrow-up {
    position: relative
}

.stay-money-wise .view-more-less.arrow-up .icon-arrow::before {
    display: inline-block;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.stay-money-wise .money-solutions-piller {
    display: none
}

@media screen and (max-width: 767px) {
    .stay-money-wise .money-solutions-piller {
        display:block
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__heading {
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    margin: 3px 0
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__heading h1 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: normal
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__heading h1 {
        margin:24px 0;
        font-size: 2.4rem
    }
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__heading h1 {
        margin:26px 0 15px 0;
        font-size: 1.5rem
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__container {
    width: 100%
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__container .scLooseFrameZone {
    width: 100%
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__container .scLooseFrameZone .mos-pillarcolumn__box {
    width: 100%
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__box {
    display: none
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__box:last-child {
    margin-right: 0
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__box.active {
    display: block
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__box.active .mos-pillarcolumn__card-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__title {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    display: block
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__title h4 {
    font-size: 2.6rem;
    color: #fff;
    text-align: center;
    font-family: "pfhandbookpro-bold",sans-serif
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card {
    background: #fff;
    padding: 11px;
    box-shadow: 1px -2px 8px 0 rgba(0,0,0,.08);
    position: relative;
    margin-top: 18px
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card .icon-link {
    margin-right: 18px;
    margin-top: 16px;
    text-align: right;
    float: right;
    display: -ms-flexbox;
    display: flex;
    color:  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card .icon {
    font-size: 1.5rem;
    margin: 0;
    line-height: normal
}

@media screen and (max-width: 767px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card {
        width:calc(33.333% - 12px);
        border-radius: 3px;
        padding: 8px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card:nth-child(3n+2) {
        margin-left: 18px;
        margin-right: 18px
    }
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card {
        margin-top:10px;
        width: calc(33.333% - 7px);
        padding: 4px
    }

    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card:nth-child(3n+2) {
        margin-left: 10px;
        margin-right: 10px
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title {
    font-family: "pfhandbookpro-medium",sans-serif;
    letter-spacing: normal;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title {
        -ms-flex:1;
        flex: 1
    }
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title {
        font-size:1.4rem
    }
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title {
        font-size:1.1rem
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color:  #19503e
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span {
        font-size:1.4rem
    }
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span {
        font-size:1.1rem
    }
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span .icon-right-arrow-thin {
        font-size:.9rem;
        margin-left: 8px
    }
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span .icon-right-arrow-thin {
        margin-left:2px
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span.card-txt {
    color: #000
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span.card-txt {
        font-size:2.4rem;
        margin: 8px 0 15px 0;
        max-width: 100px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__card-title span.card-txt {
        font-size:1.5rem;
        margin: 4px 0 7px 0;
        line-height: 1;
        max-width: 86px
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__list ul {
    padding: 0
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__list ul li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 0 23px;
    margin-top: 24px;
    line-height: 2.4rem
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__list ul li::before {
    content: " ";
    all: unset;
    display: none
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__list ul li a {
    color: #6c7174
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__list ul li .icon {
    color:  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer {
    width: 100vw;
    position: relative;
    left: calc(-1*(100vw - 100%)/2)
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul {
    width: 100%;
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li {
    -ms-flex: 1;
    flex: 1;
    padding: 0
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li::before {
    content: "";
    all: unset;
    display: none
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: #6c7174;
    padding: 10px 15px;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 0
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li a.active {
    color: #fff;
    font-weight: bold
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li a {
        font-size:2.4rem;
        min-height: 66px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__tabcontainer ul li a {
        font-size:1.5rem;
        min-height: 40px
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__title,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__title {
    background: #da9089;
    border: 1px solid #da9089
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__card,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__card {
    border-left: 3.6px solid #da9089
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__card .btn,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__card .btn {
    background: #da9089;
    color: #fff;
    border: 1px solid #da9089;
    text-transform: uppercase
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__qslink:hover,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__qslink:hover {
    color: #da9089;
    text-decoration: underline
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__item {
    border-bottom: 6px solid #da9089
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__item .active,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__item .active {
    background: #da9089;
    padding-bottom: 11px
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__protecting.mos-pillarcolumn__item {
        border-bottom:4px solid #da9089
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__title,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__title {
    background: #969f6e;
    border: 1px solid #969f6e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__card,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__card {
    border-left: 3.6px solid #969f6e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__card .btn,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__card .btn {
    text-transform: uppercase;
    background: #969f6e;
    color: #fff;
    border: 1px solid #969f6e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__qslink:hover,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__qslink:hover {
    color: #969f6e;
    text-decoration: underline
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__item {
    border-bottom: 6px solid #969f6e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__item .active,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__item .active {
    background: #969f6e;
    padding-bottom: 11px
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__investing.mos-pillarcolumn__item {
        border-bottom:4px solid #969f6e
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__title,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__title {
    background: #d4ae69;
    border: 1px solid #d4ae69
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__card,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__card {
    border-left: 3.6px solid #d4ae69
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__card .btn,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__card .btn {
    background: #d4ae69;
    color: #fff;
    border: 1px solid #d4ae69
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__qslink:hover,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__qslink:hover {
    color: #d4ae69;
    text-decoration: underline
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__item {
    border-bottom: 6px solid #d4ae69
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__item .active,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__item .active {
    background: #d4ae69;
    padding-bottom: 11px
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__financing.mos-pillarcolumn__item {
        border-bottom:4px solid #d4ae69
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__title,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__title {
    background:  #19503e;
    border: 1px solid  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__card,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__card {
    border-left: 3.6px solid  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__card .btn,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__card .btn {
    background:  #19503e;
    color: #fff;
    border: 1px solid  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__item {
    border-bottom: 6px solid  #19503e
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__item .active,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__item .active {
    background:  #19503e;
    padding-bottom: 11px
}

@media screen and (max-width: 360px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs .mos-pillarcolumn__item,.stay-money-wise .money-solutions-piller .mos-pillarcolumn__qs.mos-pillarcolumn__item {
        border-bottom:4px solid  #19503e
    }
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn a:visited,.stay-money-wise .money-solutions-piller .mos-pillarcolumn a:hover,.stay-money-wise .money-solutions-piller .mos-pillarcolumn a:active,.stay-money-wise .money-solutions-piller .mos-pillarcolumn a:focus {
    border: none
}

.stay-money-wise .money-solutions-piller .mos-pillarcolumn .btn {
    min-height: 24px;
    border-radius: 2px;
    background-color: #fff;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 115px;
    font-size: 1.1rem
}

@media screen and (max-width: 575px) {
    .stay-money-wise .money-solutions-piller .mos-pillarcolumn .btn {
        max-width:none;
        text-transform: initial !important
    }
}

.stay-money-wise.desktop-view {
    display: none
}

.stay-money-wise.desktop-view .stay-money-wise__ul li {
    width: 100%;
    max-width: 142px;
    margin-right: 24px
}

@media screen and (min-width: 1200px) {
    .stay-money-wise.desktop-view .stay-money-wise__ul li {
        max-width:169px
    }
}

@media screen and (min-width: 1680px) {
    .stay-money-wise.desktop-view .stay-money-wise__ul li {
        max-width:241px
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise.desktop-view {
        display:none !important
    }
}

@media screen and (max-width: 767px) {
    .stay-money-wise {
        display:block !important
    }
}

.sub-wrapper {
    display: none
}

.sub-wrapper .tabs-flex-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.sub-wrapper .tabs-flex-wrapper .tab-back-sm {
    font-size: 2.4rem;
    margin: 0 14px 0 0;
    border: 0
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper .tabs-flex-wrapper .tab-back-sm {
        font-size:1.2rem
    }
}

.sub-wrapper .calculator-card .calc-title {
    margin: 0 0 5px 0;
    font-size: 1.6rem;
    color: rgba(0,0,0,.6)
}

.sub-wrapper .calculator-card .calc-title:first-of-type {
    margin-top: 10px
}

@media screen and (min-width: 1200px) {
    .sub-wrapper .calculator-card .calc-title {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper .calculator-card .calc-title {
        font-size:2.7rem
    }
}

.sub-wrapper .calculator-card .tiles {
    display: block;
    border-left: 2px solid;
    border-radius: 3px;
    background-color: #fff;
    padding: 12px 10px;
    box-shadow: 0 22px 44px 0 rgba(0,0,0,.1)
}

@media screen and (max-width: 1920px) and (min-width:993px) {
    .sub-wrapper .calculator-card .tiles {
        width:calc(50% - 8px);
        margin-bottom: 16px
    }

    .sub-wrapper .calculator-card .tiles:nth-child(2n+2) {
        margin-left: 16px
    }
}

@media screen and (max-width: 992px) and (min-width:769px) {
    .sub-wrapper .calculator-card .tiles {
        width:calc(50% - 10px);
        margin-bottom: 20px;
        max-width: 205px
    }

    .sub-wrapper .calculator-card .tiles:nth-child(2n+2) {
        margin-left: 20px
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper .calculator-card .tiles {
        width:calc(50% - 8px);
        margin-bottom: 16px;
        max-width: 205px
    }

    .sub-wrapper .calculator-card .tiles:nth-child(2n+2) {
        margin-left: 16px
    }
}

@media screen and (max-width: 575px) and (min-width:320px) {
    .sub-wrapper .calculator-card .tiles {
        width:calc(50% - 11px);
        margin-bottom: 22px
    }

    .sub-wrapper .calculator-card .tiles:nth-child(2n+2) {
        margin-left: 22px
    }
}

.sub-wrapper .calculator-card .tiles:hover {
    border-bottom: 0
}

.sub-wrapper .calculator-card .tiles.theme-investing {
    border-color: #969f6e
}

.sub-wrapper .calculator-card .tiles.theme-protecting {
    border-color: #da9089
}

.sub-wrapper .calculator-card .tiles.theme-financing {
    border-color: #d4ae69
}

.sub-wrapper .calculator-card .tiles .badges {
    display: block;
    font-size: 10px;
    max-width: 66px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 2px;
    text-transform: uppercase;
    line-height: 15px
}

.sub-wrapper .calculator-card .tiles .badges.theme-investing {
    background-color: #969f6e
}

.sub-wrapper .calculator-card .tiles .badges.theme-protecting {
    background-color: #da9089
}

.sub-wrapper .calculator-card .tiles .badges.theme-financing {
    background-color: #d4ae69
}

@media screen and (min-width: 1200px) {
    .sub-wrapper .calculator-card .tiles .badges {
        font-size:1.4rem;
        padding: 2px
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper .calculator-card .tiles .badges {
        font-size:2rem;
        padding: 5px;
        max-width: 96px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper .calculator-card .tiles .badges {
        margin-bottom:5px
    }
}

.sub-wrapper .calculator-card .tiles .badges__red {
    background-color:  #19503e
}

.sub-wrapper .calculator-card .tiles .arrow-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
    display: block;
    font-size: 1.8rem;
    max-width: 160px;
    color: #000;
    line-height: initial
}

@media screen and (min-width: 1200px) {
    .sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
        font-size:2.7rem
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
        font-size:1.4rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
        font-size:1.8rem
    }
}

@media screen and (max-width: 575px) and (min-width:320px) {
    .sub-wrapper .calculator-card .tiles .arrow-box .heading-sm {
        font-size:1.1rem
    }
}

.sub-wrapper .calculator-card .tiles .arrow-box .icon-right-arrow-thin {
    font-size: 1.3rem;
    color:  #19503e;
    margin: 0;
    line-height: initial
}

.sub-wrapper .calculator-card .calculator-card-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (max-width: 992px) and (min-width:360px) {
    .sub-wrapper .calculator-card {
        width:100%;
        max-width: 430px
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-blogs .calculator-card {
        width:100%;
        max-width: none
    }
}

.sub-wrapper.sm-blogs .calculator-card .tiles {
    margin-top: 20px;
    margin-bottom: 0;
    min-height: 96px
}

@media screen and (max-width: 992px) and (min-width:769px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles {
        min-height:77px;
        font-size: 10px
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles {
        font-size:1.8rem;
        min-height: 130px;
        margin: 20px 0 0 0;
        width: 100%;
        max-width: none
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles {
        font-size:1.2rem;
        min-height: 80px;
        margin-top: 22px;
        margin-bottom: 0
    }
}

.sub-wrapper.sm-blogs .calculator-card .tiles .badges {
    font-size: 1.2rem
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles .badges {
        max-width:122px;
        line-height: 24px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles .badges {
        max-width:70px;
        line-height: 15px
    }
}

.sub-wrapper.sm-blogs .calculator-card .tiles .arrow-box .heading {
    max-width: none;
    font-size: 1.6rem
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles .arrow-box .heading {
        font-size:1.8rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-blogs .calculator-card .tiles .arrow-box .heading {
        font-size:1.2rem
    }
}

.sub-wrapper.sm-blogs .read-all-blogs {
    max-width: 240px;
    min-height: 64px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2.3rem;
    border: 2px solid  #19503e;
    background-color: #fff;
    margin: 22px auto;
    border-radius: 3px
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-blogs .read-all-blogs {
        max-width:150px;
        min-height: 40px;
        font-size: 1.4rem
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles {
    border: 0;
    margin-top: 20px
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 2rem
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon {
    margin-right: 20px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 3px 5px 13px 0 rgba(0,0,0,.08)
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon {
        width:42px;
        height: 42px
    }
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon {
        width:60px;
        height: 60px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon {
        width:22px;
        height: 22px
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid  #19503e
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon::before {
        border-top:11px solid transparent;
        border-bottom: 11px solid transparent;
        border-left: 15px solid  #19503e
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon::before {
        border-top:14px solid transparent;
        border-bottom: 14px solid transparent;
        border-left: 18px solid  #19503e
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-icon::before {
        border-top:6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 6px solid  #19503e
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading .podcast-data {
    -ms-flex: 1;
    flex: 1
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p {
    font-size: 1.1rem;
    margin: 0;
    color: #000;
    line-height: normal
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p {
        font-size:1.3rem
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p {
        font-size:1.9rem
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p .podcast-title {
    display: block;
    font-size: 2rem;
    margin-bottom: 4px
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p .podcast-title {
        font-size:2.4rem
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p .podcast-title {
        font-size:3.4rem
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p .podcast-title {
        font-size:1.6rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p .podcast-title {
        font-size:1.2rem
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p {
        font-size:.9rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-heading p {
        font-size:1.1rem
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date {
    font-size: 1.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #000;
    margin-top: 4px
}

@media screen and (min-width: 1200px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date {
        font-size:1.7rem
    }
}

@media screen and (min-width: 1680px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date {
        font-size:2.4rem
    }
}

@media screen and (max-width: 768px) and (min-width:575px) {
    .sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date {
        font-size:1.2rem
    }
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date .badges {
    color: #fff;
    min-width: 83px;
    line-height: 19px;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-radius: 2px;
    text-align: center
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date .badges.theme-investing {
    background-color: #969f6e
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date .badges.theme-protecting {
    background-color: #da9089
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date .badges.theme-financing {
    background-color: #d4ae69
}

.sub-wrapper.sm-podcats .calculator-card .podcast-tiles .podcast-date .bullet {
    color: #c1c7d0
}

.repeated-user-title {
    display: none
}

.repeate-user-stay-money-wise .login-right-col {
    display: block
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col {
        width:105%
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col {
        width:100%
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col {
        width:100%
    }
}

.repeate-user-stay-money-wise .login-right-col::before {
    content: none
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .login-right-col {
        display:block;
        padding: 0
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .login-right-col .stay-money-wise {
        padding-left:0;
        padding-right: 0
    }
}

@media screen and (max-width: 575px) {
    .repeate-user-stay-money-wise .login-right-col .stay-money-wise .sub-title__text {
        font-size:1.5rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .stay-money-wise .sub-title__text {
        margin-right:24px;
        font-size: 1.2rem;
        word-break: break-word
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper {
    height: auto !important;
    position: static
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper {
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper {
        padding-left:0;
        padding-right: 0
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel {
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel::-webkit-scrollbar {
    display: none
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel .owl-stage-outer {
    overflow: visible !important
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel .owl-stage {
    padding-left: 0 !important
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
    position: absolute;
    left: 80px
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev {
    position: absolute;
    left: 0
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
    border: 1px solid  #19503e;
    border-radius: 35px;
    padding: 4px !important;
    width: 24px;
    height: 24px;
    background:  #19503e;
    color: #fff;
    bottom: 0
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
        padding:4px !important
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
        background: #19503e;
        position: absolute;
        border: 1px solid  #19503e
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
        background: #19503e;
        position: absolute;
        border: 1px solid  #19503e;
        display: none
    }
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next {
        width:33px;
        height: 33px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev span,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next span {
    position: relative;
    bottom: 7px;
    font-size: 24px;
    text-align: center
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev span,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next span {
        color:#fff
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev span,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next span {
        color:#fff
    }
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-prev span,.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .owl-carousel button.owl-next span {
        font-size:33px;
        bottom: 4px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper {
        padding:0
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper {
        width:104%
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper {
        margin-top:0;
        padding: 0;
        width: 104%
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-recommended {
    display: none
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper {
    -ms-flex-pack: justify;
    justify-content: space-between
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon {
    margin: 0;
    width: calc(50% - 15px);
    border: 0;
    max-width: none;
    border-radius: 2px;
    box-shadow: 0 6px 20px -9px rgba(0,0,0,.22);
    margin-bottom: 4%
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon {
        width:calc(94% - 15px)
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon {
        width:calc(99% - 24px)
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon {
        width:calc(53% - 20px)
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
    padding: 4px 6px;
    height: 100%;
    max-height: 60px;
    font-size: 1.6rem;
    margin-bottom: 7px;
    min-height: 40px
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
         padding:4px 16px 7px 8px !important
    }
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        min-height:26px;
              padding: 4px 16px 6px 8px;
        margin-bottom: 5px !important
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        margin-bottom:5px !important
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        font-size:2.6rem;
         min-height: 42px;
         margin: 0  0 19px;
         padding: 6px 25 .6px 10px 13px
    }
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        min-height:26px
    }
}

@media screen and (max-width: 1199px) and (min-width:991px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        min-height:27px
    }
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        padding:6px 6px
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label {
        padding:10px 5px 10px 11px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
    font-size: 1.6rem;
    min-height: 32px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 5px;
    line-height: 1.6rem
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.6rem
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:2rem;
        line-height: .99
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.2rem;
        line-height: normal;
        min-height: 14px
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.6rem;
        min-height: 25px;
        line-height: normal
    }
}

@media screen and (max-width: 870px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        min-height:17px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.6rem;
        max-width: 290px
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        min-height:33px
    }
}

@media screen and (max-width: 575px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.6rem;
        line-height: normal;
        min-width: 184px
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .cta-label {
        font-size:1.6rem;
        line-height: normal;
        min-width: 105px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
    font-size: 1.2rem;
    min-width: 76px;
    display: block;
    padding: 0 4px;
    line-height: 20px
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        font-size:1.6rem;
        padding: 2px 7px
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        font-size:2.6rem;
        padding: 4px 11px
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        font-size:1.6rem;
        min-width: 72px;
        line-height: 14px
    }
}

@media screen and (max-width: 768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        line-height:14px
    }
}

@media screen and (max-width: 910px) and (min-width:576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        min-width:62px;
        font-size: 1.6rem
    }
}

@media(max-width: 767px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        font-size:1.6rem;
        padding: 3px 4px;
        height: 28px;
        min-width: 163px;
        line-height: 21px
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        font-size:1.6rem;
        padding: 3px 4px;
        height: 33px;
        min-width: 163px;
        line-height: 28px
    }
}

@media screen and (max-width: 575px) and (min-width:320px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--label .btn-mini {
        height:auto;
        font-size: 1.6rem;
        min-width: 85px;
        line-height: 16px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title {
    font-size: 1.6rem
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title-cta {
    font-size: 1.6rem;
    line-height: 20px;
    padding: 0 10px
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title-cta {
        padding:5px 5px 10px
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title-cta {
        padding:5px 5px 10px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
    font-size: 1.5rem;
    display: block;
    border-radius: 12px;
    padding: 2px 10px;
    line-height: 20px
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
        font-size:1.8rem
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
        font-size:2.6rem;
        border-radius: 30px;
        padding: 6px 10px
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
        font-size:1.2rem
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
        font-size:1.5rem
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .curve-lbl {
        font-size:1.1rem
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .initial-bg {
    display: none
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--title .txt-mobile {
    display: none
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--content {
    font-size: 1.6rem;
    margin: 5px 0 4px 0;
    max-height: 100px;
    min-height: 78px;
    padding: 0 10px
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--content {
        font-size:1.6rem;
        margin: 10px 0 4px 0
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--content {
        font-size:2.6rem;
        margin: 15px 0 4px 0
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--content {
        font-size:1.6rem
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button {
    text-align: right;
    margin-bottom: 10px;
    padding: 0 15px 0 10px
}

@media screen and (max-width: 767px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button {
        display:block;
        padding: 0
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button {
        padding:0 5px 0 10px
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button .btn-orange {
    min-width: 78px;
    min-height: 26px;
    background-color: #f7a500;
    color: #000;
    font-size: 1.4rem;
    padding: 0 2px
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button .btn-orange {
        font-size:1.5rem;
        padding: 0 12px
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button .btn-orange {
        font-size:2.1rem;
        padding: 0 20px
    }
}

@media screen and (max-width: 767px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .dashboard__nbo--button .btn-orange {
        display:none
    }
}

.repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .foot-notes {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.6rem;
    border-radius: 0;
    max-height: 40px;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    line-height: 1
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .foot-notes {
        font-size:1.5rem;
        padding: 5px 9px
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .foot-notes {
        font-size:2.1rem;
        padding: 5px 10px
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .foot-notes {
        font-size:.8rem;
        line-height: normal
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper .dashboard__nbo-cards-innerwrapper .dashboard__nbo-card-item-wrapper .dashboard__nbo-info-icon .foot-notes {
        font-size:.9rem;
        line-height: normal
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .login-right-col .dashboard__nbo-cards-wrapper {
        display:block !important
    }
}

.repeate-user-stay-money-wise .login-right-col .repeated-user-title {
    font-size: 2.4rem;
    line-height: 30px;
    letter-spacing: -.27px;
    margin: 0;
    padding: 8px 16px 20px 16px;
    font-weight: bold;
    display: block
}

@media screen and (min-width: 1200px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        font-size:2.9rem;
        margin-bottom: 24px
    }
}

@media screen and (min-width: 1680px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        font-size:4.1rem;
        margin-bottom: 40px
    }
}

@media screen and (max-width: 1199px) and (min-width:992px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        padding:8px 16px 20px 0
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        font-size:1.8rem
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        padding-left:32px !important
    }
}

@media screen and (max-width: 767px) and (min-width:575px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        font-size:2.4rem;
        padding: 0;
        padding-bottom: 3%;
        padding-left: 0 !important;
        padding-top: 10px
    }
}

@media screen and (max-width: 360px) {
    .repeate-user-stay-money-wise .login-right-col .repeated-user-title {
        font-size:1.5rem;
        padding: 0;
        padding-left: 0 !important
    }
}

.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view)>.title,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .stay-money-wise__ul,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .view-more-less {
    display: none !important
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view)>.title,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .stay-money-wise__ul,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .view-more-less {
        display:-ms-flexbox !important;
        display: flex !important
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view)>.title.hide,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .stay-money-wise__ul.hide,.repeate-user-stay-money-wise .stay-money-wise:not(.stay-money-wise.desktop-view) .view-more-less.hide {
        display:none !important
    }
}

.repeate-user-stay-money-wise .stay-money-wise.desktop-view {
    display: block !important
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .stay-money-wise.desktop-view {
        display:none !important
    }
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .repeate-user-stay-money-wise .stay-money-wise.desktop-view .stay-money-wise__ul li {
        max-width:124px;
        margin-right: 16px
    }
}

@media screen and (max-width: 576px) {
    .repeate-user-stay-money-wise .mb-bg {
        padding-left:0
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .mb-bg {
        background-color:#f8fcff
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .mb-bg {
        background-color:#f8fcff
    }
}

@media screen and (max-width: 767px) {
    .repeate-user-stay-money-wise .mb-bg .dashboard__nbo-cards-wrapper {
        background-color:transparent
    }
}

.dashboard__nbo-card-item-wrapper {
    margin-bottom: 20px
}

.stay-money__bottom-wrapper {
    display: none
}

.stay-money__bottom-wrapper.active {
    display: block
}

.stay-money__horizontal-tab-main-wrapper {
    width: calc(100% - 30px);
    position: relative;
    background-color: #fff
}

.stay-money__horizontal-tab-main-wrapper ul {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    position: relative;
    margin-bottom: 0
}

.stay-money__horizontal-tab-main-wrapper ul li {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.6rem;
    text-align: center;
    color: rgba(0,0,0,.5) !important;
    padding: 14px 16px;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    cursor: pointer
}

@media screen and (min-width: 1200px) {
    .stay-money__horizontal-tab-main-wrapper ul li {
        font-size:1.9rem
    }
}

@media screen and (min-width: 1680px) {
    .stay-money__horizontal-tab-main-wrapper ul li {
        font-size:2.7rem
    }
}

.stay-money__horizontal-tab-main-wrapper ul li::before {
    display: none
}

.stay-money__horizontal-tab-main-wrapper ul li:last-child:after {
    display: none
}

.stay-money__horizontal-tab-main-wrapper ul li.active {
    font-family: "pfhandbookpro-bold",sans-serif;
    z-index: 1;
    color: #000 !important
}

.stay-money__horizontal-tab-main-wrapper ul li.active:before {
    display: none
}

.stay-money__horizontal-tab-main-wrapper ul li.active.theme-investing {
    background-color: #969f6e
}

.stay-money__horizontal-tab-main-wrapper ul li.active.theme-protecting {
    background-color: #da9089
}

.stay-money__horizontal-tab-main-wrapper ul li.active.theme-financing {
    background-color: #d4ae69
}

@media screen and (max-width: 991px) and (min-width:768px) {
    .stay-money__horizontal-tab-main-wrapper ul li {
        font-size:1.4rem;
        padding: 14px 24px
    }
}

@media screen and (max-width: 767px) and (min-width:576px) {
    .stay-money__horizontal-tab-main-wrapper ul li {
        font-size:1.6rem;
        padding: 14px 24px
    }
}

@media screen and (max-width: 575px) and (min-width:360px) {
    .stay-money__horizontal-tab-main-wrapper ul li {
        font-size:1.1rem;
        padding: 14px 12px
    }
}

.stay-money__horizontal-tab-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    transition: all .2s;
    will-change: transform;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-overflow-style: none
}

.stay-money__horizontal-tab-scroll-wrapper::-webkit-scrollbar {
    display: none
}

.stay-money__horizontal-tab-scroll-cta {
    position: absolute;
    border: 1px solid  #19503e !important;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border: 0 none;
    color:  #19503e;
    border-radius: 50%;
    top: 14px;
    z-index: 1;
    text-align: center;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff
}

@media screen and (max-width: 574px) and (min-width:360px) {
    .stay-money__horizontal-tab-scroll-cta {
        width:16px;
        height: 16px
    }
}

.stay-money__horizontal-tab-scroll-cta .icon {
    display: block;
    font-size: 1.2rem;
    line-height: 22px
}

@media screen and (max-width: 574px) and (min-width:360px) {
    .stay-money__horizontal-tab-scroll-cta .icon {
        line-height:0;
        font-size: 10px
    }
}

.stay-money__horizontal-tab-scroll-cta.scroll-left {
    left: 0
}

.stay-money__horizontal-tab-scroll-cta.scroll-left .icon {
    margin: 1px 1px 0 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 991px) {
    .stay-money__horizontal-tab-scroll-cta.scroll-left {
        left:-5px
    }
}

.stay-money__horizontal-tab-scroll-cta.scroll-right {
    right: 0
}

.stay-money__horizontal-tab-scroll-cta.scroll-right .icon {
    margin: 1px 0 0 1px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 991px) {
    .stay-money__horizontal-tab-scroll-cta.scroll-right {
        right:-5px
    }
}

.buy-login-wrap {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.buy-login {
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%
}

@media(max-width: 1020px) {
    .buy-login {
        padding:1rem;
        margin-bottom: 2rem
    }
}

.buy-login__box {
    border-radius: .4rem;
    height: auto;
    box-shadow: 0 0 1.4rem 0 rgba(106,71,66,.24);
    border: .1rem solid #cdcece;
    background-color: #fff;
    min-height: 40rem;
    position: relative
}

.buy-login__head {
    padding: 2.4rem;
    background-color: #f0ece9;
    color: #6c7174
}

@media(max-width: 1020px) {
    .buy-login__head-text {
        font-size:1.8rem !important
    }
}

.buy-login__body {
    padding: 2.4rem
}

.buy-login .button-link {
    padding-left: 0
}

.buy-login .btn-wrap {
    bottom: 2.4rem;
    right: 2.4rem
}

@media screen and (max-width: 1024px) {
    .buy-login .btn-wrap {
        position:static
    }
}

.buy-login .abc-form .form-group--otp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end
}

.buy-login .abc-form .form-group--otp .form-group__label {
    width: 100%
}

.buy-login .abc-form .form-group--otp .input-group {
    width: auto;
    margin-right: 5rem
}

@media(max-width: 1200px) {
    .buy-login .abc-form .form-group--otp .input-group {
        margin:0 0 1rem 0
    }
}

@media(max-width: 1020px) {
    .buy-login .abc-form .form-group--otp .input-group {
        margin:0 1rem 0 0
    }
}

@media(max-width: 767px) {
    .buy-login .abc-form .form-group--otp .input-group {
        margin:0 0 1rem 0
    }
}

.buy-login .abc-form .form-group--otp .otp-timer {
    font-size: 1.8rem;
    line-height: 2.8rem
}

.buy-login .abc-form .form-control--otp {
    max-width: 5rem;
    line-height: 5rem;
    height: 5rem;
    margin-right: 1rem;
    text-align: center;
    font-size: 1.6rem
}

.buy-online__thanks-msg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.buy-online__thanks-msg__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.buy-online__thanks-msg__container h3 {
    font-size: 2.5rem;
    color: #6a4742;
    text-align: center
}

.buy-online__thanks-msg__container h2 {
    font-size: 3rem;
    color:  #19503e;
    text-align: center
}

.buy-online__thanks-msg__container .s_advise h3 {
    border-top: 1px solid #da9089;
    border-bottom: 1px solid #da9089;
    padding: 1rem 0
}

.buy-login__body .thank-you__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.buy-login__body .thank-you__container .thank-you__submit {
    text-align: center;
    pointer-events: none
}

.buy-login__body .thank-you__container .thank-you__submit h3 {
    color: #6a4742;
    font-size: 2.5em
}

.abc-form .input-group--v2 .form-control:-ms-input-placeholder {
    opacity: 1
}

.abc-form .input-group--v2 .form-control::placeholder {
    opacity: 1
}

.abc-form .input-group--v2 .form-control:-ms-input-placeholder {
    opacity: 1
}

.abc-form .input-group--v2 .form-control::-ms-input-placeholder {
    opacity: 1
}

.advisor-login .buy-online__thanks-msg {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center
}

.advisor-login .buy-online__thanks-msg__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.advisor-login .buy-online__thanks-msg__container h3 {
    font-size: 2.5rem;
    color: #6a4742;
    text-align: center
}

.advisor-login .buy-online__thanks-msg__container h2 {
    font-size: 3rem;
    color:  #19503e;
    text-align: center
}

.advisor-login .buy-online__thanks-msg__container .s_advise h3 {
    border-top: 1px solid #da9089;
    border-bottom: 1px solid #da9089;
    padding: 1rem 0
}

.search-div {
    max-width: 500px;
    height: 47px;
    margin: auto
}

.input-div {
    position: relative
}

.txt {
    width: 100%;
    height: 39.6px;
    padding: 0 0 0 16px;
    box-shadow: 0 2px 12px -2px rgba(0,0,0,.11);
    border: solid .9px #cdcece;
    border-top-left-radius: 4.6px;
    border-bottom-left-radius: 4.6px;
    position: relative;
    outline: none;
    width: 100%;
    background-repeat: no-repeat
}

.txt::-webkit-input-placeholder {
    font-size: 16px
}

.red-button {
    width: 100%;
    font-size: 20px;
    border: none;
    height: 39.6px;
    background:  #19503e;
    color: #fff;
    font-family: "pfhandbookpro-regular",sans-serif;
    position: relative;
    text-transform: none !important;
    border-top-right-radius: 4.6px;
    border-bottom-right-radius: 4.6px;
    line-height: 1.5
}

@media only screen and (max-width: 548px) {
    .red-button {
        font-size:16px
    }
}

.red-button:hover,.red-button:focus {
    background:  #19503e;
    color: #fff;
    border: none
}

.red-button:active {
    background: #8b151b;
    color: #fff;
    border: none
}

.searchIcon {
    left: 25px;
    position: absolute;
    top: 16px;
    z-index: 99;
    opacity: .5
}

@media only screen and (max-width: 548px) {
    .search-div {
        max-width:420px
    }
}

.locationIcon {
    margin-bottom: 7px !important;
    margin-left: 1px !important
}

body {
    box-sizing: border-box
}

.info-box {
    width: 455px;
    margin: 22px 76px 21px 20px;
    padding: 10px 15px 9px;
    border-radius: 5.2px;
    box-shadow: 0 13px 51px 0 rgba(0,0,0,.05);
    border: solid .7px  #19503e
}

.without-bg {
    font-family: PFHandbookPro;
    font-size: 13px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #000
}

.capial-red {
    color:  #19503e
}

.with-bg {
    width: 425px;
    height: 60px;
    margin: 6px 0 0;
    padding: 9px 10px;
    box-shadow: 0 8px 30px 0 rgba(0,0,0,.05);
    background-color:  #19503e;
    position: relative
}

.with-bg-inner {
    width: 377px;
    height: 42px;
    margin: 0;
    font-family: PFHandbookPro;
    font-size: 18px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    color: #fff
}

.r8-arrow {
    width: 17px;
    height: 10px;
    position: absolute;
    top: 25px;
    right: 15px
}

.main-box {
    width: 455px;
    margin: 21px 76px 0 20px;
    padding: 22px 0 0;
    border-radius: 5.2px;
    box-shadow: 0 13px 51px 0 rgba(0,0,0,.05);
    border: solid .7px rgba(157,157,157,.45)
}

.adv-search {
    font-weight: 600;
    width: 403px;
    height: 52px;
    margin: 0 26px 13px;
    padding: 14px 10px 15px 9px;
    border-radius: 3.9px;
    border: solid 1.3px #cdcece;
    font-size: 15px
}

.adv-dropdown {
    margin: 0 26px
}

.sort-by {
    color: #6c7174
}

.dropdown-list {
    width: 247px;
    height: 39px;
    margin: 7px 0 0;
    padding: 8px 11px 8px 20px;
    border-radius: 2.6px;
    border: solid 1.3px #cdcece
}

.result-value {
    margin: 10px 39px 10px 26px;
    font-family: "pfhandbookpro-bold";
    font-size: 18.2px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23
}

.search-results-block {
    width: 403px;
    margin: 10px 26px 13px;
    border-radius: 8px;
    padding: 18px 0 0 0;
    background: #fff;
    border: solid .7px rgba(183,183,183,.36);
    border-left: 8px solid  #19503e
}

.suggest-chips-li {
    width: 79px;
    height: 20px;
    margin: 0 9px 1px 0;
    padding: 0 7px 0 5px;
    border-radius: 2.6px;
    background-color: #da9089;
    color: #fff
}

.search-results-upper {
    padding-left: 14px
}

.suggest-results-name {
    width: 122px;
    height: 26px;
    margin: 0 11px 3px 0;
    font-family: PFHandbookPro;
    font-size: 24px;
    color: #000
}

.search-results-distance {
    width: 99px;
    height: 26px;
    margin: 0 0 0 2px;
    font-family: PFHandbookPro;
    font-size: 16px;
    font-weight: 500;
    color: #6a6161;
    letter-spacing: normal
}

.select-prefered {
    width: 101px;
    height: 20px;
    margin: 5px 131px 0 0;
    padding: 0 10px;
    border-radius: 2.6px;
    border: solid .5px #dadada;
    background-color: #fff
}

.select-prefered-text {
    width: 81px;
    height: 20px;
    font-family: PFHandbookPro;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color:  #19503e
}

.call-options-icons {
    margin-top: 9px
}

.adv-icon {
    width: 29px;
    height: 29px;
    margin: 0 16px 0 0
}

.search-results-lower {
    width: 399px;
    height: 30px;
    margin: 6px 0 10px;
    padding: 5px 16px 6px 0
}

.know-more {
    display: inline;
    font-size: 22px;
    color: #000;
    position: relative
}

.know-more .get-in-touch-button {
    float: right;
    width: 135px;
    height: 32px;
    border: none;
    margin-top: -7px;
    border-radius: 4px;
    background-color: #f7a500;
    color: #000
}

.get-directions {
    display: inline;
    margin-right: 170px
}

.adv-footer {
    width: 455px;
    height: 48px;
    margin: 13px 0 0;
    padding: 14px 0 0 0;
    background-color:  #19503e
}

.footer-text {
    font-size: 20.8px;
    line-height: 1.07;
    font-family: PFHandbookPro;
    color: #fff
}

.view-less {
    margin-left: 11px
}

.adv-search-box {
    position: relative
}

.loacte-advisor-block {
    position: absolute;
    top: 16px;
    right: 29px
}

.indv-block {
    position: relative
}

.adv-closeIcon {
    position: absolute;
    top: 10px;
    right: 15px
}

.get-directions-searchbox {
    width: 250px;
    height: 38px;
    margin: 10px -4px 10px 10px;
    padding: 0 0 0 11px;
    outline: 0;
    border: solid 1px #cdcece;
    background-color: #fff
}

.get-directions-button {
    border: 0;
    width: 125px;
    height: 38px;
    outline: 0;
    padding: 9px 20px 12px 21px;
    background-color:  #19503e;
    color: #fff
}

.adv-closeIcon {
    cursor: pointer
}

.searchvalue-results-upper {
    padding-left: 45px;
    position: relative
}

.np-backIcon {
    position: absolute;
    left: 21px;
    top: 15px;
    cursor: pointer
}

.breaek-line {
    width: 404px;
    height: 2px;
    margin: 26px 24px 20px -29px;
    opacity: .1;
    border: solid 1px #979797
}

.f-600 {
    font-weight: 600
}

.text-grey {
    color: #808080
}

.right-space {
    margin-right: 14px
}

.searchvalue-results-lower {
    width: 453px;
    height: 47px;
    padding: 13px 181px 13px 22px;
    background-color: #f3f3f3
}

.searchvalue-get-directions {
    display: inline;
    margin-right: 26px
}

.searchvalue-show-on-map {
    display: inline;
    font-family: "pfhandbookpro-bold";
    margin-left: 28px
}

.mapIcon {
    margin-right: 11px;
    width: 15px;
    height: 16px
}

#map-container {
    position: fixed;
    left: 312px;
    top: 0;
    left: 0;
    right: 2px;
    bottom: 2px;
    border: 1px solid #ccc;
    z-index: -1
}

.menu {
    position: absolute;
    max-width: 480px
}

.main-box {
    background-color: #f1f3f6
}

.info-box {
    background-color: #fff
}

.map-control li::before {
    list-style: none !important;
    content: "" !important
}

.leaflet-popup-content {
    width: 304px !important
}

.leaflet-popup-content-wrapper,.leaflet-popup-tip {
    background: none !important;
    color: none !important;
    box-shadow: none !important
}

.leaflet-container a.leaflet-popup-close-button {
    top: 27px !important;
    right: -97px !important;
    color: transparent !important
}

.leaflet-routing-icon {
    background-image: url("../images/osrm.directions.icons.color.svg");
    background-size: 455px 20px;
    background-repeat: no-repeat;
    margin: 0;
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px
}

.leaflet-routing-icon.lanes.invalid {
    filter: invert(50%)
}

.leaflet-routing-alt-minimized .leaflet-routing-icon {
    background-image: url("../images/osrm.directions.icons.color.svg")
}

.leaflet-routing-icon-continue {
    background-position: 2px 0
}

.leaflet-routing-icon-sharp-right {
    background-position: -24px 0
}

.leaflet-routing-icon-turn-right {
    background-position: -50px 0
}

.leaflet-routing-icon-bear-right {
    background-position: -74px 0
}

.leaflet-routing-icon-u-turn {
    background-position: -101px 0
}

.leaflet-routing-icon-sharp-left {
    background-position: -127px 0
}

.leaflet-routing-icon-turn-left {
    background-position: -150px 0
}

.leaflet-routing-icon-bear-left {
    background-position: -175px 0
}

.leaflet-routing-icon-depart {
    background-position: -202px 0
}

.leaflet-routing-icon-enter-roundabout {
    background-position: -227px 0
}

.leaflet-routing-icon-arrive {
    background-position: -253px 0
}

.leaflet-routing-icon-via {
    background-position: -278px 0
}

.leaflet-routing-icon-fork {
    background-position: -305px 0
}

.leaflet-routing-icon-ramp-right {
    background-position: -331px 0
}

.leaflet-routing-icon-ramp-left {
    background-position: -352px 0
}

.leaflet-routing-icon-merge-left {
    background-position: -376px 0
}

.leaflet-routing-icon-merge-right {
    background-position: -403px 0
}

.leaflet-routing-icon-end {
    background-position: -429px 0
}

.leaflet-popup-content p {
    margin: 0 0 !important
}

.menu img {
    margin-bottom: 0 !important
}

#map-container img {
    margin-bottom: 0 !important
}

.lpi-1615958732301-64099 {
    background-color:  #19503e;
    margin-left: -6.5px;
    margin-top: -6.5px;
    width: 15px;
    height: 15px;
    transform: translate3d(178px,126px,0);
    z-index: 126;
    margin-left: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    transform: translate3d(942px,166px,0);
    z-index: 166
}

.lpi-1615961250948-76302:after {
    box-shadow: 0 0 6px 2px  #19503e;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.1s
}

.leaflet-pulsing-icon {
    border-radius: 100%;
    box-shadow: 1px 1px 8px 0 rgba(0,0,0,.75);
    background-color:  #19503e;
    width: 15px;
    height: 15px
}

.leaflet-pulsing-icon:after {
    content: "";
    border-radius: 100%;
    height: 300%;
    width: 300%;
    position: absolute;
    margin: -100% 0 0 -100%
}

@keyframes pulsate {
    0% {
        transform: scale(.1,.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none
    }

    100% {
        transform: scale(1.2,1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0)
    }
}

.searchvalue-show-on-map img {
    font-family: "pfhandbookpro-bold";
    margin-bottom: 6px !important
}

.address-text .f-600 {
    font-family: "pfhandbookpro-bold";
    color: #000
}

.line-separator {
    margin: 12px 24px 11px -28px !important;
    opacity: .1;
    border: solid 1px #979797;
    border-top: 1px solid rgba(0,0,0,.1)
}

.select-prefered-new {
    margin: 9.5px 0 0 2px !important
}

.chips-container {
    margin-top: 10px;
    min-height: 54px
}

@media screen and (max-width: 480px) {
    .chips-container {
        min-height:auto
    }
}

.chips-container span {
    line-height: 32px
}

.info-box-desktop {
    display: block;
    margin: 21px 0 21px 20px !important;
    padding: 10px 10px 11px !important;
    width: 466px !important;
    float: right
}

.info-box-mobile {
    display: none
}

.call-options-icons {
    height: 21px
}

.call-options-icons-left {
    display: inline-block;
    float: left
}

.call-options-icons-left .voice,.call-options-icons-left .video {
    margin-left: unset !important
}

.menu img {
    margin-bottom: 4px !important
}

.search-results-block .search-results-upper .chips-container span,.search-results-upper .chips-container span,.search-results-upper .search-business-values span {
    white-space: nowrap;
    font-size: 15px;
    width: 89px;
    height: 24px;
    margin: 0 8px 8px 0;
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 600
}

@media screen and (max-width: 480px) {
    .search-results-block .search-results-upper .chips-container span,.search-results-upper .chips-container span,.search-results-upper .search-business-values span {
        margin:0 4px 8px 0
    }
}

.suggest-results-name {
    margin-right: 0
}

.select-prefered {
    display: inline-block;
    width: unset;
    height: unset;
    float: right;
    margin: 0 0 0 2px
}

.select-prefered p {
    margin: 0;
    width: unset;
    height: unset;
    text-transform: capitalize
}

.breaek-line {
    border: 0;
    margin: 25px 25px 0 25px
}

.address-text p {
    margin-bottom: 12px
}

.search-results-lower .get-directions span {
    margin-left: 5px
}

.info-box,.main-box {
    margin-left: 0
}

.search-results-block .search-results-upper {
    width: 375px
}

.search-results-block {
    padding: 2px 0 0 0
}

.chips-container span {
    margin-bottom: 5px
}

.search-business-values {
    margin-top: 8px;
    font-family: "pfhandbookpro-regular"
}

.search-business-values span {
    margin-top: 10px
}

.suggest-chips-hi,.suggest-chips-li,.suggest-chips-ia {
    background-color: #da9089
}

.suggest-chips-ss,.suggest-chips-mf {
    background-color: #969f6e
}

.suggest-chips-fi,.suggest-chips-hf {
    background-color: #d4ae69
}

.get-directions,.know-more,.adv-footer,.searchvalue-get-directions,.searchvalue-show-on-map {
    cursor: pointer
}

.suggest-results-name {
    font-family: "pfhandbookpro-regular"
}

.view-less {
    margin-left: 11px;
    font-family: "pfhandbookpro-regular"
}

.locAdv {
    color:  #19503e;
    font-size: 16px
}

.adv-search:-ms-input-placeholder {
    font-family: "pfhandbookpro-regular";
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    color: #000;
    opacity: 1
}

.adv-search::placeholder {
    font-family: "pfhandbookpro-regular";
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    color: #000;
    opacity: 1
}

.adv-search:-ms-input-placeholder {
    font-family: "pfhandbookpro-regular";
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    color: #000
}

.adv-search::-ms-input-placeholder {
    font-family: "pfhandbookpro-regular";
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.24;
    letter-spacing: normal;
    color: #000
}

.popupGetDirBtn {
    border: none;
    font-family: pfhandbookpro-regular;
    background-color: #f3f3f3;
    font-size: 18.2px;
    color: #000
}

#routing-back-button p span {
    color: #000
}

#routing-back-button {
    cursor: pointer
}

#avaibleRt_map-container {
    display: none
}

.leftRightAngle {
    width: 0;
    height: 0;
    border: 200px solid;
    border-bottom-color: #a52a2a;
    border-top-color: transparent;
    border-left-color: #a52a2a;
    border-right-color: transparent
}

.arrow-rectangle {
    border-top: 6px solid #008000;
    border-left: 28px solid #008000;
    display: inline-block;
    position: relative;
    vertical-align: middle
}

.arrow-triangle {
    border-top: 10px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #008000;
    display: inline-block;
    position: relative;
    left: -4px;
    vertical-align: middle
}

.emp-content-title {
    margin: 24px 0 16px 0;
    font-family: PFHandbookPro
}

.emp-content-title label {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    color: #000
}

.emp-content-body {
    margin: 8px 25px 16px 25px;
    padding: 8px 10px 16px 14px;
    border-radius: 3px;
    border: solid .5px rgba(183,183,183,.36);
    background-color: #fff
}

.emp-content-body .emp-cnt1 {
    opacity: .5;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000
}

.emp-content-body .emp-cnt2 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000
}

.emp-content-body .emp-cnt2 span {
    color:  #19503e
}

.plan-btn {
    width: 104px;
    padding: 7px 6px;
    margin: 16px 182px 0 0;
    padding: 5px 2px 4px 6px;
    background-color: #f7a500;
    border-radius: 4px
}

.plan-btn a {
    font-family: PFHandbookPro;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "pfhandbookpro-bold",sans-serif;
    cursor: pointer;
    border: none
}

.plan-btn .pln-btn-cnt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.plan-btn .pln-btn-cnt img {
    width: 15px;
    height: 15px
}

.whitelabel {
    ​​​​​​​background: #fff;
    top: 6px;
    left: -100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    padding: 1px 1px 0 7px;
    position: relative;
    border-radius: 5px 13px 0 5px;
    white-space: nowrap;
    font-size: 11px
}

​​​​​​​ .whitelabel:after {
    ​​​​​​​position: relative;
    left: 20px;
    bottom: 100%;
    top: 0;
    content: "";
    border-bottom: 18px solid #fff;
    border-right: 20px solid transparent
}

​​​​​​​ .whitelabel img {
    ​​​​​​​left: 101%;
    top: -99%;
    position: absolute
}

​​​​​​​ .lpi-1615958732301-64099 {
    background-color:  #19503e;
    margin-left: -5px;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    transform: translate3d(942px,166px,0);
    z-index: 166
}

.lpi-1615961250948-76302:after {
    box-shadow: 0 0 6px 2px #397b14;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.1s
}

.leaflet-pulsing-icon {
    border-radius: 100%;
    box-shadow: 1px 1px 8px 0 rgba(0,0,0,.75);
    background-color: #397b14;
    width: 10px;
    height: 10px;
    margin-top: 35px;
    margin-left: 10px
}

.leaflet-pulsing-icon:after {
    content: "";
    border-radius: 100%;
    height: 300%;
    width: 300%;
    position: absolute;
    margin: -100% 0 0 -100%
}

.turn-tab-text {
    padding: 0 5px 20px 0 !important;
    margin-top: -5px
}

.mmirtInst {
    margin-top: 10px
}

.adv-footer-mobile {
    display: none
}

.adv-search-box-mobile {
    display: none
}

.adv-footer-desktop {
    display: block
}

.adv-search-box-desktop {
    display: block
}

.locate-advisor-first {
    position: absolute;
    top: unset !important;
    right: 25px;
    background-color:  #19503e;
    padding: 15px 27px 15px 10px
}

.locate-advisor-first span {
    color: #fff
}

#mmi-advisor-detail {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden
}

.adv-icon {
    cursor: pointer
}

.select-prefered-popup {
    float: unset !important
}

.adv-search-box-desktop {
    display: inline-block
}

.loacte-advisor-block {
    position: absolute;
    top: 16px;
    right: 22px;
    border-top-right-radius: 3.9px;
    border-bottom-right-radius: 3.9px
}

.adv-search-des {
    font-weight: normal;
    width: 301px;
    height: 52px;
    margin: 0 4px 0 26px;
    padding: 14px 10px 15px 9px;
    border-radius: 3.9px;
    border: solid 1.3px #cdcece;
    font-size: 18px;
    display: inline-block
}

.name {
    font-size: 16px
}

.filter-chips {
    padding: 5px;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 2.6px;
    display: inline
}

.all {
    background-color: rgba(199,34,42,.2)
}

.li {
    background-color: rgba(218,144,137,.2);
    padding: 5px 7.8px;
    color: #8a151b
}

.ia {
    background-color: rgba(218,144,137,.2);
    padding: 5px 7.8px;
    color: #8a151b
}

.hi {
    background-color: rgba(218,144,137,.2);
    padding: 5px 6.8px;
    color: #8a151b
}

.mf {
    padding: 5px 6.8px;
    background-color: rgba(150,159,110,.2);
    color: #3e593c
}

.ss {
    padding: 5px 6.8px;
    background-color: rgba(150,159,110,.2);
    color: #3e593c
}

.hf {
    padding: 5px 6.8px;
    background-color: rgba(151,122,67,.2);
    color: #473006
}

.fi {
    padding: 5px 8.8px;
    background-color: rgba(151,122,67,.2);
    color: #473006
}

.all-list {
    background-color:  #19503e
}

.li-list {
    background-color: #da9089;
    padding: 5px 7.8px
}

.ia-list {
    background-color: #da9089;
    padding: 5px 7.8px
}

.hi-list {
    background-color: #da9089;
    padding: 5px 6.8px
}

.mf-list {
    padding: 5px 6.8px;
    background-color: #969f6e
}

.ss-list {
    padding: 5px 6.8px;
    background-color: #969f6e
}

.hf-list {
    padding: 5px 6.8px;
    background-color: #d4ae69
}

.fi-list {
    padding: 5px 8.8px;
    background-color: #d4ae69
}

.main-box .dropbtn .icon {
    font-size: 1.2rem
}

.dropbtn {
    position: relative;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3.9px;
    border: solid 1.3px #cdcece;
    height: 52px;
    padding: 15px 16px 14px 10px;
    min-width: 94px;
    background-color: #fff
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,.2);
    z-index: 1;
    left: -220px;
    margin-top: 15px;
    max-height: 300px;
    overflow-y: scroll
}

.dropdown-content a {
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 309px;
    border-bottom: 1.2px solid #f1f3f6
}

.dropdown-content a:hover {
    cursor: pointer
}

.dropdown-content::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
    background: #fff
}

.dropdown-content::-webkit-scrollbar-track {
    background: #fff
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #c7c8ca;
    border-right: 4px #fff solid;
    background-clip: padding-box
}

.mmi-advisor::-webkit-scrollbar {
    width: 10px;
    border-radius: 6px;
    background: #fff
}

.mmi-advisor::-webkit-scrollbar-track {
    background: #f1f3f6
}

.mmi-advisor::-webkit-scrollbar-thumb {
    background: #757575;
    background-clip: padding-box;
    border-radius: 8px
}

.main-box {
    min-height: 98px
}

.search-results-upper {
    margin-top: 10px
}

#drop-desktop {
    position: absolute;
    right: 10px;
    height: 6px;
    top: 22px
}

#drop-mobile {
    position: absolute;
    right: 10px;
    height: 6px;
    top: 12px
}

.dropdown-mobile {
    display: none
}

.dropdown-desktop {
    display: inline-block
}

.select-prefered-mobile-hide {
    display: none
}

.know-more span {
    margin-left: 16px
}

.know-more img {
    position: absolute;
    top: 4px;
    margin-left: 0
}

.know-more-popup {
    line-height: .9;
    font-family: "pfhandbookpro-regular"
}

.search-div-border {
    padding: 7px;
    border-radius: 6.9px;
    border: solid 1.2px  #19503e;
    max-width: 600px;
    margin: auto
}

.search-div-border .any-text {
    font-size: 24px;
    color:  #19503e;
    line-height: 23px;
    margin-bottom: 6px;
    font-family: "pfhandbookpro-medium"
}

input#autocomplete:-ms-input-placeholder {
    font-size: 20px;
    color: #2a2a2a !important
}

input#autocomplete::placeholder {
    font-size: 20px;
    color: #2a2a2a !important
}

input.adv-search:-ms-input-placeholder {
    font-size: 16px !important
}

input.adv-search::placeholder {
    font-size: 16px !important
}

.loacte-advisor-block img {
    position: absolute;
    top: 19px;
    height: 14px;
    width: 14px
}

@media screen and (max-width: 480px) and (min-height:700px) and (max-height:824px) {
    #mmi-advisor-detail {
        max-height:62vh !important
    }

    #collapseExample {
        height: 64vh !important
    }
}

@media screen and (max-width: 480px) {
    .search-results-block {
        border-left:6px solid  #19503e
    }

    .loacte-advisor-block img {
        top: 13px
    }

    .locAdv {
        font-size: 16px
    }

    input#autocomplete:-ms-input-placeholder {
        font-size: 16px;
        color: #2a2a2a !important
    }

    input#autocomplete::placeholder {
        font-size: 16px;
        color: #2a2a2a !important
    }

    input.adv-search:-ms-input-placeholder {
        font-size: 13px !important
    }

    input.adv-search::placeholder {
        font-size: 13px !important
    }

    .search-div-border .any-text {
        font-size: 20px
    }

    .know-more-popup {
        top: 2px
    }

    .know-more-popup img {
        top: 5px
    }

    .select-prefered-text {
        font-size: 10px
    }

    .address-text .get-in-touch-button {
        width: auto !important;
        padding: 0 10px;
        height: 24px !important;
        font-size: 16px !important;
        color: #000
    }

    .address-text p {
        font-size: 14px
    }

    .locationIcon {
        width: 11px;
        height: 11px
    }

    .search-div {
        height: 31px
    }

    .searchIcon {
        top: 8px
    }

    .red-button {
        height: 31px
    }

    .txt {
        height: 31px
    }

    .search-results-block .search-results-upper .chips-container span,.search-results-upper .chips-container span,.search-results-upper .search-business-values span {
        font-size: 11px;
        padding: 3px 7px 3px 8px
    }

    .result-value {
        font-size: 14px
    }

    .info-box-desktop {
        display: none
    }

    .emp-content-body .emp-cnt1 {
        font-size: 24px
    }

    .emp-content-body .emp-cnt2 {
        font-size: 16px
    }

    .emp-content-body {
        margin: 8px 25px 16px 11px
    }

    .line-separator {
        margin: 16px 24px 7px -33px !important
    }

    .info-box-mobile {
        display: block
    }

    #info {
        height: inherit
    }

    .mmiDrio {
        height: inherit
    }

    #MMIRouteList_map-container {
        height: inherit
    }

    #mobile-advisor ul#ui-id-2 {
        width: 100% !important
    }

    .mmirtInst {
        height: unset !important
    }

    .main-box .dropbtn .icon {
        position: absolute;
        top: 2px;
        right: 9px;
        font-size: 1.2rem;
        padding-left: 25px
    }

    .dropdown-content {
        left: 11px;
        width: 91% !important;
        margin-top: 0
    }

    .suggest-results-name {
        font-size: 20px;
        font-family: "pfhandbookpro-bold"
    }

    .np-backIcon {
        top: 5px
    }

    .indv-block {
        width: 100% !important
    }

    .search-results-distance {
        font-size: 15.7px
    }

    .search-business-value-leaflet {
        line-height: 1.9 !important
    }

    .dropdown-content a {
        width: 100% !important
    }

    .dropbtn {
        margin-left: 11px;
        height: 33px;
        padding-top: 3px;
        width: 70%;
        min-width: unset
    }

    .view-less {
        font-size: 20px
    }

    .footer-text {
        line-height: unset
    }

    .filter-chips {
        width: 18px;
        height: 18px;
        font-size: 12px
    }

    #desktop-advisor {
        display: none
    }

    .dropdown-desktop {
        display: none
    }

    .dropdown-mobile {
        display: inline-block;
        width: 95%
    }

    .locate-advisor-first {
        right: 6px;
        height: 40px;
        padding: 9px 24px 11px 10px
    }

    .leaflet-container a.leaflet-popup-close-button {
        top: 27px !important;
        right: 38px !important;
        color: transparent !important
    }

    #adv-footer-img-mobile img {
        margin-bottom: 1px !important
    }

    .info-box {
        width: 92%;
        margin: 0 0 46px;
        padding: 8px 7px !important;
        border-radius: 4px;
        box-shadow: 0 10px 39px 0 rgba(0,0,0,.05);
        border: solid .5px  #19503e
    }

    .without-bg {
        width: 99%
    }

    .with-bg {
        width: 99%;
        height: 44px;
        margin: 8px 2px 0 0;
        padding: 7px 12px 5px 7px
    }

    .with-bg-inner {
        width: 98%
    }

    .text-white {
        width: 100%;
        height: 32px;
        margin: 0 21px 0 0;
        font-size: 12px;
        line-height: 1.33
    }

    .wrap-text {
        display: -ms-flexbox;
        display: flex;
        gap: 10px
    }

    .r8-arrow {
        top: 20px !important
    }

    .menu {
        top: 90px;
        width: 100%
    }

    .adv-footer-desktop {
        display: none !important
    }

    .adv-search-box-desktop {
        display: none
    }

    .adv-footer-mobile {
        margin-top: 0;
        display: block
    }

    .adv-search-box-mobile {
        display: block;
        margin-top: 13px
    }

    .main-box {
        position: absolute;
        padding-top: 0 !important;
        width: 92%;
        top: 63vh;
        min-height: 58px
    }

    #mmi-advisor-detail {
        max-height: 53vh;
        overflow-y: auto
    }

    #collapseExample {
        margin-top: 18px;
        height: auto !important
    }

    .adv-footer {
        width: 100%
    }

    .adv-search {
        width: 95%;
        height: 40px;
        margin: 1px 4px 11px 9px;
        padding: 14px 14px 15px 9px
    }

    .search-results-block {
        width: 93%;
        margin: 10px 14px 10px;
        padding: 0
    }

    .search-results-upper {
        margin-top: 5px;
        width: 100% !important
    }

    .search-results-lower {
        width: 100%;
        height: 23px;
        padding: 1px 0
    }

    .know-more {
        font-size: 16px;
        margin-right: 12px;
        font-family: "pfhandbookpro-bold"
    }

    .know-more .get-in-touch-button {
        width: auto;
        padding: 0 10px;
        height: 24px;
        margin-right: 12px;
        margin-top: 0
    }

    .know-more img {
        margin-top: -4%
    }

    .call-options-icons {
        height: 20px;
        margin-top: 3px
    }

    .call-options-icons-left .voice {
        width: 24px;
        height: 24px
    }

    .call-options-icons-left .video {
        width: 24px;
        height: 24px
    }

    .mmi-advisor::-webkit-scrollbar {
        width: 8px;
        border-radius: 4px
    }

    .get-directions {
        margin-right: auto
    }

    select {
        width: 86% !important
    }

    option {
        width: 86% !important
    }

    .adv-dropdown {
        margin: 0 15px
    }

    .mmi-advisor {
        overflow-x: hidden
    }
}

.txt {
    font-size: 20px
}

.without-bg {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #000
}

@media screen and (max-width: 480px) {
    .info-box {
        width:92%;
        margin: 0 0 46px;
        padding: 10px 10px 10px 11px;
        border-radius: 4px;
        box-shadow: 0 10px 39px 0 rgba(0,0,0,.05);
        border: solid .5px  #19503e
    }

    .without-bg {
        font-size: 12px;
        font-weight: 500;
        width: 99%
    }

    .search-results-center {
        font-size: 11px !important
    }
}

.search-results-distance {
    font-family: pfhandbookpro-bold
}

.result-value {
    color: #000;
    font-family: "pfhandbookpro-bold"
}

.without-bg {
    font-family: "pfhandbookpro-bold"
}

.locate-advisor-first-mob {
    position: absolute;
    top: 16px;
    right: 29px
}

.address-text .get-in-touch-button {
    width: 135px;
    height: 32px;
    border: none;
    margin-bottom: 29px;
    font-size: 22px;
    border-radius: 4px;
    background-color: #f7a500;
    color: #000
}

img.np-call {
    position: unset;
    margin-top: -4px
}

.card-np-call {
    margin-top: -6px
}

.search-results-center {
    margin: 0 13px 8px 41px;
    text-align: right;
    font-size: 14px;
    font-family: 'pfhandbookpro-regular';
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: .12px;
    color: #6a6161
}

.info-cta-banner__wrap {
    vertical-align: middle;
    padding: 6rem 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width: 767px) {
    .info-cta-banner__wrap {
        display:block;
        margin: 0 -15px;
        padding: 1rem 1.6rem;
        padding-bottom: 8rem;
        overflow: hidden;
        text-align: center;
        margin-top: 15%
    }
}

.info-cta-banner__title {
    font-size: 3.2rem;
    line-height: 4.6rem;
    font-family: "pfhandbookpro-bold",sans-serif;
    color: #000
}

@media(max-width: 1200px) {
    .info-cta-banner__title {
        font-size:3.2rem;
        line-height: 3.6rem
    }
}

@media(max-width: 767px) {
    .info-cta-banner__title {
        font-size:2.2rem;
        line-height: 3.4rem
    }
}

.info-cta-banner__icon {
    font-size: 11rem;
    margin-left: 6.2rem;
    color: #b37671;
    display: inline-block;
    max-width: 11rem
}

@media(max-width: 1200px) {
    .info-cta-banner__icon {
        font-size:8rem
    }
}

@media(max-width: 767px) {
    .info-cta-banner__icon {
        font-size:15rem;
        max-width: 8rem
    }
}

@media(max-width: 767px) {
    .info-cta-banner__icon--img {
        bottom:0
    }
}

.info-cta-banner__desc {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-family: "pfhandbookpro-thin",sans-serif;
    color: #000;
    margin-bottom: 0
}

@media(max-width: 1200px) {
    .info-cta-banner__desc {
        font-size:2.4rem;
        line-height: 3rem
    }
}

@media(max-width: 767px) {
    .info-cta-banner__desc {
        font-size:2rem;
        line-height: 3rem
    }
}

.info-cta-banner__title-wrap {
    margin-left: 8.5rem !important
}

@media(max-width: 767px) {
    .info-cta-banner__title-wrap {
        margin-top:5%;
        margin-left: 0 !important;
        margin-bottom: 5%
    }
}

.info-cta-banner__action-wrap {
    margin-left: 10.5rem !important;
    display: inline-block
}

@media(max-width: 767px) {
    .info-cta-banner__action-wrap {
        margin-top:2rem;
        margin-left: 0 !important
    }
}

.info-cta-banner--typ-no-icon {
    height: 16rem
}

@media(max-width: 767px) {
    .info-cta-banner--typ-no-icon {
        margin:0 -1.5rem
    }
}

.info-cta-banner--typ-no-icon .info-cta-banner__wrap {
    padding: 2.9rem 0
}

@media(max-width: 767px) {
    .info-cta-banner--typ-no-icon .info-cta-banner__wrap {
        padding:2rem 0 5.4rem 0
    }
}

.info-cta-banner--typ-no-icon .info-cta-banner__title-wrap {
    margin-left: 0
}

@media(max-width: 767px) {
    .info-cta-banner--typ-no-icon .info-cta-banner__action-wrap {
        right:2rem;
        bottom: 1rem
    }
}

.bg-nav__cont-item .light-grey-full:before,.bg-nav__cont-item .light-grey-full:after {
    display: none
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .light-grey-full:before,.bg-nav__cont-item .light-grey-full:after {
        display:block
    }
}

.bg-nav__cont-item .info-banner__wrap {
    padding-left: 48px;
    padding-right: 48px
}

@media screen and (max-width: 1200px) {
    .bg-nav__cont-item .info-banner__wrap {
        padding-left:40px;
        padding-right: 40px
    }
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .info-banner__wrap {
        padding-left:0;
        padding-right: 0
    }
}

@media screen and (max-width: 1020px) {
    .bg-nav__cont-item .info-banner__icon {
        bottom:-4.2rem
    }
}

.calc-premium-outer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.calc-premium-outer.revamp-glossaryList {
    padding: 1% 0 1% 0
}

@media(max-width: 767px) {
    .calc-premium-outer.revamp-glossaryList .calc-premium-container {
        border-radius:16px
    }
}

.calc-premium-outer.revamp-glossaryList .cal-premium-lt {
    width: 100% !important
}

.calc-premium-outer.revamp-glossaryList .revamp-glossaryBtn.button-brown {
    margin: unset;
    width: 20%
}

.calc-premium-outer.revamp-glossaryList .calc-premium-rt,.calc-premium-outer.revamp-glossaryList .revamp-calc-dropdown {
    display: none
}

.calc-premium-outer .calc-premium-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1196px;
    max-width: 119.6rem;
    background: #fff;
    padding: 40px;
    box-shadow: 6px 8px 24px rgba(0,0,0,.09);
    border-radius: 32px
}

.calc-premium-outer .calc-premium-container .calc-premium-rt img {
    width: 270px;
    height: 280px
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container {
        padding:0;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%
    }
}

.calc-premium-outer .calc-premium-container:hover {
    box-shadow: 6px 8px 12px rgba(21,21,38,.08) !important
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container:hover {
        box-shadow:unset !important
    }
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container {
        border-radius:unset;
        box-shadow: unset
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 60%
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt {
        width:100%
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-display {
    display: block
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower a {
        width:100%
    }
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower {
        -ms-flex-direction:column;
        flex-direction: column
    }

    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower div:first-child {
        width: 100%
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown {
    padding-right: 20px;
    width: 300px !important;
    height: 52px;
    padding: 14px 20px;
    border-radius: 12px
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown ul li {
    font-family: "pfencoresanspro-reg",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown .select span {
    font-family: "pfencoresanspro-reg",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown {
        padding-bottom:20px;
        padding-right: 24px;
        margin-bottom: 20px;
        width: 100% !important
    }
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown .dropbtn #drop-desktop {
        top:12px
    }
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown .dropbtn {
        width:100%;
        margin-left: unset !important
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-content {
    left: 0;
    margin-top: 0;
    width: 280px
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-content {
        width:100% !important
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt button {
    opacity: .8;
    border: .7px solid  #19503e;
    box-sizing: border-box;
    border-radius: 12px;
    background: #fff;
    width: 248px;
    height: 52px;
    color:  #19503e;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 80%;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    color:  #19503e
}

.calc-premium-outer .calc-premium-container .cal-premium-lt button img {
    width: 24px;
    height: 24px;
    margin-right: 12px
}

.calc-premium-outer .calc-premium-container .cal-premium-lt button:hover {
    border: .7px solid #8b151b !important;
    color: #8b151b !important
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt button {
        width:100%;
        height: 52px
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-heading {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -.5px;
    color: rgba(0,0,0,.92);
    padding-bottom: 12px
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-heading {
        font-size:22px;
        padding-bottom: 8px;
        padding-top: 10px
    }
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-txt {
    font-family: "pfhandbookpro-light",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    color: rgba(0,0,0,.74)
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-txt:nth-child(2) {
    padding-bottom: 20px
}

.calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-txt:nth-child(3) {
    padding-bottom: 40px
}

@media(max-width: 767px) {
    .calc-premium-outer .calc-premium-container .cal-premium-lt .calc-premium-txt {
        font-size:20px;
        padding-bottom: 24px !important
    }
}

@media(max-width: 767px) {
    .calc-rt-img {
        display:none
    }
}

.calc-premim-lower .revamp-calc-dropdown {
    width: 300px;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px #ccc;
    transition: all .5s ease;
    position: relative;
    font-size: 14px;
    color: #474747;
    height: 100%;
    text-align: left;
    margin-right: 20px
}

@media(max-width: 767px) {
    .calc-premim-lower .revamp-calc-dropdown {
        margin-right:unset
    }
}

.calc-premim-lower .revamp-calc-dropdown .select {
    cursor: pointer;
    display: block
}

.calc-premim-lower .revamp-calc-dropdown .select>i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}

.calc-premim-lower .revamp-calc-dropdown:hover {
    box-shadow: 0 0 4px #ccc
}

.calc-premim-lower .revamp-calc-dropdown:active {
    background-color: #f8f8f8
}

.calc-premim-lower .revamp-calc-dropdown.active:hover,.calc-premim-lower .revamp-calc-dropdown.active {
    box-shadow: 0 0 4px #ccc;
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}

.calc-premim-lower .revamp-calc-dropdown.active .select>i {
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 14px;
    box-shadow: 0 1px 2px #ccc;
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}

.calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
}

.calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-menu {
    padding: 0;
    list-style: none
}

.calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-menu li:hover {
    background-color: #f2f2f2
}

.calc-premim-lower .revamp-calc-dropdown .revamp-calc-dropdown-menu li:active {
    background-color: #e2e2e2
}

.revampCalcItem {
    display: none
}

@media(max-width: 767px) {
    .revamp-riderscarousel .carousels-container1 {
        padding:0 0 24px 16px
    }
}

.carousels-container1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.carousels-noquote {
    margin-top: 40px
}

.testimonial-btn-wrap1 .slick-nav__btn--prev {
    position: absolute;
    left: -90px;
    top: 58% !important
}

.testimonial-btn-wrap1 .slick-nav__btn--next {
    position: absolute;
    right: -90px;
    top: 58% !important
}

.testimonial-btn-wrap1 .slick-nav__btn {
    border: .7px solid  #19503e;
    box-sizing: border-box;
    border-radius: 50px;
    background: transparent;
    width: 40px;
    height: 40px
}

.testimonial-btn-wrap1 .slick-nav__btn.slick-disabled:hover {
    background-color: unset;
    border: .7px solid  #19503e;
    opacity: .32
}

.testimonial-btn-wrap1 .slick-nav__btn.slick-disabled:hover .icon {
    color:  #19503e
}

.testimonial-btn-wrap1 .slick-nav__btn:hover {
    background-color: #6a4742;
    border: .7px solid #fff
}

.testimonial-btn-wrap1 .slick-nav__btn:hover .icon {
    color: #fff
}

.testimonial-btn-wrap1 .slick-nav__btn .icon {
    color:  #19503e;
    line-height: 4rem
}

.carousel8-card-wrap {
    width: 100%;
    display: inline-block;
    perspective: 1000px;
    transform-style: preserve-3d
}

.carousel8-card-wrap .img-quote {
    position: relative;
    z-index: 1000;
    left: 45%;
    top: 20px
}

.carousel8-card-wrap p {
    margin-bottom: unset
}

.carousel8-card-wrap .carousel8-card {
    cursor: pointer;
    transition: .6s;
    transform-style: preserve-3d;
    position: relative;
    border-radius: 20px;
    border: solid 1px #fff8f8;
    background: #fff8f8
}

.carousel8-card-wrap .carousel8-card.is-flipped .carousel8-card__face--front {
    transform: rotateY(180deg)
}

.carousel8-card-wrap .carousel8-card.is-flipped .carousel8-card__face--back {
    transform: rotateY(0deg)
}

.carousel8-card-wrap .carousel8-card__face {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    backface-visibility: hidden;
    transition: .6s;
    transform-style: preserve-3d
}

.carousel8-card-wrap .carousel8-card__face--front {
    z-index: 2;
    transform: rotateY(0deg)
}

.carousel8-card-wrap .carousel8-card__heading {
    font-family: "pfencoresanspro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 140%;
    padding: 0 20px 20px 20px;
    color: rgba(0,0,0,.92);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.carousel8-card-wrap .carousel8-card__heading .testimonial-profile {
    display: -ms-flexbox;
    display: flex
}

.carousel8-card-wrap .carousel8-card__para {
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    padding: 36px 20px 20px 20px;
    color: rgba(0,0,0,.74)
}

.carousel8-card-wrap .carousel8-card__name {
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    padding: 0 12px 0 0;
    color: rgba(0,0,0,.52)
}

.carousel8-card-wrap .carousel8-card__name :nth-child(1) {
    font-weight: bold;
    color: rgba(0,0,0,.74)
}

.carousel8-card-wrap .carousel8-card__name :nth-child(3) {
    font-family: "pfencoresanspro-light",sans-serif
}

.carousel8-card-wrap .carousel8-card .btn-wrap {
    padding: 2.4rem 2.4rem
}

@media(max-width: 1020px) {
    .carousel8-card-wrap .carousel8-card .btn-wrap {
        padding:1.6rem
    }
}

.carousel8-card-wrap .carousel8-card .btn-wrap .button-brown {
    min-width: 0
}

@media(max-width: 1020px) {
    .carousel8-card-wrap .carousel8-card .btn-wrap .button-link {
        padding:1.6rem 0 0
    }
}

.on-page-editor .carousel8-card-wrap {
    width: 100%
}

@media(max-width: 767px) {
    .carousel8-list {
        padding-bottom:24px
    }
}

.carousel8-list .carousel8-list-item {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.carousel8-list.slick-slider {
    margin-bottom: unset !important
}

.carousel8-list .slick-slide {
    margin: 0 20px
}

@media(max-width: 767px) {
    .carousel8-list .slick-slide {
        width:310px !important
    }

    .carousel8-list .slick-slide.revamp-lastCarouselWidth {
        width: 94vw !important
    }
}

.carousel8-list .slick-list {
    margin: 0 -20px
}

@media(max-width: 1020px) {
    .carousel8-list .slick-list {
        padding:0;
        margin: 0
    }
}

@media(max-width: 1020px) {
    .slick-nav--carousel8 {
        display:none
    }
}

.carousel8-list-wrap {
    width: 60%;
    position: relative
}

@media(max-width: 1020px) {
    .carousel8-list-wrap {
        width:90%
    }
}

.carousel8-list-wrap .carousel8-testimonial-main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.carousel8-list-wrap .carousel8-testimonial-main .carousel8-testimonial-heading {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -.5px;
    color: rgba(0,0,0,.92);
    margin-bottom: unset;
    padding-bottom: 12px
}

.carousel8-list-wrap .carousel8-testimonial-main .carousel8-testimonial-txt {
    font-family: "pfhandbookpro-light",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: rgba(0,0,0,.92);
    margin-bottom: unset
}

@media only screen and (max-width: 576px) {
    .testimonial-profile .img-profile {
        width:32px !important;
        height: 32px !important
    }

    .carousel8-list-wrap {
        width: 100% !important
    }

    .carousel8-list-wrap .slick-slide {
        margin: 0 6px !important
    }
}

@media only screen and (max-width: 576px) and (max-width:767px) {
    .carousel8-list-wrap .slick-slide {
        width:310px !important
    }
}

@media only screen and (max-width: 576px) {
    .carousel8-list-wrap .slick-list {
        margin:0 -6px !important
    }
}

@media only screen and (max-width: 576px) and (max-width:1020px) {
    .carousel8-list-wrap .slick-list {
        padding:0;
        margin: 0
    }
}

@media only screen and (max-width: 576px) {
    .carousel8-list-wrap .carousel8-testimonial-main {
        -ms-flex-pack:start !important;
        justify-content: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .carousel8-list-wrap .carousel8-testimonial-main .carousel8-testimonial-heading {
        padding-bottom: 8px !important;
        line-height: 120%;
        font-size: 22px !important;
        margin-bottom: unset
    }

    .carousel8-list-wrap .carousel8-testimonial-main .carousel8-testimonial-txt {
        font-size: 20px;
        text-align: left !important;
        margin-bottom: unset
    }

    .carousel8-list-wrap .carousel8-card__face {
        border-radius: 12px !important
    }

    .carousel8-list-wrap .carousel8-card__heading {
        font-size: 12px !important;
        padding: 0 16px 16px 16px !important
    }

    .carousel8-list-wrap .carousel8-card__para {
        font-size: 14px !important;
        padding: 28px 16px 16px 16px !important
    }

    .carousel8-list-wrap .carousel8-card__name {
        font-size: 14px !important
    }

    .carousel8-list-wrap .carousel8-card__name :nth-child(1) {
        font-size: 12px !important
    }

    .carousel8-list-wrap .carousel8-card__name :nth-child(3) {
        font-size: 12px !important;
        font-family: "pfencoresanspro-light",sans-serif
    }
}

.homepage-sections {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .homepage-sections {
        margin:unset;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.homepage-sections .homepage-sections-inner {
    width: 1196px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner {
        width:100%
    }
}

.homepage-sections .homepage-sections-inner .homepage-sectionsv2-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .slick-slide {
    width: 278px !important
}

@media(max-width: 767px) and (max-width:767px) {
    .homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .slick-slide {
        margin:0 6px !important
    }
}

.homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article {
    background: #fff;
    box-shadow: 1px 1px 9px rgba(21,21,38,.08);
    border-radius: 12px;
    width: 576px;
    height: 178px;
    padding: 16px
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article {
        width:100%;
        display: inline-block;
        perspective: 1000px;
        transform-style: preserve-3d;
        padding: 12px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article:hover {
    box-shadow: 6px 8px 12px rgba(21,21,38,.08) !important
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article {
        -ms-flex-direction:column;
        flex-direction: column
    }

    .homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article .rtbox {
        padding-top: 16px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article img {
    border-radius: 12px;
    width: 232px;
    height: auto;
    aspect-ratio: 116/73;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sectionsv2-box .homepage-sections-article img {
        width:254px;
        height: 160px;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

.homepage-sections .homepage-sections-inner span {
    font-size: 1.8rem
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner:nth-child(1) {
        padding-right:unset !important
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-link {
    color:  #19503e
}

.homepage-sections .homepage-sections-inner .homepage-sections-title {
    padding-bottom: 60px;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -.5px;
    color: rgba(0,0,0,.92)
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-title {
        font-size:22px;
        padding: 0 16px 24px 16px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article {
        margin:15px;
        margin-left: 6px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .ltbox {
    margin-right: 20px
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .media-tile__likes {
    left: 0
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .media-tile__likes {
        top:9px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote a {
    position: absolute;
    right: 0;
    bottom: 10px
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote a {
        top:14px !important;
        bottom: unset !important
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .icon {
    color: rgba(0,0,0,.74)
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .icon-right-arrow:before {
    font-size: 1.2rem !important
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .icon:before {
    margin-right: 8.69px;
    font-size: 2.2rem;
    cursor: pointer
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .revamp-upvote .icon:before {
        margin-right:4.46px
    }
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .upper {
        padding-bottom:4px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .upper,.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .lower {
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

@media(max-width: 767px) {
    .homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .upper,.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .lower {
        font-size:16px
    }
}

.homepage-sections .homepage-sections-inner .homepage-sections-article .rtbox .lower {
    font-weight: bold !important
}

@media(max-width: 767px) {
    .revamp-sectionsv2-container:not(.revamp-articles-sections) {
        padding-left:16px !important
    }
}

@media(max-width: 767px) {
    .revamp-sectionsv2-container:not(.revamp-articles-sections) .homepage-sections-inner {
        width:100%
    }
}

@media screen and (min-width: 576px) and (max-width:768px) {
    .homepage-sections-article {
        width:100% !important
    }
}

.revamp-homepageterm-outer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer {
        padding-left:16px !important;
        padding-right: 16px !important
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner {
        -ms-flex-pack:start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-title {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -.5px;
    color: rgba(0,0,0,.92);
    padding-bottom: 60px
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-title {
        padding-bottom:24px !important;
        font-size: 22px
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box {
        -ms-flex-direction:column !important;
        flex-direction: column !important
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt {
    width: 400px
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt {
        width:100%;
        padding-top: unset !important
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-para {
    font-family: "pfhandbookpro-thin",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    color: rgba(0,0,0,.74);
    margin-bottom: 60px
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-para {
        font-size:20px;
        margin: 24px 0
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-title {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 120%;
    text-align: left;
    color: rgba(0,0,0,.92);
    margin-bottom: 20px
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-title span {
    color: #902065
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-title {
        font-size:20px;
        text-align: center
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-btn a {
    width: 296px;
    height: 52px;
    background:  #19503e;
    box-shadow: 0 4px 9px rgba(12,12,16,.2);
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-btn a:hover {
    background: #8b151b !important
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-btn a {
        width:100%
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-btn a img {
    margin-right: 15.5px
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-rt .revamp-howbuy-btn a {
        display:-ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 20px;
        width: 100%
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt {
    position: relative
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item.carousels-noquote {
    margin-top: unset
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card-wrap {
    max-width: unset !important
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card {
    border-radius: unset !important;
    border: unset !important;
    background: unset !important
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .revamp-cardtitle {
    display: -ms-flexbox;
    display: flex;
    padding: 20px 8%;
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    color: rgba(0,0,0,.74)
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .revamp-cardtitle {
        padding:16px 0;
        font-size: 20px
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part {
        -ms-flex-pack:unset !important;
        justify-content: unset !important;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part .revamp-carousel-image {
    border-radius: 12px;
    border: solid 1px #1f874c14;
    background: rgba(31,135,76,.08);
    height: 578px;
    width: 512px;
    margin-right: 80px
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part .revamp-carousel-image .img-quote {
    height: 578px;
    width: 512px;
    border-radius: 12px
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part .revamp-carousel-image .img-quote {
        height:370px;
        width: 100%
    }
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-lower-part .revamp-carousel-image {
        height:370px;
        width: 100%
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-upper-part .slick-nav__btn {
    margin: 0 .5rem
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-upper-part .slick-nav__btn--prev {
    left: unset !important;
    top: unset !important;
    right: 10% !important
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel-upper-part .slick-nav__btn--next {
    right: -1%;
    top: unset !important
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .carousel6-list-item .carousel6-card .carousel6-card__heading {
    padding: 20px 20px 20px 0
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt h3 {
    margin: 5px 0
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .slider {
    width: 100%
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .slick-prev:before,.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .slick-next:before {
    color: #000
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .slick-dots {
    bottom: -30px
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer {
    position: absolute;
    top: 0%;
    width: 500px;
    left: 8%
}

@media(max-width: 767px) {
    .revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer {
        width:90vw;
        left: unset
    }
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer div {
    display: block;
    width: 30%;
    padding: 0;
    cursor: pointer;
    margin-right: 4%;
    float: left;
    color: #fff
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer div:last-child {
    margin-right: 0
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer div span.progressBar {
    width: 100%;
    height: 4px;
    background-color: rgba(237,201,198,.32);
    display: block
}

.revamp-homepageterm-outer .homepage-calclife-inner .homepage-calclife-box .homepage-calclife-lt .progressBarContainer div span.progressBar .inProgress {
    background-color: #da9089;
    width: 0%;
    height: 4px
}

.revamp-homepage-innerbox {
    width: 1196px
}

@media(max-width: 767px) {
    .revamp-homepage-innerbox {
        width:100%
    }
}

.revamp-ourterm-container {
    -ms-flex-direction: column;
    flex-direction: column
}

.revamp-ourterm-container.revamp-varsity-ourtermplans .revamp-fontStyle17 {
    max-width: 78.8rem;
    margin-bottom: 2.8rem;
    text-align: center
}

.revamp-ourterm-container.revamp-varsity-ourtermplans .revamp-calc-premiumtitle {
    padding-bottom: 1.2rem
}

.revamp-ourterm-container .present,.revamp-ourterm-container .absent {
    cursor: pointer
}

.revamp-ourterm-container .calc-premium-container {
    width: 850px !important
}

@media(max-width: 767px) {
    .revamp-ourterm-container .calc-premium-container {
        width:100% !important
    }
}

@media(max-width: 767px) {
    .revamp-ourterm-container.calc-premium-outer .calc-premium-container {
        padding:16px !important
    }
}

.revamp-ourterm-container .revamp-calc-premiumtitle {
    padding-bottom: 60px;
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -.5px;
    color: rgba(0,0,0,.92)
}

@media(max-width: 767px) {
    .revamp-ourterm-container .revamp-calc-premiumtitle {
        font-size:22px;
        padding-bottom: 24px
    }
}

.revamp-our-termplan {
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative
}

.revamp-our-termplan .revamp-ourtermlan-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.revamp-our-termplan .revamp-ourtermlan-inner.first {
    padding-bottom: 12px
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.first {
        padding-bottom:16px
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.second {
    padding-bottom: 12px;
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.second {
        padding-bottom:16px;
        font-size: 18px !important
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.third {
    padding-bottom: 32px
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.third {
        padding-bottom:24px
    }
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.third .homepage-lifecoversec {
        -ms-flex-direction:column;
        flex-direction: column
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.third .revamp-mob-ourterm {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap
}

.revamp-our-termplan .revamp-ourtermlan-inner.third .revamp-mob-ourterm .homepage-lifecover__innner {
    -ms-flex-pack: start;
    justify-content: flex-start
}

.revamp-our-termplan .revamp-ourtermlan-inner.third .revamp-mob-ourterm .homepage-lifecover__innner .homepage-covertxt {
    text-align: left
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.third .revamp-mob-ourterm .homepage-lifecover__innner {
        width:45%;
        margin-bottom: 15px
    }
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.third .revamp-mob-ourterm {
        padding-bottom:0
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 12px 24px;
    position: relative
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.fourth {
        padding:12px;
        border-radius: 12px
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt {
    padding-left: 20px
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan {
    position: absolute;
    right: 24px;
    display: -ms-flexbox;
    display: flex;
    top: 25%
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 80%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan a.act-btn:hover {
    background: #8b151b
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan {
        left:0;
        right: unset;
        bottom: 0;
        top: 107px;
        -ms-flex-align: center;
        align-items: center
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan div:nth-child(1) {
    margin-right: 20px
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan div:nth-child(2) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color:  #19503e
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan div:nth-child(1) a {
    width: 130px;
    height: 40px;
    background:  #19503e;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-exploreplan div:nth-child(1) a img {
    width: 20px;
    height: 20px;
    margin-right: 10px
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-rt .revamp-lt {
    border: unset !important
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-lt {
    padding-right: 20px;
    border-right: 1px solid #cdcece
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-lt div:nth-child(1) {
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 140%;
    color: rgba(0,0,0,.74)
}

.revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-lt div:nth-child(2) {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 28px;
    line-height: 120%;
    color: rgba(0,0,0,.92)
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner.fourth .revamp-lt div:nth-child(2) {
        font-size:20px
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner img {
    width: 52px;
    height: 52px;
    margin-right: 12px
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner img {
        width:40px;
        height: 40px
    }
}

.revamp-our-termplan .revamp-ourtermlan-inner .ourterm-title {
    font-family: "pfencoresanspro",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 140%;
    color: rgba(0,0,0,.92)
}

@media(max-width: 767px) {
    .revamp-our-termplan .revamp-ourtermlan-inner .ourterm-title {
        font-size:18px !important
    }
}

@media(max-width: 767px) {
    .calc-premium-outer.revamp-ourterm-container .calc-premium-container {
        border-radius:1.2rem;
        box-shadow: 6px 8px 24px rgba(0,0,0,.09)
    }
}

@media(max-width: 767px) {
    .calc-premium-outer.revamp-ourterm-container .calc-premium-container:not(.revamp-ourterm-height) {
        box-shadow:unset;
        border-radius: unset
    }

    .calc-premium-outer.revamp-ourterm-container .calc-premium-container:not(.revamp-ourterm-height):hover {
        box-shadow: unset
    }
}

.calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height {
    margin-bottom: 20px;
    position: relative
}

@media(max-width: 767px) {
    .calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height {
        height:450px;
        width: 100%;
        margin-bottom: 24px
    }
}

.calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height:hover {
    box-shadow: 6px 8px 12px rgba(21,21,38,.08) !important
}

.calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height .riders2-uppersec1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    right: 40px;
    top: 1px;
    display: flex
}

@media(max-width: 767px) {
    .calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height .riders2-uppersec1 {
        right:20px
    }
}

.calc-premium-outer.revamp-ourterm-container .calc-premium-container.revamp-ourterm-height .riders2-uppersec1 .popular-txt {
    font-family: "pfhandbookpro-light",sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 140%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 9px;
    color: #902065;
    font-size: 10px !important
}

.faq-show1 {
    font-family: "pfhandbookpro-bold",sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 140%;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: rgba(0,0,0,.92);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,.92)
}

.advisor-lead-form-wrapper {
    max-width: 792px;
    margin: 0 auto;
    padding-top: 60px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper {
        padding-top:20px
    }
}

.advisor-lead-form-wrapper .form-group {
    margin-bottom: 15px !important
}

.advisor-lead-form-wrapper h2 {
    font-size: 20px !important
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper h2 {
        font-size:15px !important
    }
}

.advisor-lead-form-wrapper input {
    height: 50px !important;
    font-size: 20px !important
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper input {
        height:45px !important;
        font-size: 15px !important
    }
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .otp-button {
        height:auto !important;
        font-size: 14px !important;
        padding: 13px 30px !important
    }
}

.advisor-lead-form-wrapper .otp-text-label {
    opacity: .6
}

.advisor-lead-form-wrapper .line {
    border-bottom: solid 1px #f1f3f6;
    width: 100%;
    margin: 20px 10px
}

.advisor-lead-form-wrapper .form-row {
    width: 100%
}

.advisor-lead-form-wrapper .form-row .advisor-details {
    margin: 10px 0 0
}

.advisor-lead-form-wrapper label.form-group__label {
    margin-bottom: 5px !important;
    font-size: 20px !important
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper label.form-group__label {
        font-size:15px !important
    }
}

.advisor-lead-form-wrapper .advisor-btn-wrapper {
    margin-top: 15px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions {
    height: auto;
    margin-bottom: 10px
}

.advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions input {
    margin-right: 15px;
    float: left;
    height: 20px !important;
    width: 20px !important;
    z-index: 10;
    position: absolute;
    opacity: 1;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions input {
        height:15px !important;
        width: 15px !important;
        margin-top: 3px !important
    }
}

.advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions .checkbox-label {
    position: relative;
    padding-left: 35px;
    display: block
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions .checkbox-label {
        padding-left:26px
    }
}

.advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions .checkbox-label::before {
    content: "";
    top: -2px;
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 20px;
    z-index: 1;
    border-radius: 3px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-btn-wrapper .terms-conditions .checkbox-label p {
        font-size:15px !important
    }
}

.advisor-lead-form-wrapper .advisor-btn-wrapper button {
    height: 44px !important;
    width: 180px !important
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-btn-wrapper button {
        font-size:15px !important;
        width: 120px !important
    }
}

.advisor-lead-form-wrapper input#name,.advisor-lead-form-wrapper #pincode,.advisor-lead-form-wrapper #address {
    background-color: #f1f3f6;
    opacity: .3;
    font-size: 20px !important
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper input#name,.advisor-lead-form-wrapper #pincode,.advisor-lead-form-wrapper #address {
        font-size:15px !important
    }
}

.advisor-lead-form-wrapper .advisor-info {
    text-align: center;
    margin: 15px 0 30px
}

.advisor-lead-form-wrapper .advisor-info span {
    font-size: 16px;
    color: #808787
}

.advisor-lead-form-wrapper .advisor-info .cmp-name {
    color:  #19503e
}

.advisor-lead-form-wrapper .advisor-resend-otp {
    font-size: 16px;
    margin: 0;
    padding: 0;
    background: none;
    border: 0 none;
    position: absolute;
    right: 12px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color:  #19503e
}

.advisor-lead-form-wrapper .otp-counter {
    top: 25px;
    font-weight: bold;
    color: #6d7278
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .otp-counter {
        font-size:12px
    }
}

.advisor-lead-form-wrapper .otp-counter-cta {
    top: 25px;
    font-weight: bold;
    color:  #19503e
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .otp-counter-cta {
        font-size:12px
    }
}

.advisor-lead-form-wrapper .advisor-thankyou {
    margin: 30px 0;
    text-align: center
}

.advisor-lead-form-wrapper .advisor-thankyou p {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 22px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-thankyou p {
        font-size:20px;
        margin-bottom: 15px
    }
}

.advisor-lead-form-wrapper .advisor-thankyou span {
    font-size: 20px;
    color: #000;
    line-height: 24px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-thankyou span {
        font-size:15px;
        line-height: 22px
    }
}

.advisor-lead-form-wrapper .advisor-err {
    text-align: center;
    margin: 30px 0
}

.advisor-lead-form-wrapper .advisor-err p {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 22px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-err p {
        font-size:20px;
        margin-bottom: 15px
    }
}

.advisor-lead-form-wrapper .advisor-err span {
    font-size: 20px;
    color: #000;
    line-height: 24px
}

@media screen and (max-width: 767px) {
    .advisor-lead-form-wrapper .advisor-err span {
        font-size:15px;
        line-height: 22px
    }
}

.multi-select-container {
    display: inline-block;
    position: relative;
    width: 100%
}

.multi-select-menu {
    position: absolute;
    left: 0;
    top: .8em;
    z-index: 1;
    float: left;
    min-width: 100%;
    background: #fff;
    margin: 2em 0;
    border: 1px solid #aaa;
    height: 220px;
    overflow: auto;
    display: none
}

@media screen and (max-width: 767px) {
    .multi-select-menu {
        top:.6em
    }
}

.multi-select-menuitem {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875em;
    padding: .6em 1em .6em 30px;
    white-space: nowrap
}

.multi-select-menuitem--titled:before {
    display: block;
    font-weight: bold;
    content: attr(data-group-title);
    margin: 0 0 .25em -20px
}

.multi-select-menuitem--titledsr:before {
    display: block;
    font-weight: bold;
    content: attr(data-group-title);
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.multi-select-menuitem+.multi-select-menuitem {
    padding-top: 0
}

.multi-select-presets {
    border-bottom: 1px solid #ddd
}

.multi-select-menuitem input {
    height: auto !important;
    margin-left: -20px;
    margin-right: 6px
}

.multi-select-button {
    display: inline-block;
    padding: 14px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: -.5em;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default
}

@media screen and (max-width: 767px) {
    .multi-select-button {
        font-size:15px;
        padding: 12px 14px
    }
}

.multi-select-button[text="Select upto two languages"] {
    color: #ddd
}

.multi-select-button:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    float: right;
    border-style: solid;
    border-width: .4em .4em 0 .4em;
    border-color: #999 transparent transparent transparent;
    margin-top: .4em;
    vertical-align: .1em
}

.multi-select-container--open .multi-select-menu {
    display: block
}

.multi-select-container--open .multi-select-button:after {
    border-width: 0 .4em .4em .4em;
    border-color: transparent transparent #999 transparent
}

.multi-select-container--positioned .multi-select-menu {
    box-sizing: border-box
}

.multi-select-container--positioned .multi-select-menu label {
    white-space: normal
}

.headline-1,h1,.headline-2,h2,.headline-3,h3,.headline-4,h4,.headline-5,h5,.headline-6,h6 {
    margin-bottom: 0
}

.abc-typography span {
    color:  #19503e;
    display: block;
    margin-top: 10px
}

.headline-1,h1,.h1 {
    font-family: "pfhandbookpro-regular",sans-serif;
    letter-spacing: -1.2px;
    font-size: 9rem;
    line-height: 7.2rem
}

@media(max-width: 767px) {
    .headline-1,h1,.h1 {
        font-size:6.4rem;
        line-height: 5.6rem;
        letter-spacing: normal
    }
}

.headline-2,h2,.h2 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 64px;
    line-height: 72px
}

@media(max-width: 767px) {
    .headline-2,h2,.h2 {
        font-size:44px;
        line-height: 48px
    }
}

.headline-3,h3,.h3 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 44px;
    line-height: 48px
}

@media(max-width: 767px) {
    .headline-3,h3,.h3 {
        font-size:36px;
        line-height: 40px
    }
}

.headline-4,h4,.h4 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 32px;
    line-height: 40px
}

@media(max-width: 767px) {
    .headline-4,h4,.h4 {
        font-size:28px;
        line-height: 32px
    }
}

.headline-5,.subheader,h5,.h5 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 24px;
    line-height: 28px
}

@media(max-width: 767px) {
    .headline-5,.subheader,h5,.h5 {
        font-size:22px;
        line-height: 28px
    }
}

.headline-6 {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    line-height: 20px
}

@media(max-width: 767px) {
    .headline-6 {
        font-size:18px;
        line-height: 20px
    }
}

.small-label {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    line-height: 20px
}

.caption {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 16px;
    line-height: 24px
}

.small {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 12px;
    line-height: 16px
}

.body {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 18px;
    line-height: 24px
}

.bold {
    font-family: "pfhandbookpro-bold",sans-serif
}

p,.font18 {
    font-size: 1.6rem;
    line-height: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.77);
}

.small,.font16 {
    font-size: 1.6rem;
    line-height: 1.8rem
}

small,.font14 {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
    display: block
}

a {
    font-family: "pfhandbookpro-regular",sans-serif;
    font-size: 1.8rem;
    line-height: 2rem
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0
}

@media(max-width: 1020px) {
    .banner-content-wrapper {
        top:92px
    }
}

@media(max-width: 767px) {
    .banner-content-wrapper {
        top:81px;
    }
}



/*----------------------------------------------*/
.categories-view1-wrap img{
        width: 55px !important;
}
@media (max-width:320px){
   .categories-view1-wrap .fas {
       width:40px !important;
       padding-top:10px !important;
   }
}
@media (max-width:375px){
   .categories-view1-wrap .fas {
       width:40px !important;
       padding-top:10px !important;
   }
}
@media (max-width:425px){
   .categories-view1-wrap .fas {
       width:45px !important;
       padding-top:10px !important;
   }
}
@media (max-width:768px){
   .categories-view1-wrap .fas {
       width:50px !important;
       padding-top:10px !important;
   }
/*------------------------------------------------*/