/*Notification*/
.ant-notification {
	width: 33%;
}

.ant-notification a.ant-notification-notice-close:hover {
	text-decoration: none;
}

.ant-notification-notice-close {
	line-height: 1;
	top: 8px;
	right: 8px;
}

.ant-notification-notice-with-icon .ant-notification-notice-message {
	/*    font-size: 17px;
    */    line-height: 1.5;
	font-weight: 600;
	text-transform: capitalize;
	margin: 0 0 8px;
}

.ant-notification-notice-with-icon .ant-notification-notice-description {
	font-size: 1rem;
	margin-left: 0;
	color: #313233;
}

.ant-notification-notice {
	border-radius: 5px;
	padding: 12px 16px 16px 16px;
}

.ant-notification-notice-with-icon .anticon {
	display: none;
}

.snx-notification-error.ant-notification-notice {
	border: 1px #ff5500 solid;
	border-left-width: 8px;
	background: #fef0ef;
}

.snx-notification-error.ant-notification-notice .ant-notification-notice-message {
	color: #ff5500;
}
.snx-notification-error.ant-notification-notice .ant-notification-notice-description {
	color: #ff5500;
}
.snx-notification-warning.ant-notification-notice {
	border: 1px #fd9b1e solid;
	border-left-width: 8px;
	background: #fffaeb;

}

.snx-notification-warning.ant-notification-notice .ant-notification-notice-message {
	color: #fd9b1e;
}
.snx-notification-warning.ant-notification-notice .ant-notification-notice-description {
	color: #fd9b1e;
}
.snx-notification-info.ant-notification-notice {
	border: 1px #00a0e9 solid;
	border-left-width: 8px;
	background: #ecf6fd;
}

.snx-notification-info.ant-notification-notice .ant-notification-notice-message {
	color: #00a0e9;
}
.snx-notification-info.ant-notification-notice .ant-notification-notice-description {
	color: #00a0e9;
}
.snx-notification-success.ant-notification-notice {
	border: 1px #67ad36 solid;
	border-left-width: 8px;
	background: #ebf8f2;
}

.snx-notification-success.ant-notification-notice .ant-notification-notice-message {
	color: #67ad36;
}
.snx-notification-success.ant-notification-notice .ant-notification-notice-description {
	color: #67ad36;
}
/*tooltip*/
.ant-tooltip-inner {
	padding: 6px 16px 10px 16px;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 3px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
	font-size: 1rem;
	color: #979899;
}

.ant-tooltip-arrow, .ant-tooltip-arrow::after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;

}

.ant-tooltip-arrow {
	border-width: 5px;
}

.ant-tooltip-arrow:after {
	border-width: 4px;
	content: "";
}

.ant-tooltip-placement-top .ant-tooltip-arrow, .ant-tooltip-placement-topLeft .ant-tooltip-arrow, .ant-tooltip-placement-topRight .ant-tooltip-arrow {
	border-bottom-width: 0;
	border-top-color: hsla(0, 0%, 85%, .7);
	bottom: 3px;
}

.ant-tooltip-placement-top .ant-tooltip-arrow:after, .ant-tooltip-placement-topLeft .ant-tooltip-arrow:after, .ant-tooltip-placement-topRight .ant-tooltip-arrow:after {
	content: " ";
	bottom: 1px;
	margin-left: -4px;
	border-bottom-width: 0;
	border-top-color: #fff;
}

.ant-tooltip-placement-right .ant-tooltip-arrow, .ant-tooltip-placement-rightTop .ant-tooltip-arrow, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
	border-right-color: hsla(0, 0%, 85%, .7);
}

.ant-tooltip-placement-right .ant-tooltip-arrow:after, .ant-tooltip-placement-rightTop .ant-tooltip-arrow:after, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow:after {
	content: " ";
	left: 1px;
	bottom: -4px;
	border-left-width: 0;
	border-right-color: #fff;
}

.ant-tooltip-placement-left .ant-tooltip-arrow, .ant-tooltip-placement-leftTop .ant-tooltip-arrow, .ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
	border-left-color: hsla(0, 0%, 85%, .7);
}

.ant-tooltip-placement-bottom .ant-tooltip-arrow, .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow, .ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
	border-bottom-color: hsla(0, 0%, 85%, .7);
}

.ant-tooltip-placement-left .ant-tooltip-arrow:after, .ant-tooltip-placement-leftTop .ant-tooltip-arrow:after, .ant-tooltip-placement-leftBottom .ant-tooltip-arrow:after {
	content: " ";
	right: 1px;
	border-right-width: 0;
	border-left-color: #fff;
	bottom: -4px;
}

.ant-tooltip-placement-bottom .ant-tooltip-arrow:after, .ant-tooltip-placement-bottomLeft .ant-tooltip-arrow:after, .ant-tooltip-placement-bottomRight .ant-tooltip-arrow:after {
	content: " ";
	top: 1px;
	margin-left: -4px;
	border-top-width: 0;
	border-bottom-color: #fff;
}