/* Css Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, submit, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: top;
}
ol, ul {
	list-style: none;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* close Css Reset */

img {
  max-width: 100%;
  height: auto;
}

.collapsible {
  color: white;
  cursor: pointer;
  padding: 8px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: bold;
  background-color: #5c60ff;
}

.active, .collapsible:hover {
  background-color: #5c60ff;
}

.content {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  padding: 0 40px;
  max-height: 0;
  color: white;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
		
.clickbait {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	color: #E6E6FA;
}

.comment {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: bold;
  padding: 0px 0px 40px 40px;
  max-height: 0;
  color: white;
}

.footer {
	font-family: Roboto, sans-serif;
	font-size: 12px;
	font-weight:normal;
	line-height: 15px;
	color: white;
	padding-top: 30px;
	text-align: right;
	position: fixed;
    bottom: 0;
    width: 100%;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #DCDCDC;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: aqua;
  background-color: transparent;
  /* text-decoration: underline; */
}

a:active {
  color: yellow;
  background-color: transparent;
  /* text-decoration: underline; */
}