

.box-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;

	font-family: Avenir, Roboto, Helvetica, san-serif;
	font-size: 80%;
}

.search-placeholder {
  min-width: 295px;
  	height: 2px;
	margin-bottom: 1px;
	margin-left: 5px;
	margin-right: 5px;
  background-color: none;
  flex: 23%;
  
  /*flex-basis: 150px;*/
  flex-grow: 1;
}


.box-outer{
	position: relative;
	display: flex;
	flex-flow: column;
	border:1px solid #bbbbbb;
	padding: 0;
	/*border-radius: 1px;*/
	flex:23%;
	/*max-width: 360px;*/
	min-width: 315px;
	/*max-height: 202.5px;*/
	margin-bottom: 20px;
	margin-left: 6px;
	margin-right: 6px;
	flex-grow: 1;
}
	


h4{
	font-size: 12px;
	color: #606060;

}
.box-image{
	position: relative;


/*max-width: 290px;*/
/*height: auto;*/
background-color: #FFF;
width: 100%;
height: auto;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-clip: border-box;
}
.make-button{
	position: absolute;
	top: 7px;
	left: 7px;
	/*background-color: #A10B00;*/
	color: white;
	padding: 2px 6px;
	border-radius: 2px;
}
.time-button{
	font-size: 11px;
	position: absolute;
	bottom: 7px;
	right: 7px;
	background-color: #101010;
	color: white;
	padding: 3px 6px;
	border-radius: 2px;
}
.box-image > img{
	width: 100%;
	object-fit: cover;
	overflow-y: hidden;
	max-height: 202.5px;
	}

.box-text{
	flex:80%;
	/*border:1px solid black;*/
	overflow-x: hidden;
	padding-right: 24px;
}

.comment-box{
	flex:80%;
	/*border:1px solid black;*/
	overflow-x: hidden;
	padding-right: 24px;
}
	
.box-bottom{
	display: flex;
}
.box-text > h3, h4{
	margin: 12px 0 4px 0;
}
.box-text-top{
	/*vertical-align: text-bottom;*/
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box-text-top > h3{
	margin: 12px 0 4px 0;
	text-transform: uppercase;
	font-family: Roboto, Arial, sans-serif;
	text-shadow: 2px 2px #bbb;

}
.box-text-avatar{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.box-text-bottom{
	font-family: Source Sans Pro, Ariel, Helvetica, Neue, Helvetica, sans-serif;
	display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*flex-wrap: wrap;*/
	/*white-space: nowrap;*/
	text-overflow: ellipsis;
	overflow: hidden;
	/*overflow-x: hidden;*/
	/*max-height: 30px;*/
	font-size: 1.27em;
	font-weight: 550;
	height: 3em; 
}
.avatar-details{
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin: 4px 0 2px 0;
	font-weight: 550;
	color: #606060;
}
.box-avatar{
	height: 36px;
	margin-top: 12px;
	margin-right: 12px;
	/*border:1px solid black;*/
}
.box-avatar-2{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	background-color: transparent;
}

#tabs {
  overflow: hidden;
  /*width: 100%;*/
  margin: 0;
  padding-right: 6px;
  padding-left: 6px;
  list-style: none;
}

#tabs li {
  float: left;
  margin: 0 .5em 0 0;
}

#tabs a {
  position: relative;
  background: #ddd;
  background-image: linear-gradient(to bottom, #fff, #ddd);
  padding: .2em 2.5em;
  float: left;
  text-decoration: none;
  color: #030303;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
  border-radius: 5px 0 0 0;
  box-shadow: 0 2px 2px rgba(0,0,0,.4);
}

/*Mobile Settings*/
@media screen and (max-width: 400px) {
  #tabs a {padding: .1em 3.5em;}
}
/*Folder Tabs*/
/*********************/
#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {
  background: #fff;
}

#tabs a:focus {
  outline: 0;
}

#tabs a::after {
  content:'';
  position:absolute;
  z-index: 1;
  top: 0;
  right: -.5em;
  bottom: 0;
  width: 1em;
  background: #ddd;
  background-image: linear-gradient(to bottom, #fff, #ddd);
  box-shadow: 2px 2px 2px rgba(0,0,0,.4);
  transform: skew(10deg);
  border-radius: 0 5px 0 0;
}

#tabs #current a,
#tabs #current a::after {
  background: #fff;
  z-index: 3;
}

#content {
  background: #fff;
  padding: 2em;
  height: 220px;
  position: relative;
  z-index: 2;
  border-radius: 0 5px 5px 5px;
  box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}
.Bearish{
	background-color: #A10B00;
}
.Bullish{
	background-color: #0b8257;
}
.Other{
	background-color: #101010;
}