// =================================================================
// Profile Default Format Settings
// =================================================================

// Default Format Profile Photo Size
//
// Adjusts the size of the default profile photo.
//
// Styleguide Profiles.Default Format.Photo Size
//
// Access: Public
//
// Since: 2.0.0

$profile-photo-default-size:               50px;

// Default Format Profile Border
//
// Controls the style of border used on profile callouts.
// By default, this applies to the basic and default formats only.
//
// Styleguide Profiles.Default Format.Profile Border
//
// Access: Public
//
// Since: 1.0.0

$border-profiles:                          $border !default;

// =================================================================
// Profile Default Format Styles
// =================================================================

// Styles the default profile format.
//
// Styleguide Components.Profiles Default Format.profile-format-default
//
// Access: Public
//
// Since: 2.0.0

.profile-format-default {
	border-top: var(--profile-border, var(--bu-border, #{$border-profiles}));
}

// Styles a default profile item.
//
// Styleguide Components.Profiles Default Format.profile-item-default
//
// Access: Public
//
// Since: 2.0.0

.profile-item-default {
	border-bottom: var(--profile-border, var(--bu-border, #{$border-profiles}));
	margin-bottom: 0;
	min-height: 100px;
	padding: $padding ( $profile-photo-default-size + $margin-small ) $padding 0;
}

// Styles a default profile photo.
//
// Styleguide Components.Profiles Default Format.profile-photo-default
//
// Access: Public
//
// Since: 2.0.0

.profile-photo-default {
	height: var(--profile-photo-default-size, #{$profile-photo-default-size});
	overflow: hidden;
	position: absolute;
	right: 0;
	width: var(--profile-photo-default-size, #{$profile-photo-default-size});
}
