body {
	background-color: #d9e1e3;
	font-family: 'montserrat';
	color: #252525;
}

.grey {
	color: #a1a2a5;
}

.bb-grey-shadow {
	box-shadow: 0 4px 2px -2px #a1a2a5;
}

/* NAVBAR */
#mainNavBar {
	z-index: 1000;
}

#mainNavBar::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	bottom: -2px;
	left: 0;
	background-image: linear-gradient(to right, #2c79b2, #38a3c6);
	background-position: 0 0; 
}

.navbar .navbar-brand {
	display: block;
	padding: 0;
	width: 150px;
}

#mainNavBar.navbar .nav-link {
	text-transform: uppercase;
	font-size: 0.8rem;
	color: #252525;
}

#mainNavBar.navbar .active .nav-link {
	font-weight: 600;
	color: #0e70bc;
}

/* END NAVBAR */

/* LEFT MENU */
#leftMenu {
	border: 1px solid #d6d8dc;
}

.profilSection {
	border-left: 4px solid #2c79b2;
	position: relative;
}

.profileParameters, .profileParameters:hover {
	position: absolute;
	top: 4px;
	right: 6px;
	color: #7f7f7f;
}

.profilePicture img {
	display: flex;
	border: 1px solid #f0f4f6;
	border-radius: 100% 100% 100% 100%;
}

.userName {
	text-transform: uppercase;
	color: #0e70bc;
	font-size: 1.5rem;
	font-weight: 400;
}

.linksSection, .supportSection {
	border-top: 1px solid #d6d8dc;
	color: #3f3f3f;
}

.linksSection svg, .supportSection svg {
	color: #7f7f7f;
}
/* END LEFT MENU */

.content {
	padding-top: 100px;
}

.contentHeader {
	color: #fff;
	position: relative;
}

.contentHeader > div::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-image: linear-gradient(to right, #2c79b2, #38a3c6);
	background-position: 0 0; 
}

.contentHeader h3, .contentHeader a {
	line-height: 3rem;
	color: #fff;
	text-transform: uppercase;
}

.contentHeader h3 {
	font-size: 1.2rem;
	font-weight: 400;
}

.contentHeader a {
	font-size: 0.8rem;
	text-decoration: underline;
	font-weight: 200;
}

.messageRow {
	border-bottom: 1px solid #a1a2a5;
	border-right: 1px solid #a1a2a5;
	border-left: 1px solid #a1a2a5;
	font-weight: 500;
	display: flex;
	position: relative;
}

.messageRow > div:first-child {
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	top: 0;
	left: -1px;
	background-color: #2c79b2;
}

.messageRow.read {
	border-left: 1px solid #a1a2a5;
	background-color: #f0f4f6;
	font-weight: 400;
}

.messageRow.read > div:first-child {
	display: none;
}

.batchRow {
	display: flex;
	border-left: 1px solid #a1a2a5;
	border-right: 1px solid #a1a2a5;
	border-bottom: 1px solid #a1a2a5;
	line-height: 3rem;
}

.batchRow p {
	margin: 0;
}

.batchRow .product {
	border: 1px solid #a1a2a5;
	border-left: 2px solid #2c79b2;
}

.batchRow button {
	border-radius: 50px;
	padding: 0.5rem 1rem;
	line-height: 1rem;
	transition: all 0.3s;
	border: 1px solid #1174be;
}

.batchRow button.collapsed:hover, .batchRow button {
	background-color: transparent;
	color: #252525;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}

.batchRow button.collapsed {
	background-color: #1174be;
	color: #fff;

}

.productDetail {
	background-color: #f0f4f6;
	border: 2px solid #a1a2a5;
}

.productDetail h3 {
	font-weight: 400;
	color: #4d8cca;
}

.productDetail img {
	border: 1px solid #e1e5e8;
}

.serviceOffering {
	position: relative;
	border: 1px solid #e1e5e8;
	overflow: hidden;
	
}

.serviceOffering > div::after {
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #2c79b2;
}

.serviceOffering h4 {
	font-weight: 400;
}

.serviceOffering p {
	font-size: 0.8rem;
	color: #6d6f71;
}