/* Supermarket Shopper
–––––––––––––––––––––––––––––––––––––––––––––––––– */





/* General
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pt-page{
  height: calc(100% - 65px);
  top:65px;
}

.mainScreen.extendedMobileHeader .pt-page {
  height: calc(100% - 130px);
  top:130px;
}

.pt-page.stage-scenarioSelection{
  height: calc(100% - 10px);
  top:10px;
}

.pt-page .container{
  padding-top: 50px;
}

#progressBar-container {
  width: 100%;
  background-color: #d8d8d8;
}

#progressBar {
  width: 0%;
  height: 10px;
  background-color: var(--brandOrange, #ff6e32);
  transition: width 0.2s ease-out
}

#budgetBar {
  height: 55px;
  background-color: var(--brandPurpleDark, #4f2875);
  font-size: 20px;
  display: flex;
  align-items: center;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  transition: height 0.2s ease-out
}

.mainScreen.extendedMobileHeader #budgetBar {
  height: 120px;
}

#budgetBar.hidden {
 height: 0px;
}

#budgetBar .content-wrapper{
  margin-top: 8px;
  display: flex;
  justify-content: center;
  height: 50px;
}

#budgetBar .content-wrapper.desktopOnly{
    display: none;
    width: auto;
    justify-content: center;
  }

#budgetBar .content-wrapper.mobileOnly{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
  }

  .mobileOnly .budgetArea{
        display: flex;
    justify-content: space-around;
    width: 100%;
  }

#budgetBar h1{
  color: #ffffff;
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: bold;
  font-size: 26px;
}

#budgetBar h2{
  color: #ffffff;
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 0px;
}

#budgetBar .mobileOnly h1{
  color: #ffffff;
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
}

#budgetBar .mobileOnly h2{
  color: #ffffff;
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 0px;
}

#budgetBar .providedBudget{
}

#budgetBar .remainingBudget{
  display: none;
}

#budgetBar .remainingBudget h1{
  color: var(--brandOrange, #ff6e32);
}

#budgetBar .recalculateContainer{
  display: none;
  width: 300px;
  margin: 0px 36px;
  border-left: white solid 2px;
  border-right: white solid 2px;  
}

#budgetBar button{
  width: 200px;
  background-color: var(--brandOrange, #ff6e32);
  color: #fff;
  margin-top: 5px;
  /*padding-top: 16px;*/
}

#budgetBar .mobileOnly .recalculateContainer{
  border: none;
  margin: auto;
  border-top: white solid 2px;
  padding-top: 5px; 
  }

#budgetBar button:hover{
  opacity: 0.6;
}



.pt-page .instructions h4{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #001845;
  font-size: 30px;
  line-height: 1.2;
}

.pt-page .instructions h6{
  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  color: #001845;
}

button.stageNavBtn{
 outline: none;
 border: none;
 border-radius: 50%;
 font-size: 20px;
 text-decoration: none;
 position: relative;
 display: inline-block;
 font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;

 width: 50px;
 height: 50px;
 /* padding-left: 10px; */
 

 background-color: var(--brandPurpleLight, #704c97);
 color: #fff;

 -webkit-transition: background-color .2s ease-in-out;
 -ms-transition: background-color .2s ease-in-out;
 transition: background-color .2s ease-in-out;

 /*margin-left: 20px;
 margin-right: 20px;*/

 padding-top: 4px;
}

button.prevStageBtn{
  margin-right: 20px;
}

button.nextStageBtn{
  margin-left: 20px;
}

button.alertBtn{
  margin-left: 20px;
}

button.stageNavBtn.pageOffset{
  transform: translateY(-50%);
  margin-bottom: 28px;

}

button.stageNavBtn:hover{
  background-color: var(--brandOrange, #ff6e32);
  color: #fff;
}

button.stageNavBtn svg{
  pointer-events: none;
}

button.stageNavBtn.disabled{
  background-color: #d8d8d8;
  pointer-events: none;
}

button.circular{
  width: 50px;
  height: 50px;
}

button.lozenge{
  width: 120px;
  height: 40px;
  border-radius: 25px;
}

button.hiddenBtn{
  display: none;
}

button.arrowStyleCFFC{
    opacity: 1 !important;
    background-color: var(--brandOrange, #ff6e32);
    font-size: 18px;
    
    border-radius: 2px;
    -webkit-box-shadow: 0px 1px 8px 0 rgba(0,0,0,0.3);
            box-shadow: 0px 1px 8px 0 rgba(0,0,0,0.3);    
}

button.arrowStyleCFFC img{
    pointer-events: none;
    position: absolute;
    
    left: 50%;
    top: 50%;
    transform: translate(-80%, -50%);
    -webkit-transform: translate(-80%, -50%);
    -moz-transform: translate(-80%, -50%);
    
    opacity: 0;
    transition: .15s ease-in-out;
}

button.arrowStyleCFFC span{
    pointer-events: none;
    color: #ffffff;
    opacity: 1;
    transition: .15s ease-in-out;
}

button.arrowStyleCFFC:hover{
    opacity: 1 !important;
}

button.arrowStyleCFFC:hover img{
    opacity: 1;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

button.arrowStyleCFFC:hover span{
     opacity: 0;
}

button.arrowStyleCFFC.backArrow img{
    transform: rotate(180deg) translate(20%, 50%);
    -webkit-transform: rotate(180deg) translate(20%, 50%);
    -moz-transform: rotate(180deg) translate(20%, 50%);
}

button.arrowStyleCFFC.backArrow:hover img{
    transform: rotate(180deg) translate(50%, 50%);
    -webkit-transform: rotate(180deg) translate(50%, 50%);
    -moz-transform: rotate(180deg) translate(50%, 50%);
}

/* 1 - Instructions 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.instructionsModal button.stageNavBtn{
  width: 250px;
}


/* 1 - Scenario Selection
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.set-scenarios {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;

  align-items: center;
  justify-content: space-around;

  margin-bottom: 10px;
}

.set-scenarios .scenario{
  width: 400px;
  cursor: pointer;
  -webkit-transition: transform .2s ease-in-out;
  -ms-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
}
.set-scenarios .scenario:hover {
  transform: scale(1.02);
}

.set-scenarios .scenario:hover .content{
 -webkit-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 -moz-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
}

.set-scenarios .scenario:hover button{
  background-color: var(--brandOrange, #ff6e32);
  color: #fff;
}

.set-scenarios .scenario:hover button.arrowStyleCFFC{
    opacity: 1 !important;
}

.set-scenarios .scenario:hover button.arrowStyleCFFC img{
    opacity: 1;
    transform: translate(-50%, -50%);
}

.set-scenarios .scenario:hover button.arrowStyleCFFC span{
     opacity: 0;
}

.scenario button{
  -webkit-transition: background-color .2s ease-in-out;
  -ms-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}



.set-scenarios .scenario .content{
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;

  /*min-height: 530px;*/
  min-height: 580px;
    
  
  -webkit-transition: box-shadow .2s ease-in-out;
  -ms-transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;
  /*transition: all .2s ease-in-out;*/
  
}

.set-scenarios .scenario .title{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: left;
  font-size: 28px;
  color: #001845;
  line-height: 1.2;
}

.set-scenarios .scenario .budget{
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  text-align: left;
  font-size: 18px;     
  color: #001845;
}

.set-scenarios .scenario .description{
  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  text-align: left;
  font-size: 16px;
  color: #2c2c2c;
}

.set-scenarios .scenario .helpText{
  display: none;
}

.custom-scenarios {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;

  align-items: center;
  justify-content: space-around;
}

.custom-scenarios  .scenario{
  width: 400px;
  cursor: pointer;
  -webkit-transition: transform .2s ease-in-out;
  -ms-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
}

.custom-scenarios .scenario .helpText{
  display: none;
}

.custom-scenarios  .scenario:hover {
  transform: scale(1.02);
}

.custom-scenarios  .scenario.disabled{
  transform: none;
  cursor: default;
  pointer-events: none;
}

.custom-scenarios .scenario:hover .content{
 -webkit-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 -moz-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
}

.custom-scenarios .scenario:hover button{
  background-color: var(--brandOrange, #ff6e32);
  color: #fff;
}

.custom-scenarios .scenario:hover button.arrowStyleCFFC{
    opacity: 1 !important;
}

.custom-scenarios .scenario:hover button.arrowStyleCFFC img{
    opacity: 1;
    transform: translate(-50%, -50%);
}

.custom-scenarios .scenario:hover button.arrowStyleCFFC span{
     opacity: 0;
}

.custom-scenarios .scenario .content{
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;

  padding-top: 10px;
  padding-bottom: 65px;

  -webkit-transition: box-shadow .2s ease-in-out;
  -ms-transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;
}

.custom-scenarios .scenario.disabled .content{
 -webkit-box-shadow: none;
 -moz-box-shadow: none;
 box-shadow: none;
}

.custom-scenarios .scenario .budget-inputArea{
  width: 100%;
  pointer-events: all;
}

.custom-scenarios .scenario.disabled button.stageNavBtn{
  background-color: #d8d8d8;
  pointer-events: none;
}

.custom-scenarios .scenario.disabled button.arrowStyleCFFC img{
    opacity: 0;
}

.custom-scenarios .scenario.disabled button.arrowStyleCFFC span{
    opacity: 1;
}

/* 2 - Needs and Wants
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.item-grid-container{
  background-color: #f6f6f6;
  padding-bottom: 65px;
}

.gridBackgroundOffset{
  width: 100%;
  height: 100px;
  background: #ffffff;
  margin-bottom: -50px;
}

.item-grid {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;

  align-items: center;
  justify-content: space-around;
}

.item {
  width: 48%;
  background-color: #ffffff;
  border-radius: 10px;
  /* padding: 10px; */

  margin-bottom: 20px;

  border: 2px solid #ffffff;

  -webkit-box-shadow: 0px 5px 13px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 5px 13px 2px rgba(0,0,0,0.05);
  box-shadow: 0px 5px 13px 2px rgba(0,0,0,0.05);
}



.item .title {
  text-align: center;
  padding: 0px 5px;
  margin-bottom: 5px;

  color: #2c2c2c;
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  height: 40px;
  line-height: 20px;

}

.item img{
  width: 100%;
  margin-top: 8px;
}

.item .needWant-toggle {
  margin-bottom: 5px;
}

.item .needWant-toggle fieldset{
  margin-bottom: 0px;
}

.item .needWant-toggle label{
  width: 45%;

  border-radius:17px;
  -moz-border-radius:17px;
  -webkit-border-radius:17px;

  border: 1px solid #2c2c2c;
  background: #ffffff;

  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  /*
  padding-top: 20px;
  line-height: 4px;
  */
  height: 34px;
  padding: 7px;
}

.item .needWant-toggle label:hover{
  font-weight: normal;
  color: #2c2c2c;
}

.item .needWant-toggle label.ui-state-active{
  font-weight: normal;
  color: #fff;
}

.item .needWant-toggle .toggleLeft{
  margin-right: 2px;
}

.item .needWant-toggle .toggleLeft:hover{
  border: 1px solid #2c2c2c;
  background: #ffdbcc;
}

.item .needWant-toggle .toggleLeft.ui-state-active{
  border: 1px solid #ff6e32;
  background: #ff6e32;
}

.item .needWant-toggle .toggleRight{
  margin-left: 2px;
}

.item .needWant-toggle .toggleRight:hover{
  border: 1px solid #2c2c2c;
  background: #dcd0f7;
}

.item .needWant-toggle .toggleRight.ui-state-active{
  border: 1px solid #704c97;
  background: #704c97;
}
  .item .needWant-label {
    display: none;
    font-size: 14px;
    padding: 2px 0px;
    background-color: dimgrey;
    color: #ffffff;
    font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
    border-radius: 0px 0px 10px 10px;
    -moz-border-radius: 0px 0px 10px 10px;
    -webkit-border-radius: 0px 0px 10px 10px;
    margin: -2px;
  }

  .item .needWant-label.need{
    background-color: var(--brandOrange, #ff6e32);
    color: #000000;
  }

  .item .needWant-label.want{
    background-color: var(--brandPurpleDark, #4f2875);
    color: #ffffff;
  }

  .item .quantity{
    display: none;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 5px;
  }

  .item .quantityBtn{
    border-radius: 50%;
    width: 30px;
    height: 30px;

    padding: 0px;
    padding-top: 0px;
    /*
    padding-left: 5px;
    padding-right: 5px;
    */
    border: 1px solid #2c2c2c;
    background-color: #fff;
    font-size: 12px;

    display: flex;
    justify-content: space-around;
  }

  .item .quantityBtn svg{
    margin: auto;
  }

  .item .quantity .quantityLabel{
    font-size: 24px;
    width: 50px;
    /*padding-top: 10px;*/
    margin-bottom: 0px;
    font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  }

  .item .price-inputArea{
    display: none;
    /*width: max-content;
    margin-bottom: 0px;
    margin-left: 20px;*/

        width: 85%;
    margin-bottom: 0px;
    margin-left: 10px;
    /* margin-right: 5px;*/
  }

  .item .price-inputArea input{
    /*width: 135px;*/
        width: inherit;
  }

  .item .price {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 0px;
  }

  .stage-needsAndWants .item.unselected{
    border-color: var(--brandOrange, #ff6e32);
  }

/* 3 - Typical Needs and Wants
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-typical .item.differentFromTypical{
  background-color: var(--brandOrangeFaded, #fce7e0);
  border-color: var(--brandOrange, #ff6e32);
}

/* 4 - Shopping Phase 1
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-shopping-1 .item.selected{
  background-color: var(--brandOrangeFaded, #fce7e0);
  border-color: var(--brandOrangeFaded, #fce7e0);
}

.stage-shopping-1 .item .needWant-toggle{
  display: none;
}

.stage-shopping-1 .item .needWant-label{
  display: block;
}

.stage-shopping-1 .item .quantity{
  display: flex;
}


/* 5 - Pricing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-pricing .item.unpriced{
  border-color: var(--brandOrange, #ff6e32);
}

.stage-pricing .item .needWant-toggle{
  display: none;
}

.stage-pricing .item .needWant-label{
  display: block;
}

.stage-pricing .item .price-inputArea{
  display: block;
}

/* 6 - Shopping Phase 2
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-shopping-2 .item.selected{
  background-color: #d7faff;
  border-color: #61d6ed;
}

.stage-shopping-2 .item .needWant-toggle{
  display: none;
}

.stage-shopping-2 .item .needWant-label{
  display: block;
}

.stage-shopping-2 .item .quantity{
  display: flex;
}

/* 8 - Overview List
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.overviewListModalModal .header {
    margin-top: 20px;
}

.overviewListModal .listSection table{
  width: 100%;
  margin-top: 20px;
}

.overviewListModal .listSection table thead th{
  color: var(--brandOrange, #ff6e32);
  border-bottom-color: var(--brandOrange, #ff6e32);
  text-align: center;

  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
}

.overviewListModal .listSection table thead th:first-child{
  text-align: left;
}

.overviewListModal .listSection table tbody td{
  color: #4f2875;
  border-bottom-color: #4f2875;
  text-align: center;

  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  font-size: 18px;
}

.overviewListModal .listSection table tbody td:first-child{
  text-align: left;
}

.overviewListModal .budgetSection {
  color: var(--brandOrange, #ff6e32);
  border-color: var(--brandOrange, #ff6e32);;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding-top: 13px;
  padding-bottom: 30px;
  margin-bottom: 15px;

  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;

}

.overviewListModal .budgetSection .providedBudget{
  width: 50%;
  font-size: 16px;
  text-align: left;
  float: left;

}

.overviewListModal .budgetSection .totalSpent{
  width: 50%;
  font-size: 16px;
  text-align: right;
  float: right;
}

.overviewListModal .feedbackSection{
  margin-top: 50px;
  margin-bottom: 50px;
}

.overviewListModal .downloadSection{
    margin-top: 40px;
}

.overviewListModal .downloadSection p{
    color: #2c2c2c;
}

.overviewListModal .downloadBtn{
  width: 170px !important;
}

/* 8 - Results
–––––––––––––––––––––––––––––––––––––––––––––––––– */




/* 9 - Summary
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.summaryModal .background{
  background-color: var(--brandPurpleDark, #4f2875);
}

.summaryModal .header{
    margin-top: 20px;
}

.extensionBackground{
  border-radius: 10px;
  background-color: #ffffff;
  padding-top: 40px;
  margin-bottom: 60px;
}

.extensionBackground .header{
  margin-bottom: 30px;
}

.extensionBackground .header H2{
  color: #001845;
}



.extensionSection {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;

  align-items: center;
  justify-content: space-around;

  border-radius: 10px;
  margin-bottom: 10px;
}

.extensionSection .extension{
  width: 400px;
  cursor: pointer;
  -webkit-transition: transform .2s ease-in-out;
  -ms-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
}
.extensionSection .extension:hover {
  transform: scale(1.02);
}

.extensionSection .extension:hover .content{
 -webkit-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 -moz-box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
 box-shadow: 0px 1px 10px 0 rgba(0, 0, 0, 0.2);
}

.extension button{
/*  background-color: var(--brandPurpleDark, #4f2875) ;*/
  color: #fff ;

  -webkit-transition: background-color .2s ease-in-out;
  -ms-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.extensionSection .extension:hover button{
  background-color: var(--brandOrange, #ff6e32);
  color: #fff;
}

.extensionSection .extension:hover button.arrowStyleCFFC{
    opacity: 1 !important;
}

.extensionSection .extension:hover button.arrowStyleCFFC img{
    opacity: 1;
    transform: translate(-50%, -50%);
}

.extensionSection .extension:hover button.arrowStyleCFFC span{
     opacity: 0;
}



.extensionSection .extension .content{
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;

  min-height: 400px;
  
  -webkit-transition: box-shadow .2s ease-in-out;
  -ms-transition: box-shadow .2s ease-in-out;
  transition: box-shadow .2s ease-in-out;  
}

.extensionSection .extension .title{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: left;
  font-size: 28px;
  color: #001845;
  line-height: 1.2;
}

.extensionSection .extension .description{
  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  text-align: left;
  font-size: 16px;
  padding: 0px;
  color: #2c2c2c;
}

.extensionSection .extension .detail{
  font-family: "brandon-grotesque", arial, helvetica, sans-serif;
  font-weight: normal;
  text-align: left;
  font-size: 18px;  
  color: #001845;
  margin-top: 15px;   
}

.resetBtn{
  width: 170px !important;
}

/* Page Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
nav {
 /*top:var(--headerSize);*/
 width: 100%;
 background-color: #ecedf0;
 z-index: 21;
 position: fixed;

 -webkit-box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.39);
 -moz-box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.39);
 box-shadow: 0px 5px 10px -3px rgba(0,0,0,0.39);
 display: none;
}

.nav-container {
  width: 100%;
  /*max-width: 1000px;*/
  margin: 0 auto;
  display: flex;
  height: 60px;
}

.nav-item {
  flex: 1;
  display: flex;
  align-content: center;
  padding: 0px 5px;
  border-left: 1px solid #ffffff;
  position: relative;

}

.nav-item p {
  width: 100%;
  text-align: center;
  align-self: center;
  color: #212126;

  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 18px;

  font-size: 14px;
}

.nav-item img {
  margin-right: 20px;
  max-width: 90px;
  max-height: 103px;
}

.nav-item:hover {
  background-color: #dde0e5;
}

.nav-container a:first-child {
  border: 0;
}

#menu .active{
 background:#419794;
 color:#ffffff;
}

#menu .active p{
  z-index: 2;
  color:#ffffff;
}

.pointer {
  position: absolute;
  bottom: 0;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 0%);
}

.active .pointer {
  z-index: 1;
  opacity: 1;
  transform: translate(-50%, 100%);
  transition: transform 0.5s;
}

.arrow-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%, 0%);
  -moz-transform: translateX(-50%, 0%);
  -ms-transform: translateX(-50%, 0%);
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  
  border-top: 20px solid #419794;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
button.popBtn{
   outline: none;
   border: none;
   border-radius: 5px;
   padding: 15px 25px 0px;
   font-size: 22px;
   text-decoration: none;
   color: #fff;
   position: relative;
   display: inline-block;
   font-weight: 600;

   background-color: var(--popColour, #96ceb0);;
	box-shadow: 0px 5px 0px 0px #719982;
}

button.popBtn:hover{
	background-color: var(--popColour2, #b1efce);;
}

button.popBtn:active{
	transform: translate(0px, 5px);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.25);
}
*/

/* Media Queries 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media (min-width: 450px){
   #sideMenuButton{
    display: none;
  }
  nav{
    display: block;
  }

  .pt-page{
    height: calc(100% - 75px);
    top:75px;
  }

  .mainScreen.extendedMobileHeader .pt-page {
    height: calc(100% - 75px);
    top:75px;
  }

  .pt-page.stage-scenarioSelection{
    height: calc(100% - 10px);
    top:10px;
  }

  .pt-page .container{
    padding-top: 50px;
  }

  .desktopOnly{
    display: flex !important;
  }

  .mobileOnly{
    display: none !important;
  }

  #budgetBar {
    height: 65px;
  }

  .mainScreen.extendedMobileHeader #budgetBar {
    height: 65px;
  }

  #budgetBar .recalculateContainer{
    width: 180px;
    margin: 0px 12px;
  }

  #budgetBar button{
    width: 160px;
    font-size: 18px;
  }

  #budgetBar h1{
    font-size: 24px;
  }

  #budgetBar h2{
    font-size: 12px;
    margin-top: 6px;
    margin-bottom: 0px;
  }

  /*ITEM CARDS*/
  .item {
    width: 200px;
  }
  .item .title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .item .needWant-toggle {
    margin-bottom: 10px;
  }

  .item .quantity{
    margin-bottom: 10px;
  }

  .item .quantityBtn{
    width: 35px;
    height: 35px;
  }

  .item .quantity .quantityLabel{
    font-size: 28px;
    width: 60px;
  }

  .item .needWant-label {
    font-size: 18px;
  }

  .item .needWant-toggle label{
    width: 80px;
  }

  .item .needWant-toggle .toggleLeft{
    margin-right: 5px;
  }

  .item .needWant-toggle .toggleRight{
    margin-left: 5px;
  }


}

@media (min-width: 800px){
  #budgetBar .recalculateContainer{
    width: 300px;
    margin: 0px 36px;
  }

  #budgetBar button{
    width: 200px;
    font-size: 20px;
  }

  #budgetBar h1{
    font-size: 26px;
  }

  #budgetBar h2{
    font-size: 18px;
    margin-top: 2px;
    margin-bottom: -2px;
  }
}
