

/* Tablet Size 768px
----------------------------------------------------------------------------
---------------------------------------------------------------------------- */

@media screen and (min-width: 630px) { 
  .selectSection {
    grid-template-columns: repeat(3, 1fr); 
  }
}


@media screen and (min-width: 768px) {
  /* Main Styles
  -------------------------------------- */  
  
  body {
    padding: 35px 0 0;
  }


  /* Typography
  -------------------------------------- */

  h1, .h1 {
    font-size: var(--fs-45);
    margin-bottom: 20px;
  }

  h2, .h2 {
    font-size: var(--fs-25);
  }

  h3, .h3,
  h4, .h4 {
    font-size: var(--fs-20);
  }


  /* Buttons
  -------------------------- */

  .infoButton {
    font-size: var(--fs-30);
    width: 45px;
    height: 45px;
  }

  .btnVertical {
    padding: 22px 10px;
    transform: rotate(-90deg);
  }

  .btnVertical svg {
    width: 14px;
  }


  /* Header styles
  -------------------------------------- */

  .appHeader {
    min-height: 95px;
    margin-bottom: 20px;
  }

  .appHeader > div { 
    flex: 1 1 33.33%;
  }

  .appHeader .topLeft,
  .appHeader .topMid {
    width: initial;
  }

  .appHeader .topLeft {
    align-items: flex-end;
    order: 1;
  }

  .appHeader .topMid {
    justify-content: flex-start;
    align-items: center;
    order: 2;
  }

  .appHeader .topMid > .prevBtn {
    transform: translateY(10px) rotate(-90deg);
  }

  .appHeader .topRight {
    justify-content: flex-end;
    align-items: flex-end;
    order: 3;
  }

  .appHeaderPoll {
    flex-wrap: nowrap;
  }

  .appHeaderPoll > div { 
    flex: 1 1 33.333%;
  }

  .appHeaderPoll .topLeft {
    flex: 1 1 33.333%;
    align-items: center;
    justify-content: flex-start;
    order: 1;
  }

  .appHeaderPoll .topMid {
    flex: 1 1 33.333%;
    align-items: center;
    margin: 0;
    order: 2;
  }

  .appHeaderPoll .topRight {
    flex: 1 1 33.333%;
    justify-content: flex-end;
    order: 3;
  }

  .appHeaderPoll .pageTitle {
    display: inline-block;
  }

  .dateYear {
    font-weight: 300;
    font-size: var(--fs-35);
  }

  .custom-steps {
    display: flex;
  }


  /* Main Layout Styles
  -------------------------------------- */

  .appWrapper {
    min-height: calc(100vh - 35px);
  }

  /* Main Content | Hero Section styles - Home
  -------------------------------------- */

  .mainContent {
    min-height: 380px;
    margin: 50px 0 0;
  }

  .stepsNumberText {
    font-size: var(--fs-60);
    width: 92px;
    height: 92px;
  }

  .stepsIconRow {
    min-height: 92px;
  }

  #stepsNumberHero {
    .circular-chart {
      max-width: 92px;
      width: 92px;
    }
  }


  /*
  .stepsNumberText {
    font-size: var(--fs-60);
    width: 88px;
    height: 88px;
    border: 5px solid var(--ci-light-gray);
  }
  */

  .stepsNumberText small {
    font-size: var(--fs-25);
  }

  /* Main Content | Formular Section styles
  ---------------------------------------------------- */

  .answersWrapper {
    grid-template-columns: repeat(3, auto); 
  }

}

@media screen and (min-width: 960px) { 

  /* Main Content | Formular Section styles
  ---------------------------------------------------- */
  
  .mainContent {
    margin: 100px 0 0;
  }
}

