/***** General *****/

:root {
    --greenlight: #bbf0ef;
    --green: #0ABBC0;
    --lime: #d1cd36;
    --black: #231F20;
    --gray: #F3F2EE;
    --graydark: #E5E3D9;
    --orange: #f15a2a;
    --teal : #227B83;
    --tealdark : #1E686F;
    --tealdark2 : #164c51;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: transparent;
    color: #231f20;
    font-family: "Lato", sans-serif;
    width: 100%;
    height: 100%
}

html {
    scroll-behavior: smooth;
    overflow: visible;
}

label {
    margin: 0;
}

h1,
h2,
h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
}

/***** Buttons *****/


.btn-primary {
	background: #d1cd36;
	border-radius: 0;
	border: none;
}

.btn-primary:hover {
	background: black;
}

.btn i {
	padding: 0 5px;
}

/*.btn-next {
  background: #d1cd36;
  color: #231f20;
}*/

#reset {
	position: absolute;
	top: 0;
	right: 15px;
	padding: 10px 20px;
	z-index: 1;
  font-size: 13px;
}

/**** Checkbox ****/
.checkbox {
  height: 100%;
}

.checkbox label{
	display: block;
  height: 100%;
	/*background: var(--gray);*/
	background: #f3f2ee;
	padding: 15px;
	border-radius: 1px;
	font-weight: 900;
	font-size: 0.8rem;
	font-weight: 700;
}

.checkbox label:hover {
	background: #e5e3d9;
	cursor: pointer;
}

.checkbox .cr {
    position: relative;
    width: 1em;
    height: 1em;
    font-size: 18px;
    float: left;
    margin-right: .5em;
    display: flex;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked+label{
	background-color: #bbf0ef;
}

input[type="checkbox"]:checked+label .fa-square:before{
	content: "\f14a";
}


/***** Layout *****/

.container {
  position: relative;
}

.question {
	padding-top: 55px;
}

.questionDiv {
    padding-bottom: 40px;
}

.survey-q {
    margin: 5px 0;
    padding-left: 5px !important;
    padding-right: 5px !important;
}

/***** Footer Nav *****/
.q-nav {
    position: sticky;
    bottom: 5%;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    /*background: #227b83;*/
    color: white;
    /*padding: 10px;*/
    z-index: 10;
   /* border-radius: 3px;
    box-shadow: 0px 0px 16px -5px rgba(0,0,0,0.3);*/
}

.nav-buttons {
  background-color: #227b83;
}

.top-clusters {
  background: rgba(255,255,255,0.9);
  max-width: 100%;
  margin: 0 auto;
  padding: 3px;
  display: none !important;
}

@media only screen and (min-width: 1170px) {
  .top-clusters {
    max-width: 70%;
  }
}

@media only screen and (min-width: 768px) {
  .top-clusters {
    display: flex !important;
  }
}

.top-clusters__item {
  transition: all 0.3s ease;
  padding: 5px;
  font-size: 13px;
  display: inline-block;
}

.cluster-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: center;
}

.cluster-icon {
  max-width: 36px;
  padding: 0 5px;
}

.cluster-place {
  color: #231f20;
}

.cluster-title {
  color: #231f20;
  line-height: 1em;
  font-weight: 700;
  max-width: 140px;
}

.progress-wrap {
  width: 100%;
  padding: 0 5%;
}
.progress {
	background-color: #e5e3d9;
	width: 100%;
	font-size: 8px;
	height: 10px;
}
.progress-bar {
	background-color: #164c51;
}
.progress-bar.75% {
width: 75%;
}

/*.q-prev,
.q-next {
  width: 20%;
  text-align: center;
}*/

.btn-nav {
  color: white;
  background: #1e686f;
  display: flex;
  width: 100%;
  padding: 4px 20px;
  font-size: 12px;
  align-items: center;
  border-radius: 0;
  height: 35px;
}

@media only screen and (min-width: 768px) {
  .btn-nav  {
     padding: 8px 40px;
     height: 45px;
     font-size: 14px;
   }
}

.btn-nav:hover {
  background: #164c51;
  color: #fff;
}

/*** Summary Page ***/

.cluster-summary-list__item {
  background: #f3f2ee;
  padding: 20px;
  margin-bottom: 1em;
  display: block;
  color: #231f20;
}

.cluster-summary-list__item:nth-child(-n+3) {
  border: 2px solid #e5e3d9;
}

.cluster {
  text-align: center;
}

.cluster-title-summary {
  font-size: 13px;
}

.cluster-summary-icon {
  max-width: 60px;
  margin-bottom: 10px;
}

.score {
  text-align: center;
}
.score p {
  font-size: 3em;
}

/*** banner ***/

#intro {
  width: 100vw;
  position: relative;
  left: calc(-1 * (100vw - 100%) / 2);
}
.banner {
  background: url(../img/culinary.jpg) no-repeat;
  background-position: bottom center;
  background-size: cover;
  margin-top: -32px;
    margin-right: 0;
    margin-left: 0;
  padding: 8% 0 10%;
}
@media only screen and (min-width: 992px) {
 .banner {
   margin-top: -90px;
 }
}

.start-callout {
  background:  rgba(243, 242, 238, 0.9);
  padding: 8% 10%;
}

.start-definition {
  background: #e5e3d9;
  padding: 2em 0;
  margin-bottom: -32px;
}

