.side {
	display:flex;
	height: 100%;
	width: 100%;
}

.side-container {
	width: 350px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	background: #E0E6FB;
	z-index: 3;
}

.sidebar-header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.sidebar-header-logo {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	margin-top: 70px;
	cursor: pointer;
}

.sidebar-title {
	color: #284FDA;
	font-size: 21px;
	font-weight: 700;
}

.sidebar-user-info {
	padding-right: calc(20px + 1.25rem);
	padding-left: calc(20px + 1.25rem);
	display: flex;
	flex-direction: column;
	flex: 1;
	width: 100%;
	justify-content: center;
}

.sidebar-user-info small {
	color: #8492A6;
	font-weight: 600;
}

.sidebar-user-name {
	font-weight: 700;
	font-size: 18px;
	color: #4A4A4A;
}

.sidebar-user-action {
	display: flex;
	align-items: center;
}

.sidebar-user-action div {
	display: flex;
	font-size:20px;
	font-weight: 700;
	align-items: center;
}

.sidebar-user-action div svg {
	width: 20px;
	margin-left: 5px;
}

.sidebar-user-action a {
	padding: 3px 10px;
	border-radius: 20px;
	background-color: white;
	font-size: 12px;
	margin-left: 10px;
	font-weight: 700;
}

.light-#284FDA {
	color: #284FDA;
}

.sidebar-sticky {
	margin: 20px 20px 0 20px;
}

.sidebar {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 350px;
	background-color: #E0E6FB;
}

.list-group-item.active {
	z-index: 2;
	color: #284FDA;
	background-color: #E0E6FB;
	border: none;
	margin-top: 25px !important;
}

a.side-nav-link.list-group-item.list-group-item-action.active:after {
	content: '';
	width: 7px;
	height: 100%;
	right: 0;
	background-color: #284FDA;
	position: absolute;
	border-radius: 20px;
}

.list-group-item-action:focus {
	color: #8492A6;
	border-right: none;
}

.list-group-item:hover {
	z-index: 2;
	color: #284FDA;
	background-color: #E0E6FB;
}

.list-group-item:focus {
	background-color: #E0E6FB;
}

.side-nav-link {
	height: 40px;
	display: flex;
	align-items: center;
	background-color: #E0E6FB;
	border: none;
	font-weight: 700;
	color: #8492A6;
	font-size: 20px;
	margin-top: 25px;
}

.side-nav-link-last {
	border-bottom-right-radius: 0;
}

.nav-link-span {
	margin-left: 1.25rem;
}

.side-nav-icon {
	width: 20px;
	height: 20px;
}

.enveloop-sticker {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #FF5630;
	position: relative;
	left: 50%;
	top: 55px;
	transform: translate(-50%, -25px);
}

.enquiry-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #EEF1FB;
	height: 130px;
}

.enquiry-box > div:first-child {
	padding-top: 15px;
}

.enquiry-box > div{
	color: #4A4A4A;
	font-weight: 600;
}

.sidebar-footer {
	margin-left: 40px;
	margin-right: 70px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	flex:1;
}

.sidebar-footer-mobile {
	display: none;
}

.copyright-msg {
	text-align: center;
	padding: 15px 0;
}
.light-blue {
	color: #284FDA;
}

body.has-overlay::after {
    content: "";
    display: block;
    position: fixed;
    padding: 100px 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
}

.campaign-header-mobile {
	display: none;
	height: 50px;
}

.campaign-header-mobile button svg {
	width: 20px;
	cursor: pointer;
	align-items: center;
}

.campaign-header-mobile img {
	margin: 15px;
}

.campaign-header-mobile div {
	display: flex;
	flex: 1;
	font-size: 20px;
	font-weight: 600;
	color: #284FDA;
}

.campaign-header-title {
	font-size: xx-large;
	font-weight: 700;
}

.navigation-mobile {
	display: none;
}

@media (max-width: 768px) {
	.sidebar-header-logo {
		display: none;
	}
	.sidebar-user-info {
		padding-right: calc(10px + 1.25rem);
		padding-left: calc(10px + 1.25rem);
		padding-top: 50px;
	}
	.side-container {
		width: 85%;
		margin-left: -85%;
		transition: 0.5s;
	}
	.sidebar-sticky {
		margin: 20px 10px 0 10px;
	}
	.sidebar-footer {
		display: none;
	}
	.sidebar-footer-mobile {
		display: flex;
		flex: 1;
		flex-direction: column;
		justify-content: flex-end;
		padding: 0 30px 20px 30px;
		font-size: 13px;
	}
	.side-nav-link {
		font-size: 15px;
	}
	.campaign-header-mobile {
		display: flex;
		width: max-content;
		align-items: center;
		padding-top: 20px;
		cursor: pointer;
	}
	
	.campaign-header-title {
		display: block;
	}
}