* {
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}

a:link {
  font-family: 'Verdana', 'Arial', sans-serif;
  font-weight: 700; 
  color: #7288a2;
  text-decoration: none
}
a:visited {
  color: #a1a1a1;
  text-decoration: none
}
a:hover, a:active {
  color: #ff0000;
  text-decoration: none;
}

.album {
  font-family: 'Verdana', 'Arial', sans-serif;
  font-weight: 700; 
  color: #7288a2;
}

.copyr {
  margin: 0 auto;					/* auto centres the text, here horizontally  – but it doesn't!*/
  font-family: 'Verdana', 'Arial', sans-serif;
  color: #7288a2;
  font-size: .8rem;
  font-weight: 400;
}

.timedate {
  color: #c1c1c1;
}

.preamble {
  margin: 0 auto;
  padding: 1rem 4rem 0 4rem;
  width: 48rem;
  font-family: 'Verdana', 'Arial', sans-serif;
  text-align: justify;
  line-height: 1.3em;
  color: #7288a2;
  font-size: 1rem;
  font-weight: 400;
}

hr {						/*doesn't work!*/
  background-color: #c1c1c1;
}

.TOC {
  font-family: 'Verdana', 'Arial', sans-serif;
  font-size: 1.1rem;
  color: #e63c64;
  line-height: 0.8em;
  font-weight: 700;
}

.bksuit {
  font-size: 1.5rem;
  color: #000000;
}

.redsuit {
  font-size: 1.5rem;
  color: #ff0000;
}

input {
  width: 50%;
  padding: 7px 10px;
  margin: 5px 0 0 0;
  color: #7288a2;
  font-family: 'Verdana', 'Arial', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #e1e1e1;
  border: none;
}

.comment {
	width: 50%;
	padding: 07px 10px;
	color: #ffffff;
	font-size: 1rem;
	box-sizing: border-box;
	border-radius: 8px;
	background-color: #7288a2;
	border: none;
	cursor: pointer;
}

.reply {
	margin-left: 3em;
}

textarea {
	width: 50%;
	padding: 7px 10px;
	margin: 5px 0 0 0;
	color: #7288a2;
	font-family: 'Verdana', 'Arial', sans-serif;
	font-size: 1rem;
	box-sizing: border-box;
	border-radius: 8px;
	background-color: #e1e1e1;
	border: none;
	transition: width 0.4s ease-in-out;
}
textarea:focus {
	width: 100%;
}

.signoff {
    padding: 0 0 0.5rem 24rem;
}

.tracklist {
  margin: 0;
  padding: 1rem 0 0 0;
  font-family: 'Verdana', 'Arial', sans-serif;
  background: #fff;
  color: #7288a2;
  display: flex;
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  padding: 0 4rem 0 4rem;
  width: 48rem;
}

.accordion .accordion-item {
  border-bottom: 1px solid #c1c1c1;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 15px solid #ffffff;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: .8em 0;
  color: #7288a2;			/* mid blue-grey */
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #ffffff;
  background-color: #7288a2;
}

.accordion button:hover::after,	/*this all does nothing?*/
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em .2em;	/*top right btm left: GNH altered left from 0 to .2em*/
}

.accordion button .duration {		/* duration is a GNH addition based on and replacing icon*/
  display: inline-block;
  float: right;			/*added this one to prevent overwriting track title on narrow view*/
}

.accordion button .icon {		/* icon will become redundant, replaced by duration*/
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
/*  width: 22px;			this defines the circle width but I'm using text*/
	/*BUT NEED to define the width somehow or narrowing the screen causes it to overwrite the track title*/
  height: 22px;			/*is this required?*/
/*    border: 1px solid;		this is the thickness of the circle – not wanted*/
/*    border-radius: 22px;		setting this to 0px makes it a square*/
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #ffffff;
  background-color: #c1c1c1;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 40em;			/*this controls the height of the video; was 9em*/
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {		/*this will become redundant*/
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}
