* { box-sizing: border-box; }

body {
  font-family: sans-serif;
}

/* ---- button ---- */

.button {
  display: inline-block;
  padding: 0.3em 1.5em;
  background: #EEE;
  border: none;
  border-radius: 3px;
  background-image: linear-gradient( to bottom, hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.2) );
  color: #222;
  font-family: sans-serif;
  font-size: 14px;
  text-shadow: 0 1px white;
  cursor: pointer;
}

.button:hover {
  background-color: #BD94DE;
  text-shadow: 0 1px hsla(0, 0%, 100%, 0.5);
  color: #510093;
}

.button:active,
.button.is-checked {
  background-color: #510093;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  float: left;
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.button-group .button:first-child { border-radius: 0.2em 0 0 0.2em; }
.button-group .button:last-child { border-radius: 0 0.2em 0.2em 0; }

/* ---- grid ---- */

.grid {
  max-width: 1200px;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ui group */

.ui-group {
  display: inline-block;
}

.ui-group h3 {
  display: inline-block;
  vertical-align: top;
  line-height: 32px;
  margin-right: 0.2em;
  font-size: 16px;
}

.ui-group .button-group {
	display: inline-block;
	margin-right: 20px;
}

/* color-shape */

.color-shape {
  margin: 20px 5px 0px 5px;
  width: 350px;
  height: 180px;
  float: left;
}
 
.color-shape.round {
  border-radius: 10px;
}
 
.color-shape.big.round {
  border-radius: 75px;
}

.color-shape.gastronomia { background: #f7f7f7; }
.color-shape.produto { background: #f7f7f7; }
.color-shape.moda { background: #f7f7f7; }
.color-shape.dancacorpoemente { background: #f7f7f7; }
.color-shape.belezaeestetica { background: #f7f7f7; }
.color-shape.artelazerediversao { background: #f7f7f7; }
.color-shape.autoemoto { background: #f7f7f7; }
.color-shape.servico { background: #f7f7f7; }
.color-shape.culturalazer { background: #f7f7f7; }
.color-shape.pet { background: #f7f7f7; }
 
.color-shape.wide, .color-shape.big { width: 200px; }
.color-shape.tall, .color-shape.big { height: 150px; }

.color-shape .number {
  text-align: left;
  font-size: 12px;
}

/* texto isotopo */
.texto-cadastro {
  text-align: left;
  line-height:17px;
  font-size: 13px;
  padding: 15px 10px 5px 10px;
}