/**
 * Collapse Quote
 * An extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2022, Thorsten Ahlers
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */

.imcger-quote {
	position: relative;
}

.imcger-quote-text {
  transition: 0.5s ease height;
}

.imcger-quote-shadow {
	display: none;
	position: absolute;
	width: 100%;
	bottom: 0px;
}

.imcger-quote-togglebutton {
	cursor: pointer;
	display: none;
	position: relative;
	text-align: center;
	z-index: 1;
  width: calc(100% + 32px);
  padding: 8px !important;
}

.content blockquote cite, .content .uncited::before {
  position: relative;
  z-index: 1;
}

.content blockquote {
  border-width: 1px;
  background-color: #EBEADD;
  border-color: #DBDBCE;
  overflow: hidden;
}
.dark .content blockquote { 
  color: #1f2937;
}