.header,
.idea {
	display: flex;
}

.idea {
	border-bottom: 1px solid #ccc;
}

.rating,
.score {
	flex: 0 0 80px;
	width: 80px;
	height: 40px;
	text-align: center;
	padding: 0 5px;
}
.title {
	position: relative;
	flex: 1 1;
	padding-left: 10px;
	min-width: 200px;
}

.idea .rating,
.idea .score {
	position: relative;
	border-left: 1px solid black;
	line-height: 40px;
	font-size: 1.4rem;
	font-weight: bold;
}

.header .rating,
.header .score {
	border-left: 1px solid white;
	line-height: 40px;
	font-size: 0.8rem;
	background-color: black;
	color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.idea .title {
	border-left: 1px solid black;
	line-height: 40px;
}

.header .title {
	line-height: 40px;
	font-size: 0.8rem;
	background-color: black;
	color: white;
}

.title a {
	display: block;
	font-size: 1rem;
	white-space: nowrap;
	overflow: hidden;
	width: 98%;
	height: 100%;
	text-overflow: ellipsis;
	margin: 0;
	text-decoration: none;
	color: #000;
	font-weight: bold;
}
.idea .title:hover {
	background-color: #eee;
}
.title p {
	font-weight: normal;
	font-size: 0.8rem;
	white-space: nowrap;
	overflow: hidden;
	width: 98%;
	text-overflow: ellipsis;
	margin: 0;
}

.idea .rating:hover {
	cursor: pointer;
	background-color: #eeeeff;
}
.idea .rating.selected {
	background-color: #ccccff;
}

.title .note,
.rating .note {
	cursor: pointer;
	position: absolute;
	bottom: 1px;
	right: 1px;
	height: 10px;
	opacity: 0;
	transition: all .1s ease;
}
.title:hover .note,
.rating:hover .note,
.title .note.exists,
.rating .note.exists {
	opacity: .5;
}
.title:hover .note:hover,
.rating:hover .note:hover {
	opacity: 1;
	height: 14px;
}

@media (max-width: 768px) {
	.rating {
		display: none;
	}
}

@media (max-width: 992px) {
	.rating,
	.score {
		flex: 0 0 60px;
		width: 60px;
	}
}

/* Navbar Dropdown Menu */
.menu-image {
	width: 50px;
}

.menu {
  position: absolute;
  right: 0;
  width: 12.5rem;
  z-index: 1000;
}

.menu-item {
  color: #000000;
  text-decoration: none;
  background: transparent;
  border: none;
}

.menu-item:hover {
  color: #000000;
  text-decoration: none;
  background: transparent;
  border: none;
}

/*delete folder confirmation modal */
.folder-delete-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.folder-delete-modal .row {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/*delete idea confirmation modal */
.idea-delete-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.idea-delete-modal .row {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}
