/*
 Theme Name:   GP Child
 Theme URI:    
 Description:  A child theme of GeneratePress
 Author:       Nate Condron
 Author URI: 
 Template:     generatepress
 Version:      0.1
*/


/* buttons */

.button.full-width {
	width:100%;
	text-align:center;
	margin-bottom:12px;
}

div.entry-btns {
	margin-bottom:15px;
}


/* dashicons */

.dashicons {
	color: #444;
	height: 24px;
	width: 24px;
	font-size: 24px;
	top: 2px;
}

.dashicons:hover {
	color: var(--accent-1);
}

.quote:before {
	font-family:'dashicons';
	content: "\f205";
}


/* flex */

.flex-div {
	display:flex;
	flex-flow: row wrap;
	column-gap:30px;
}

.flex-content {
	flex:2;
	min-width:300px;
}

.flex-sidebar {
	flex:1;
	min-width:200px;
	max-width:400px;
	background:white;
}

.flex-sidebar {
	position: -webkit-sticky;
  position: sticky;
  top: 30px;
  align-self: flex-start; 
}


/* forms */

.repeater-btns {
	padding-top:24px;
	padding-left:12px;
}

.with_frm_style .frm_form_field.frm_repeat_buttons .frm_add_form_row:hover svg.frm-svg-icon, .with_frm_style .frm_repeat_sec .frm_form_field.frm_repeat_buttons .frm_add_form_row:hover svg.frmsvg, .with_frm_style .frm_form_field.frm_repeat_buttons .frm_remove_form_row:hover svg.frm-svg-icon, .with_frm_style .frm_repeat_sec .frm_form_field.frm_repeat_buttons .frm_remove_form_row:hover svg.frmsvg {
	fill:var(--accent-1);
}

.frm_text_exposed_show {
	font-size: small;
	font-style: italic;	
	text-decoration:none;
}



/* menu */



/* tables */

table {
	border:none;
	width:100%;
}

tr.even {
	background-color:var(--base);
}

th, td {
	border-right:none;
	text-align:left;
	vertical-align:top;
}

td.entry-btns {
	text-align:right;
}

tr th {
	position: -webkit-sticky;
  	position: sticky;
  	top: 0px;
	background:#fff;
	z-index:1;
}

.coderow td {
	border-bottom:0px!important;
} 

.codefields td {text-align:right;}

.codefields span {
	font-size:.9em;
	margin-right:5px;
}

.codefields span:before {
	font-family:'Dashicons';
	content: "\f158";
	font-size:1.5em;
	vertical-align:bottom;
	line-height:1;
	color:red
}

.codefields span.exists:before {
	font-family:'Dashicons';
	content: "\f147";
	font-size:1.8em;
	vertical-align:bottom;
	line-height:.9;
	color:green;
}

@media only screen and (max-width: 800px) {
	th {display:none;}
	td {display:block;}
	td.entry-btns {text-align:left!important;border-bottom:3px solid; }
}

.frm_pagination_cont ul.frm_pagination {
	float:right;
}

@media print {
	.entry-btns {display:none!important;}
	table {font-size:12px;}
	tr.even {background-color:var(--base);}
	.codefields td {border-bottom:1px solid #000 !important;}
}

table.orders .date {
	width:120px;
}

table.grids td {
	border-bottom:none;
}

td.active-codes {
	border-bottom:1px solid var(--base)!important;
	padding-top:0px;
	font-style:italic;
	font-size:14px;
	font-weight:500;
}

table.grids th.daily-focus {
	width:130px;
}

table.grids th.location {
	width:110px;
}

table.tablesorter thead tr th {
	border-top:none;
	border-right:none;
	border-left:none;
	background:white;
}

table.tablesorter thead tr th.tablesorter-headerAsc {
	background:white;
}

table.tablesorter thead tr th.tablesorter-headerDesc {
	background:white;
}

td.available {
	font-weight:bold;
}


/* tabby */

.responsive-tabs .responsive-tabs__list__item--active, .responsive-tabs .responsive-tabs__list__item--active:hover {
	font-weight:600;
	color:black!important;
}

.responsive-tabs .responsive-tabs__panel {
	border-left:none!important;
	border-right:none!important;
	border-bottom:none!important;
}


/* tooltips */

.tooltip-box {
	position: relative;
	display: inline-block;
}

.tooltip-box .tooltip-text {
  visibility: hidden;
	width:150px;
	line-height:18px;
  background-color: rgba(0,0,0,.85);
	border-radius:4px;
	font-family:-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #fff;
  text-align: center;
  padding: 10px;
  position: absolute;
	left:-60px;
	bottom:36px;
  z-index: 1;
	font-size:14px;
}

.tooltip-box:hover .tooltip-text {
	visibility: visible;
}