 
/**
 * Form & Button Styles
 */

 
label{
	color: #b0893d; 
	font-family: Calibri,arial;
	font-size: 12pt;	
}
 
button{
  display: inline-block;
  padding: .2em .3em;
  background: #666;
  border: 0;
  margin: 1.3em .5em;
  color: #ddd;
  font-size: 14px;
  font-weight: 300;
  border-radius: .25em;
  cursor: pointer;
}

button.active{
  background: #68b8c4;
}

button:focus{
  outline: 0 none;
}

button:first-of-type{
  margin-left: 0;
}

button:last-of-type{
  margin-right: 0;
}
 
button:focus{
  outline: 0 none;
}
 
.controls{
  /*background: #333;*/
  position:relative;
}
 
fieldset{
  /*background: #444;*/
  padding: .4em;
  /*border-radius: 3px;*/
  border: 0px; 
  float:right; line-height: .1em;
  margin-right: 22px;
}

.checkbox{
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 8px;
}

.checkbox input[type="checkbox"]{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  margin: 0;
  opacity: 0;
  z-index: 1;
}

.checkbox label{
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding-left: 1.5em;
}

.checkbox label:before,
.checkbox label:after{
  content: '';
  display: block;
  position: absolute;
}

.checkbox label:before{
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: #ddd;
  border-radius: 3px;
}

.checkbox label:after{
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #68b8c4;
  opacity: 0;
  pointer-events: none;
}

.checkbox input:checked ~ label:after{
  opacity: 1;
}

.checkbox input:focus ~ label:before{
  background: #eee;
}

/**
 * Container/Target Styles
 */

.container{
  padding: 5px;
  /*background: #68b8c4;*/
  text-align: justify;
}

.container .mix,
.container .gap{
  width: 200px;
  display: inline-block;
  margin: 0 5%;
}

.container .mix{
  width: 200px;
  height: 200px;
  margin: 5%;
  background: white;
  display: none;
}