/* Botiga Dashboard Notice */
.botiga-dashboard-notice {
	display: none;
	position: relative;
	margin-bottom: 20px;

	&.show {
		display: block;
	}

	.dashicons-dismiss {
		cursor: pointer;
		position: absolute;
		z-index: 1;
		top: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 38px;
		height: 38px;
		font-size: 16px;
		line-height: 1em;
		color: #787c82;

		&:hover {
			color: #d63638;
		}
	}
}