// PANELS
.panel {
	box-shadow:0 1px 2px rgba(0,0,0,0.2);
		.panel-heading {
			@include background-image(linear-gradient(#f9f9f9 0, #e0e0e0 100%));
			margin:0;
			h3,
			h4 {
				margin:0;
			}

			&.large-heading {

				@extend .h3;

				margin:0;

			}

			.btn-group {

				float:right;

				> .btn:first-child,.btn {

					border-radius:5px;
					margin-left:3px;

				}
			
			}

		}

		.panel-footer {
			@extend .text-right;
			p {
				text-align:left;
			}
		}

}