// BP activity comment entries in response to activity loop entries
// @version 3.0.0
.buddypress-wrap {

	.activity-comments {
		clear: both;
		margin: 0 0 0 70px;
		overflow: hidden;
		position: relative;
		width: auto;

		@include medium-max(){
			margin-left: 40px;
		}

		ul {
			clear: both;
			list-style: none;
			margin: $marg-sml 0 0;
			padding: 0;

			li {
				border-top: 1px solid $bp-border-color;
				border-bottom: 0;
				padding: $pad-med 0 0;
				margin: $marg-lrg 0;

				ul {
					// indent any nested comments - comment to a comment
					margin-left: 5%;
				}
			}

			li:first-child {
				border-top: 0;
			}

			li:last-child {
				margin-bottom: 0;
			}
		} // close ul

		div.acomment-avatar {
			width: auto;
			box-shadow: none;

			img {
				border-width: 1px;
				float: left;
				height: 25px;
				max-width: none;
				width: 25px;
			}
		}

		.acomment-meta,
		.acomment-content p {

			@include font-size(13);
		}

		.acomment-meta {
			color: $dark-grey;
			overflow: hidden;
		}

		.acomment-content {
			border: solid $light-grey;
			border-width: 0 0 0 3px;
			margin: $marg-med 0 0 40px;
			padding-left: $marg-med;
			border-radius: 0;

			p {
				margin-bottom: 0.5em;
			}
		}

		.acomment-options {
			float: left;
			margin: $marg-sml 0 $marg-sml $marg-lrg;

			a {
				color: $light-text;

				@include font-size(14);

				&:focus,
				&:hover {
					color: inherit;
				}
			}

		} // close .acomment-options

		.activity-meta.action {
			background: none;
			margin-top: $marg-med;
			margin-left: 35px;

			// if button element in use
			button {

				@include font-size(14);
				font-weight: 400;
				text-transform: none;
			}

			.acomment-delete:not(:hover){
				background-color: #a3a3a3;
			}
		}

		.show-all {

			button {

				@include font-size(14);
				text-decoration: underline;
				padding-left: $pad-sml;

				span {
					text-decoration: none;
				}

				&:hover,
				&:focus {

					span {
						color: $blue;
					}
				}
			}
		}

	} // close .activity-comments

	// Activity li.mini Comments

	.mini {

		.activity-comments {
			clear: both;
			margin-top: 0;
		}

	}

} // close .buddypress-wrap

// Single Activity Comment Entry View
body.activity-permalink {

	.activity-comments {
		background: none;
		width: auto;

		> ul {
			padding: 0 $pad-sml 0 $pad-med;
		}

		ul li > ul {
			margin-top: $marg-sml;
		}

	}

} //close .activity-permalink
