/* Party Planner
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.headerButton.hidden{
  display: none;
}

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

  background-color: #f6f6f6;
}

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

  background-color: #ffffff;
}

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

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


#statsBar {
  height: 110px;
  background-color: #ffffff;
  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;

  background-color: #ffffff;
  border-bottom: 2px solid #f6f6f6;
}


#statsBar.hidden {
 height: 0px;
}

#statsBar .content-wrapper{
  width: 100%;
  display: flex;
  height: inherit;
  justify-content: space-around;

  /*flex-direction: column;*/
  flex-direction: row;
}

#statsBar .statGroup{
  flex-basis: 33%;
      overflow: hidden;
}

.statGroup .iconArea{
  float: left;
  width: 100%;
  height: 60px;
}

.statGroup .iconArea img{
    margin-top: 0px;
    width: 40px;
    height: 40px;
    padding: 0px;
    cursor: pointer;
}

.statGroup .iconArea p{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;

  color: var(--brandOrange, #ff6e32);
  padding-top: 16px;

  background-size: 55px;
  background-repeat: no-repeat;
  background-position: center;
  height: inherit;
  margin-bottom: 0px;
}

.statGroup .iconArea p span{
    font-size: 1.6em;
    line-height: 0px;
}

#budgetStat .iconArea p{
  background-image: url("../img/StatsGroup_Icon_1_Budget.svg");
}

#happinessStat .iconArea p{
  background-image: url("../img/StatsGroup_Icon_2_Satisfaction.svg");
}

#hungerStat .iconArea p{
  background-image: url("../img/StatsGroup_Icon_3_Hunger.svg");
}

.statGroup .barTitle{
  float: left;
  position: relative;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 5px;

  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-size: 14px;
  color: var(--brandOrange, #ff6e32);
  text-align: center;
}

.statGroup .barGraph{
  float: left;
  position: relative;
  width: 90%;
  margin-left: 5%;
  height: 10px;
  margin-top: 0px;

  background-color: #F7F7F7;
  border: #D8D8D8 1px solid;

  border-radius: 20px;
  clip-path: inset(0% 0% 0% 0% round 20px);
    -webkit-clip-path: inset(0% 0% 0% 0% round 20px);
}

.statGroup .barGraph span{
  display: block;
  position: absolute;
  height: 100%;
  box-sizing: border-box;
  float: left;

  border-radius: 20px;

  -webkit-transition: width 0.6s;
  transition: width 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

  background-color: var(--brandLightBlue, #61D6ED);
}

.statGroup .barGraph span{
  background-color: var(--brandLightBlue, #61D6ED);
}
.statGroup .barGraph span.back{
  background-color: var(--brandRed, #FF3333);
}

.statGroup .barGraph span.increase{
  background-color: var(--brandGreen, #B6FC5B);
}

.statGroup .barGraph span.decrease{
  background-color: var(--brandRed, #FF3333);
}


.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;
}

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

.pt-page .instructions span.triggerScenarioInfo{
  text-decoration: underline;
  color: #4f2875;
  cursor: pointer;
}

.pt-page .instructions span.triggerScenarioInfo span{
  pointer-events: none;
}

.pt-page .instructions span.triggerScenarioInfo span::before{
  pointer-events: none;
}

.pt-page .instructions span.triggerScenarioInfo:hover{
  color: var(--brandOrange, #ff6e32);
}

.pt-page .instructions span.triggerScenarioInfo:hover span::before{
  color: var(--brandOrange, #ff6e32);

}

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;

  margin: 5px 15px;
}

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%);
}


/* General Modal
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal .container{
  max-width: none;
  padding: 20px;
}

.container.mobileWidth{
  max-width: 600px;
}

.modal .container .scenarioImg{
  width: 150px;
  height: 180px;
}

.speechGroup{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.speechGroup .speechArea{
    margin: unset !important;
}

.speechArea{
    position: relative;
  max-width: 600px;
  margin: auto;
  margin-top: 20px;

  background-color: #FFF8EE;
  border: 1px solid #FFB39F;
  border-radius: 10px;
}



.speechArea .instructions{
    padding: 20px;
    
    font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif;
    color: #2c2c2c;

    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    text-align: left;

    margin-bottom: 0;
}

.speechArea button{
    margin-bottom: 15px;
}

.speechArea .instructions .innerSection{
    background-color: #e9feff;
    border: 1px solid #61d6ed;
    border-radius: 0px;
    padding: 10px;
    margin: -10px;
}


.speechArrow{
  content:'';
  position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    width: 0; 
    height: 0; 
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  
    border-bottom: 20px solid #FFB39F;
  }

.speechArrow::after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(-50%, 2px);
  -webkit-transform: translate(-50%, 2px);
  -moz-transform: translate(-50%, 2px);
  -ms-transform: translate(-50%, 2px);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 18px solid #FFF8EE;
}

.modal .container button.stageNavBtn{
  margin-top: 20px;
  margin-bottom: 20px;
}

/*
.modal span.triggerScenarioInfo{
  text-decoration: underline;
  color: #4f2875;
  cursor: pointer;
}

.modal span.triggerScenarioInfo span{
  pointer-events: none;
}

.modal span.triggerScenarioInfo span::before{
  pointer-events: none;
}

.modal span.triggerScenarioInfo:hover{
  color: var(--brandOrange, #ff6e32);
}

.modal span.triggerScenarioInfo:hover span::before{
  color: var(--brandOrange, #ff6e32);

}
*/

/* 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: center;

/*  margin-bottom: 10px;*/
}

.set-scenarios .scenario{
  width: 400px;
  margin: 0px 10px;

  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;
  
  -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 img.scenarioImg{
  width: 150px;
  height: 150px;
}

.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;
}

.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;
}

/* 1.1 - Scenario Info Modal
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.scenarioInfoModal .instructions h5{

}

.scenarioInfoModal .instructions ul{
  margin-bottom: 0px;
    padding-left: 15px;
}

.scenarioInfoModal .instructions ul li{
  margin-bottom: 0px;
  list-style: disc;
  list-style-position: outside;
}

/* 2 - Category selection
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.category-container {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;

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

  margin-top: 50px;
  margin-bottom: 50px;
}

.category-container .category{
  width: 280px;
  margin: 0 5px 10px;

  cursor: pointer;
  -webkit-transition: transform .2s ease-in-out;
  -ms-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
}
.category-container .category:hover {
  transform: scale(1.02);
}

.category-container .category: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);
}

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

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

.category-container .category .content{
  background-color: #ffffff;
  padding: 15px;
  border-radius: 10px;

  height: 360px;
  
  -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;*/

  border: 2px solid #ffffff;
}

.category-container .category img{
  width: 130px;
  height: 180px;
}

.category-container .category .title{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  font-size: 28px;
  color: #001845;

  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 10px;
}

.category-container .category .selected{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: italic;
  text-align: left;
  font-size: 16px;
  color: #001845;
  border-bottom: 1px black solid;
  border-top: 1px black solid;
  padding: 5px 0px;
}

.category-container .category .description{
  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif; font-weight: 400; font-style: normal;
  text-align: left;
  font-size: 16px;
  color: #001845;
}

.category-container .category.completed .description{
  text-align: center;
  font-weight: 500;
}

.category-container .category.completed .content{
  background-color: #e9feff;
  border-color: #61d6ed;
}

.category-container .cornerTag{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    display: none;
}

.category-container .category.completed .cornerTag{
  display: block;
}

.category-container .cornerTag .corner{
  position: absolute;
  left: 0px;
  width: 80px;
  height: 80px;
  border-radius: 10px 0px 0px 0px;
  overflow: hidden;
  border: 2px solid #61d6ed;
  border-bottom: none;
  border-right: none;
}

.category-container .cornerTag .triangle{
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  /*border-top: 80px solid #61d6ed;*/
  border-top: 80px solid #73e4b0;
  border-right: 80px solid transparent;
}
.category-container .cornerTag span{
  top: 12px;
  left: 12px;
  position: absolute;
  display: block;
  height: inherit;
  /*background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/img/sis_icon_check.svg);
  width: 30px;
  height: 30px;*/
  z-index: 1;
  font-size: 30px;
}

/* 3-4 Location and Transport choice
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.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;
*/
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.item {
  width: 280px;
    margin: 0 5px 10px;
    cursor: pointer;

/*  width: 48%;
*/  background-color: #ffffff;
  border-radius: 10px;
  padding: 2px 15px;

  border: 2px solid #ffffff;

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

  /*-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:hover{
  transform: scale(1.02);
  -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);
}

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

.item-container-large .item img{
  width: 100%;
  height: 120px;
  margin-top: 8px;
  padding: 15px 0px;
}

.item .title {
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  color: #2c2c2c;

  /*height: 55px;*/
  margin-bottom: 10px;
}

.item .description{
  font-family: 'Gotham A', 'Gotham B', arial, helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 14px;
  color: #2c2c2c;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding-top: 8px;
  padding-bottom: 10px;
  margin-bottom: 0px;
  min-height: 180px;
}

.item .price{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  font-size: 28px;
  color: var(--brandOrange, #ff6e32);
  margin-bottom: 0px;
  margin-top: 5px;
}

.item-container-large .item-grid .item.selected{
  background-color: #E9FEFF;
  border-color: #61d6ed;
}

/* 5: Food and Supplies item choice
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-foodAndSuppliesChoice .categoryTitle{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  color: #001845;
  font-size: 24px;

  margin-top: 33px;
}

.item-container-small .item img{
  width: 100%;
  height: 100px;
  margin: 44px 0px 20px 0px;
}

.stage-foodAndSuppliesChoice .item-grid{

}

.stage-foodAndSuppliesChoice .item-grid .item{
  padding: 0px;
  width: 220px;
}

.stage-foodAndSuppliesChoice .item-grid .item .title{
  font-size: 20px;
  font-weight: normal;
  height: 35px;
}

.item-container-small .item-grid .item.selected{
  background-color: #E9FEFF;
  border-color: #61d6ed;
}

.stage-foodAndSuppliesChoice .item-grid .item .cornerTag{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    display: none;
}

.stage-foodAndSuppliesChoice .item-grid .item.selected .cornerTag{
  display: block;
}

.stage-foodAndSuppliesChoice .item-grid .item .cornerTag .corner{
  position: absolute;
  left: 0px;
  width: 100px;
  height: 100px;
  border-radius: 5px 0px 0px 0px;
  overflow: hidden;
}

.stage-foodAndSuppliesChoice .item-grid .item .cornerTag .triangle{
    position: absolute;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 100px solid #61d6ed;
    border-right: 100px solid transparent;
}
.stage-foodAndSuppliesChoice .item-grid .item .cornerTag span{
  top: 12px;
  left: 12px;
  position: absolute;
  display: block;
  height: inherit;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/img/sis_icon_check.svg);
  width: 30px;
  height: 30px;
  z-index: 1;
}

.stage-foodAndSuppliesChoice .item-grid .item .cornerTag p{
  top: 20px;
  left: 4px;
  position: absolute;
  display: block;
 
  width: 30px;
  height: 30px;
  z-index: 1;

  font-size: 14px;
}


/* 6: Food and Supplies type choice 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.item-container-quantity .item-grid .item{
  -webkit-transition: none;
  -ms-transition: none;
  transition: none;
  cursor: auto;
  width: 220px;
}

.item-container-quantity .item-grid .item:hover{
  transform: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.item-container-quantity .item-grid .item.selected{
  background-color: #E9FEFF;
  border-color: #61d6ed;
}

.item-container-quantity .item img{
  width: 100%;
    height: 140px;
    margin-top: 8px;
    margin: 15px 0px;
}

.item-container-quantity .item .title{
  font-size: 20px;
  font-weight: normal;
/*  text-align: left;
*/  min-height: 40px;
}

.item-container-quantity .item .perAmount{
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
  min-height: 22px;
    
/*  text-align: left;
*/  
/*    min-height: 50px;*/
}

.item-container-quantity .item .price-label{
  font-size: 28px;
  font-weight: 500;
  color: var(--brandOrange, #ff6e32);
/*  text-align: left;
*/}

.item-container-quantity .item .quantity{
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    border-top: 1px solid #d8d8d8;
    padding-top: 15px;
    margin-bottom: 5px;
  }

.item-container-quantity .item .quantityBtn{
    border-radius: 50%;
    width: 40px;
    height: 40px;

    padding: 0px;
    padding-top: 0px;

    border: 1px solid #2c2c2c;
    background-color: #fff;
    font-size: 12px;

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

.item-container-quantity .item .quantityBtn svg{
    margin: auto;
  }

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

/* 7: Congratulations
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-congratulations .title{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;

  color: var(--brandOrange, #ff6e32);
  text-align: center;
}

.stage-congratulations .scenarioImg{
    width: 150px;
    height: 180px;
}


.stage-congratulations .instructions p{
  border-top: 1px solid #d8d8d8;
  
  font-size: 18px;

  padding-top: 30px;
  margin-bottom: 30px;
}


.stage-congratulations button.nextStageBtn{
    margin-top: 20px;
    margin-bottom: 20px; 
}

    

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

.summaryListModal .sectionTitle{
  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  color: #001845;
  font-size: 24px;
}

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

.summaryListModal .listSection table thead th,.summaryListModal .listSection table tbody td{
  border-top: 1px solid #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
  background-color: #efefef;
}

.summaryListModal .listSection table tr{
  height: 60px;
}

.summaryListModal .listSection table thead th{
  color: var(--brandOrange, #2c2c2c);
  border-top-color: var(--brandOrange, #2c2c2c);
  border-bottom-color: var(--brandOrange, #2c2c2c);
  text-align: center;

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

.summaryListModal .listSection table tbody td{
  color: #2c2c2c;
  text-align: center;

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

.summaryListModal .listSection table thead th:first-child,.summaryListModal .listSection table tbody td:first-child{
  text-align: left;
  padding-left: 20px;
}

.summaryListModal .listSection table thead th:nth-child(2), .summaryListModal .listSection table tbody td:nth-child(2){
  width: 110px;
}

.summaryListModal .listSection table thead th:last-child, .summaryListModal .listSection table tbody td:last-child{
  width: 110px;
}

.summaryListModal .budgetSection table thead th{
    width: unset !important;
    background-color: #ffffff;
}

/*
.summaryListModal .budgetSection {
  color: var(--brandOrange, #ff6e32);
  border-top: 1px solid var(--brandOrange, #ff6e32);
  border-bottom: 1px solid var(--brandOrange, #ff6e32);
  border-color: var(--brandOrange, #ff6e32);

  margin-top: 60px;
  padding-top: 20px;
  height: 60px;

  font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px
}
.summaryListModal .summaryLeftBlock{
  width: 50%;
  font-size: 16px;
  text-align: left;
  float: left;
  padding-left: 20px;
  font-size: inherit;
  font-weight: inherit;
}

.summaryListModal .summaryRightBlock{
  width: 50%;
  font-size: 16px;
  text-align: right;
  float: left;
  padding-right: 20px;
  font-size: inherit;
  font-weight: inherit;
}
*/




/* 9: Results
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.stage-results .scenarioImg{
  width: 150px;
  height: 180px;
}

.stage-results .feedback{
  width: 100%;
  display: flex;
  height: inherit;
  justify-content: center;

  flex-direction: column;

    margin-top: 20px;
  margin-bottom: 30px;
}

.stage-results .feedback .statGroup{
  flex-basis: 33%;
}

.stage-results .feedback .divider{
  /* flex-basis: 1%; */
  height: unset;
  border-left: 1px solid #d8d8d8;
  /* padding: 0 15px; */
  margin-left: 15px;
  padding-left: 15px;
}

/*.statGroup .iconArea{
  float: left;
    width: 60px;
    height: 100%;
}

.statGroup .iconArea img{
    margin-top: 0px;
    width: 40px;
    height: 40px;
    padding: 0px;
    cursor: pointer;
}

.statGroup .iconArea p{
    color: orange;
    padding-top: 9px;
}

.statGroup .barGraph{
    float: left;
    width: calc(100% - 70px);
    position: relative;
    color: #414042;
    background-color: #E6E6E6;
    border-radius: 20px;
    clip-path: inset(0% 0% 0% 0% round 20px);

    height: 10px;
    margin-top: 15px;
}

.statGroup .barGraph span{
  display: block;
  height: inherit;
  box-sizing: border-box;
  float: left;
  font-weight: bold;
  font-family: arial, sans-serif;
  border-radius: 20px;
  position: absolute;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;

  background-color: orange;
}*/

.stage-results .feedback .statGroup .iconArea{
    height: 78px;
}

.stage-results .feedback #budgetStat .iconArea p{
    padding-top: 25px;
}

.stage-results .feedback .statGroup ul{
  float: left;
  width: 100%;
  margin-top: 10px;
}

.stage-results .feedback .statGroup ul li{
  text-align: left;
  color: #2c2c2c;
  border-radius: 5px;
  border: 2px solid;
  padding: 10px;
  list-style: none;
}

.stage-results .feedback .statGroup ul li.positive{
  background-color: var(--brandLightGreen, #effcd9);
  border-color: var(--brandGreen, #B6FC5B);
}

.stage-results .feedback .statGroup ul li.okay{
  background-color: #f9f3e2;
  border-color: #ffc408;
}

.stage-results .feedback .statGroup ul li.negative{
  background-color: var(--brandLightRed, #ffe3e3);
  border-color: var(--brandRed, #ff5050);
}



/* 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: 650px){
   #sideMenuButton{
    display: none;
  }
  nav{
    display: block;
  }

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

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

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

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

  .desktopOnly{
    display: flex !important;
  }

  .mobileOnly{
    display: none !important;
  }
    




  #statsBar {
    height: 80px;
  }

  /*#statsBar .content-wrapper {
    flex-direction: row;
  }*/

  .statGroup .iconArea {
    width: 85px;
    height: 100%;
  }

  .statGroup .barGraph {
    margin-top: 2px;
    width: calc(100% - 100px);
    margin-left: 0px;
  }

  .statGroup .iconArea img {
    margin-top: 0px;
    width: 60px;
    height: 60px;
  }

  .statGroup .iconArea p{
    padding-top: 25px;
  }

  .statGroup .barTitle{
    float: left;
    position: relative;
    width: calc(100% - 100px);
    margin-top: 18px;
    margin-bottom: 0px;

    font-family: brandon-grotesque, "Brandon Grotesque Medium", arial, helvetica, sans-serif;
    font-size: 16px;
    color: var(--brandOrange, #ff6e32);
    text-align: left;
  }



  .stage-results .feedback{
    flex-direction: row;
  }
    
    .stage-results .feedback .statGroup .iconArea{
    width: 75px;
    }
    
    .stage-results .feedback .statGroup .barTitle{
        width: calc(100% - 78px);
    }
    
    .stage-results .feedback .statGroup .barGraph{
        width: calc(100% - 78px);
    }

  .speechGroup{
    flex-direction: row;
}
    
    .speechGroup .speechArea{
        margin-left: 35px !important;
    }
    
.speechGroup .speechArrow{
    content: '';
    position: absolute;
    left: -10px;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    -moz-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border-left: none;
    border-right: 20px solid #FFB39F;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
  }

.speechGroup .speechArrow::after{
  content: '';
  position: absolute;
  left: 50%;
  transform: translate(2px, -50%);
  -webkit-transform: translate(2px, -50%);
  -moz-transform: translate(2px, -50%);
  -ms-transform: translate(2px, -50%);
  width: 0;
  height: 0;
    
    border-left: none;
    border-right: 20px solid #FFF8EE;
    border-bottom: 20px solid transparent;
    border-top: 20px solid transparent;
}

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

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

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

}