@charset "UTF-8";

/*********************************************************************
* Shared styles
 *********************************************************************/

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

/* Text Formatting */
.ts-bold {
	font-weight: bold;
}

/* Center items */
.ts-cntr{
	text-align: center;
	margin: 0 auto;
}

/* Center text */
.ts-txt-cntr {
	text-align: center;
}

/* No underline */
.ts-no-decor,
.ts-no-decor a,
.ts-no-decor:hover,
.ts-no-decor a:hover {
	text-decoration: none;
}

/* Match $post entry content width */
.ts-content-area {
	max-width: var(--go--max-width);
    width: calc(100% - var(--double-padding));
	margin-left: auto;
	margin-right: auto;
}

/*********************************************************************
 * Flex Columns
 ********************************************************************/

.ts-flex-two,
.ts-flex-two-ten,
.ts-flex-three-ten,
.ts-flex-two-fifteen,
.ts-flex-two-twenty,
.ts-flex-container,
.ts-flex-eleven {
	-khtml-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

.ts-flex-container{
  	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	/* align-items: flex-start; add this to prevent flex items from stretching full height */
}

.ts-flex-container.space{
  	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	/* align-items: flex-start; add this to prevent flex items from stretching full height */
}

.ts-flex-two,
.ts-flex-two-ten,
.ts-flex-two-fifteen,
.ts-flex-two-twenty {
	width: 100%;
}

/* share icons: (11) 16% */
.ts-flex-eleven {
	width: 16.65%;
	margin: 0 auto;
	text-align: center;
}

.ts-flex-eleven a {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

/* center images */
.ts-flex-eleven img,
.ts-flex-eleven a img {
	margin: 0 auto;
	width: 100%;
	max-width: 25px;
	text-align: center;
}

/* small screens: 10%/90% */
.ts-flex-three-ten:nth-child(odd){
	width: 9%;
	margin-right: 1%;
}
.ts-flex-three-ten:nth-child(even){
	width: 90%;
}

/* 5%/95% on all screens */
.ts-flex-two-five:nth-child(odd){
	width: 4%;
	margin-right: 1%;
}
.ts-flex-two-five:nth-child(even){
	width: 95%;
}
.ts-flex-two-five img{
	max-width: 100%;
	width: 100%;
	height: auto;
}

.ts-flex-two img,
.ts-flex-two-ten img,
.ts-flex-two-fifteen img,
.ts-flex-two-twenty img {
	border: solid 1px rgba(0,0,0,0.3);
}

@media screen and (min-width:600px){
	
	/* images should be full width */
	.ts-flex-two img,
	.ts-flex-two-ten img,
	.ts-flex-two-fifteen img,
	.ts-flex-two-twenty img,
	.ts-flex-three-ten img {
		max-width: 100%;
		width: 100%;
		height: auto;
	}
	
	/* share icons: (11) 9% */
	.ts-flex-eleven {
		width: 9.08%;
	}
	/* 50%/50% */
	.ts-flex-two{
		width: 49%;
	}
	.ts-flex-two:nth-child(odd){
		margin-right: 2%;
	}
	/* 10%/90% */
	.ts-flex-two-ten:nth-child(odd){
		width: 9%;
		margin-right: 1%;
	}
	.ts-flex-two-ten:nth-child(even){
		width: 90%;
	}
	/* 15%/85% */
	.ts-flex-two-fifteen:nth-child(odd){
		width: 14%;
		margin-right: 1%;
	}
	.ts-flex-two-fifteen:nth-child(even){
		width: 85%;
	}
	/* 20%/80% */
	.ts-flex-two-twenty:nth-child(odd){
		width: 19%;
		margin-right: 1%;
	}
	.ts-flex-two-twenty:nth-child(even){
		width: 80%;
	}
	/* 600 screens (2 sets): 5%/44%,5%/44% */
	.ts-flex-three-ten:nth-child(odd){
		width: 4%;
		margin-right: 1%;
	}
	.ts-flex-three-ten:nth-child(even){
		width: 44%;
	}
	.ts-flex-container{
		align-items: flex-end;
	}
}

@media screen and (min-width:850px){
	/* 850+ screens (3 sets): 3%/29%,3%/29%,3%/29% */
	.ts-flex-three-ten:nth-child(odd){
		width: 3%;
		margin-right: 0.5%;
	}
	.ts-flex-three-ten:nth-child(even){
		width: 29%;
	}
}

/*********************************************************************
 * Form Elements
 ********************************************************************/

.three-item-twsv,
.three-item-twsv-wrap,
.flex-item,
.flex-container {
	-khtml-box-sizing:border-box !important;
	-webkit-box-sizing:border-box !important;
	-moz-box-sizing:border-box !important;
	box-sizing:border-box !important;
}

/* Form Flexbox 33%/33%/33% 3-field */

.three-item-twsv-wrap,
.flex-container {
  	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	padding: 0;
	margin-bottom: 10px;
}

.three-item-twsv {
	width: 100%;
	margin-bottom: 10px;
}

.flex-item {
	background: tomato;
	padding: 5px;
	width: 100%;
	margin-top: 10px;
	margin-right: 0;
	margin-left: 0;
	color: white;
	font-weight: bold;
	font-size: 3em;
	text-align: center;
}

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

	.three-item-twsv,
	.flex-item {
		width: 49%;
	}
	.three-item-twsv:nth-child(odd),
	.flex-item:nth-child(odd){
		margin-right: 2%;
	}
}

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

	.three-item-twsv,
	.flex-item {
		width: 32.5%;
	}
	.three-item-twsv:nth-child(odd),
	.flex-item:nth-child(odd){
		margin-right: 0;
	}
	.three-item-twsv:nth-child(3n+2),
	.flex-item:nth-child(3n+2){
		margin-right: 1.25%;
		margin-left: 1.25%;
	}
}

/* Form Flexbox Sizing  */

.two-item-twsv,
.two-item-twsv-wrap,
.two-item-ffty,
.two-item-ffty-wrap {
	-khtml-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Form Flexbox 23%/75% 2-field  */

.two-item-twsv-wrap {
  	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.two-item-twsv {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 0;
	margin-left: 0;
}

@media screen and (min-width:740px) {
	
	.two-item-twsv-wrap{
		align-items: flex-end;
	}

	.two-item-twsv {
		width: 75%;
	}

	.two-item-twsv:nth-child(1){
		margin-right: 1.5%;
		width: 23.5%;
	}
}

/* Form Flexbox 50%/50% 2-field  */

.two-item-ffty-wrap {
  	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin-bottom: 10px;
}

.two-item-ffty {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 0;
	margin-left: 0;
}

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

	.two-item-ffty {
		width: 49%;
	}

	.two-item-ffty:nth-child(odd){
		margin-right: 2%;
		width: 49%;
	}
}

/* Form Elements */

.hh-fld{
	display: inline-block;
}
div.fc-alt-bg > div:nth-of-type(even) {
    background: rgba(0,0,0,0.1);
	border: solid 1px rgba(0,0,0,0.3);
}
div.fc-alt-bg > div {
    margin-bottom: 10px;
	padding: 10px 10px 6px 10px;
}
/* Deactivate above with class "deact" */
div.deact.fc-alt-bg > div:nth-of-type(even) {
	background: none;
	border: none;
}
div.deact.fc-alt-bg > div {
	margin-bottom: 0;
	padding: 0 0 0 0;
}

.hh-textarea,
.hh-textfield,
.hh-select,
.fullwidth {
	width:100%;
}
.hh-textfield-eighty-five,
.hh-select-eighty-five{
	width:85%;
}
.hh-number,
.hh-select-num {
	width:33%;
}
.hh-number-twty-fv {
	width:25%;
}
.hh-textarea {
	resize:both !important; /* adds handles to textarea fields */
}
input[type="color"] { /* size color fields */
	width:60px;
	height:60px;
}
.plain-btn {
	background-color: transparent !important;
	border:0;
	padding:0;
	text-decoration:none !important;
}
.plain-btn:hover {
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity:0.5;
	opacity:0.5;
	cursor:pointer;
}
.plain-btn.remove{
	background-color: rgba(0,0,0,0.5) !important;
	color: rgba(255,255,255,0.9);
	padding: 1px 3px 1px 3px;
	text-decoration:none !important;
	margin-left: 4px;
}
.plain-btn.remove:hover{
	text-decoration: none;
}
input[type=text]{
	max-width: 100%;
}

/*********************************************************************
 * Transition effect
 ********************************************************************/
button,
button:hover {
	-moz-transition:.4s;
	-webkit-transition:.4s;
	-o-transition:.4s;
	-ms-transition:.4s;
	transition:.4s;
}

/*********************************************************************
 * Margin & Padding
 ********************************************************************/

.hh-marg-top-forty{
	margin-top: 40px;
}
.hh-marg-top-twenty{
	margin-top: 20px;
}
.hh-marg-bot-twenty{
	margin-bottom: 20px;
}
.hh-marg-top-ten{
	margin-top: 10px;
}
.hh-marg-bot-ten{
	margin-bottom: 10px;
}
.hh-marg-rgt-ten{
	margin-right: 10px;
}
.hh-marg-rgt-five{
	margin-right: 5px;
}
.hh-marg-lft-ten{
	margin-left: 10px;
}
.hh-marg-top-five{
	margin-top: 5px;
}
.hh-marg-bot-five{
	margin-bottom: 5px;
}

/*********************************************************************
 * List Styles
 ********************************************************************/

.alt-div-color{
	display: block;
	padding: 12px;
}
.alt-div-color:nth-child(even){
	background-color: rgba(0, 0, 0, 0.1);
}
.alt-div-color:nth-child(odd){
	background-color: rgba(0, 0, 0, 0.2);
}

/*********************************************************************
 * JS/jQuery Controller Styles
 ********************************************************************/

.fchide{
	display: none;
}
.fchide.show{
	display: inline;
	margin-left: 3px;
}
