.notification-loader {
	border: 4px solid #f3f3f3;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 40px;
	height: 40px;
	-webkit-animation: spin 1s linear infinite; /* Safari */
	animation: spin 1s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@font-face {
	font-family: 'Helvetica Neue LT Std';
	src:
			url('/_ui/responsive/ccl/assets/fonts/HelveticaNeueLTStd-Bd.woff')
			format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Helvetica Neue LT Std';
	src:
			url('/_ui/responsive/ccl/assets/fonts/HelveticaNeueLTStd-Roman.woff')
			format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

body {
	font-family: 'Helvetica Neue', 'Helvetica Neue LT Std', 'Helvetica',
	Arial, sans-serif;
	background-color: #ffffff;
}

.notification-container {
	/* padding: 0 80px 80px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; */
	width: 90%;
}

.c-notification-heading {
	padding-top: 40px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e9ecef;
	padding-bottom: 30px;
	width: 90%;
}

.notifications-page-title {
	font-size: 48px;
	color: #10559a;
	font-weight: 900;
	font-stretch: condensed;
	font-family: TempoStd, Arial, sans-serif;
	text-transform: uppercase;
	margin-top: 0;
}

.notification-wrap .notification-section-heading {
	font-weight: 700;
	font-size: 18px;
	padding: 15px 20px 5px;
}

.notification-wrap .notification-item {
	display: flex;
	padding: 10px 0 0 5px;
	position: relative;
	align-items: flex-end;
}

.notification-wrap .notification-action{
	flex: 1;
	display: flex;
	cursor: pointer;
}

.notification-wrap .notification-submenu{
	position: relative;
	right: 0;
	bottom: 15px;
	z-index: 10;
	width: 20px;
	text-align: right;
	visibility: visible;
}
.notification-wrap .notification-submenu a{
	display: block;
}
@media(max-width: 1200px){
	.notification-wrap .notification-submenu {
		right: 0;
	}
}

@media(max-width: 720px){
	.notification-wrap .notification-submenu{
		width: 25px;
		right: -10px;
		text-align: center;
	}
}

.notification-wrap .notification-item .notification-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(16, 84, 155, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
}

.notification-wrap .notification-item .notification-icon img {
	width: 25px;
	height: 25px;
}

.notification-wrap .notification-item .notification-content {
	padding-left: 18px;
	flex: 1;
}

.notification-wrap .notification-item .notification-content .submenu-div {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.notification-wrap .notification-item .notification-content .submenu-div a.notification-submenu-href {
	width: 25px;
	height: 16px;
	display: flex;
	justify-content: flex-end;
	cursor: default;
	padding: 0;
}

.notification-wrap .notification-item .notification-content .submenu-div a.notification-submenu-href img {
	margin-right: 0;
}

.notification-wrap .notification-item .notification-content .notification-category-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notification-wrap .notification-item .notification-content .notification-category-wrap .notification-category {
	font-weight: 700;
	font-size: 12px;
	margin-bottom: 0;
	margin-top: 0;
	text-transform: uppercase;
}

.notification-wrap .notification-item .notification-content .notification-category-wrap .notification-time {
	font-weight: 400;
	font-size: 14px;
	color: #595959;
	margin-bottom: 0;
	margin-top: 0;
	margin-right: -20px;
}

.notification-wrap .notification-item .notification-content .notification-title {
	margin-bottom: 0;
	margin-top: 0;
}

.notification-wrap .notification-item.not-read .notification-title a {
	font-size: 16px;
	color: #10559a;
	font-weight: 700;
	padding: 5px 0;
	text-decoration: none;
}

.notification-wrap .notification-item .notification-title a {
	color: #000;
	font-weight: 500;
	text-decoration: none;
}

.notification-wrap .notification-item .notification-content .notification-description {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	margin-right: 100px;
	margin-top: 2px;
	color: #595959;
}

.notification-wrap .notification-item:before {
	content: '';
	margin-right: 10px;
	width: 2px;
	height: 2px;
	margin-top: 22px;
	border: 4px solid #fff;
	border-radius: 50%;
}

.notification-wrap .not-read:before {
	content: '';
	width: 2px;
	height: 2px;
	margin-top: 22px;
	border-radius: 50%;
	border: 4px solid #e60000;
	background-color: #e60000;
	align-self: flex-start;
}

.notification-wrap .notification-section-footer {
	display: flex;
	justify-content: space-between;
}

.notification-wrap .notification-section-footer .view-all-notification,
.notification-wrap .notification-section-footer .communication-references
{
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #10559a;
}

.notification-wrap .popover {
	display: none;
	position: absolute;
	right: 20px !important;
	top: 0 !important;
	background: white;
	border: 1px solid #ececec;
	left: auto !important;
	width: 150px;
	box-shadow: 0 -1px 4px rgb(0 0 0 / 20%);
	border-radius: 2px;
	cursor: default;
}

.notification-wrap .popover.show {
	display: block;
	z-index: 98;
}

.notification-wrap .popover .submenu-option {
	padding: 10px;
	font-size: 14px;
	cursor: pointer;
	margin: 4px 4px;
	font-weight: 600;
}

.notification-wrap .popover .submenu-option:not(:last-child) {
	border-bottom: 1px solid #ececec;
}

.dropdown-divider {
	height: 0;
	margin: 0.5rem 0;
	overflow: hidden;
	border-top: 1px solid #e9ecef;
}

.notification-wrap .notification-item .notification-content .inbox-pill {
	display: inline-flex;
	background-color: #e60000;
	color: #fff;
	padding: 2px 10px 2px 10px;
	font-size: 12px;
	border-radius: 14.5px;
	margin-bottom: 5px;
	margin-top: 5px;
	align-items: center;
	font-weight: 600;
	min-height: 24px;
	line-height: 1.1 !important;
}

.notification-wrap .notification-item .notification-content .inbox-pill img {
	width: 12px;
	margin-right: 5px;
}

.notification-wrap .notification-item .notification-content .inbox-pill .info-icon {
	line-height: 0.5;
}
.sr-only-ariaText {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	top: auto;
	overflow: hidden;
}

.force-focus:focus-visible {
	outline-color: rgb(0, 181, 203);
	outline-style: solid;
	outline-width: 3px;
}

#notificationModal {
	display: none;
	position: fixed;
	z-index: 300;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

#notificationModal .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px 40px;
	border: 1px solid #888;
	width: 500px;
	position: relative;
}

#notificationModal.full-screen {
	padding: 0;
}

#notificationModal.full-screen .modal-content {
	width: 100%;
	height: 100%;
	border-radius: 0;
	padding: 0;
	box-sizing: border-box;
}

#notificationModal.full-screen .close {
	top: 30px;
	right: 30px;
}

#notificationModal .modal-heading {
	font-size: 24px;
	margin: 0;
	font-weight: 700;
}

#notificationModal h2.modal-title {
	font-family: TempoStd,Arial,sans-serif;
	text-transform: uppercase;
	font-size: 34px;
	font-weight: 900;
	font-stretch: condensed;
	line-height: .94;
	color: #10559a;
}

#notificationModal.full-screen h2.modal-title {
	padding: 20px;
}

#notificationModal .modal-header{
	justify-content: center;
}

#notificationModal .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 10px;
}

#notificationModal .close img {
	width: 30px;
	height: 30px;
}

#notificationModal .close:hover, .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#notificationModal iframe {
	border: none;
	margin-top: 50px;
}

#notificationModal .modal-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 40px;
}

.custom-btn {
	padding: 10px;
	border: none;
	border-radius: 4px;
	min-width: 130px;
	font-size: 14px;
	cursor: pointer;
}

.custom-btn-delete {
	background-color: #dc1125;
	color: #ffffff;
	margin-right: 15px;
}

.custom-btn-cancel {
	background-color: #fff;
	border: 1px solid grey;
}

.no-notifications-txt {
	width: 500px;
	font-size: 16px;
	margin-bottom: 30px;
}

a.back-to-carnival {
	font-size: 14px;
	background-color: #dc1125;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 4px;
	margin-top: 40px;
}

.button-redirect{
	font-family: 'Helvetica Neue', 'Helvetica Neue LT Std', 'Helvetica', Arial, sans-serif;
	display: block;
	border: 1px solid #555;
	cursor: pointer;
	padding: 10px 0;
	font-size: 13px;
	font-weight: 700;
	color: #000;
	text-align: center;
	background-color: transparent;
	border-radius: 5px;
	width: 120px;
}
.button-redirect:hover, .button-redirect:link, .button-redirect:visited{
	color: #000;
}

@media only screen and (max-width: 1024px) {
	.notification-wrap .notification-item {
		padding: 10px 0 0 0;
	}
	.c-notification-heading {
		padding-top: 16px;
		margin-bottom: 0;
		border-bottom: none;
		padding-bottom: 0;
	}
	.notifications-page-title {
		display: none;
	}
	.notification-container {
		padding: 0 !important;
		width: 100%;
	}
	.notification-wrap .notification-item .notification-content .submenu-div {
		align-items: center;
	}
	.notification-wrap .notification-item .notification-content {
		min-width: auto;
		width: 100%;
	}
	.notification-wrap .notification-item .notification-content .notification-description {
		margin-right: 20px;
		min-width: 90%;
		width: 90%;
	}
	.notification-wrap .notification-item .notification-icon {
		width: 48px;
		height: 48px;
	}
	.notification-wrap .notification-item .notification-icon img {
		width: 28px;
		height: 28px;
	}
	#notificationModal .modal-content {
		width: 80%;
	}
	#notificationModal h2.modal-title {
		font-size: 22px;
		margin-right: 50px !important;
		line-height: 1.2;
	}
	.no-notifications-txt {
		width: 80%;
	}

	.modal-actions .custom-btn {
		min-width: 100px;
	}
}
.visible-ada{
	visibility: visible;
}