@charset "utf-8";
/* CSS Document
claudia snell custom css  */

:root {
    --beckerBlue: #04539c; 
    --bbHover: #1a252f;
}
.dashboard-content-block{
  width: 100%;
  max-width: 1200px; 
  margin: 1em auto;
  padding: .5em 0;
}
.dashboard-wrapper{
  width: 100%;
  max-width: 1200px; 
  margin: 1em auto;
  padding: .5em 0;

font-weight: 300;
line-height: 1.42857143;
color: #333;
font-family: 'Lato', sans-serif;
}
 .question-accordion-block{
     padding: 1em 0;
 }      


/* Accordion styles */
.questions {
  overflow: hidden;
 
}

.question {
  width: 100%;
  overflow: hidden;
}
.question-text {
  background-color: var(--beckerBlue);
color: white;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: .5em;
border-bottom: white solid 1px;
  font-weight: bold;

}
.question-text:hover {
  background-color: var(--bbHover);

}

.question-content {
 
  padding: 0 1em;
  color: var(--bbHover);
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
}





/* Dashboard Styles / 3-up blocks */
.secondary-messaging{
  font-size: .9em;
}
.messaging-date{
  font-size: .8em;
}

.info-group-dashboard{
    padding: .5em;

}

         .info-group-wrapper {
  display: flex;  
  flex-flow: row wrap;
 

}

.info-group-wrapper > * {
  padding: .5em;
  flex: 1 100%;
  margin: .5em;
  border-radius: 10px;
  border: var(--beckerBlue) solid 1px;
  background: rgb(243, 243, 243);

}
.info-group-wrapper span{
    display: block;
}


@media all and (min-width: 600px) {
  .block { flex: 1 0 0; }
}
.primary-messaging{
    font-size: 4em;
    font-weight: 900;
    color: var(--beckerBlue);
    
}


.primary-info-block {
text-align: center;

}

.secondary-info-block {text-align: center;
 
}

.tertiary-info-block {
    text-align: center;

}

