/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/* Block: Accordion: Non Self-closing */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	cursor: pointer;
	transition: 0.4s;
	position: relative;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* Plus (+) sign */
.accordion:after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  top: 15%;	
}

.accordion .active:after {
  content: "-";
}  


/* Block: Accordion: Self-closing */

.accordion_header {
	cursor: pointer;
}

.accordion_content {
  margin-left: 50px;
  margin-right: 15px;
  overflow: hidden;
  height: 0;
  transition: all .5s ease;
  font-size: 14px;
}


.active {
  padding-bottom: 10px;
}

.icon {
  font-weight: 600;
}

/* Block: Tabs - No JS */

.tabs input[type="radio"] {
	display:none;
}

.tabs label {
	padding: 25px;
	background: #e2e2e2;
	font-weight: bold;
}

.tabs .tab{
	display: none;
}

.tabs input[type="radio"]:checked + label +.tab {
	display:block;
}

.tabs input[type="radio"]:checked + label {
	background: #fff;
}


