

#account .article {
	.group {
		.group-item {
			list-style: none;
			width: 100%;
			background-color: #ffffff;
			border-radius: 1rem;
			overflow: hidden;

			@media (min-width:576px) { width: 48%; }
			@media (min-width:1200px) { width: 32%; }

			h6 {
				font-size: 1.125rem;
				font-weight: 600;
			}
			p { 
				font-size: .875rem;
				line-height: 1.25;
			}
		}
	}

	.bttn {
		display: block;
		width: 100%;
		max-width: 280px;
		height: 54px;
		text-align: center;
		color: #FFFFFF;
		text-decoration: none;
		font-weight: 500;
		line-height: 1.75;
		padding-top: .75rem;
		padding-bottom: .75rem;
		border: none;
		border-radius: 3rem;

		background: #ED0F1B;
		box-shadow: 0px 6px 20px rgba(237, 15, 27, 0.5);

		@media (min-width:576px) and (max-width:767px) { font-size: .875rem }

		&:hover {
			background: #e31a2d;
			box-shadow: 0px 6px 10px rgba(237, 15, 27, 0.25);
		}

		&:active {
			box-shadow: none;
		}
	}

	.max-width-400 { max-width: 400px; }
}