/* Light green background for contact fields */
/* TODO: Color for #contactButtonsContainer is not correct yet */
.contactDetailsFields,
#contactButtonsContainer {
	background-color: var(--primary-extralight);
}

/* Square profile image with cover behavior to crop and fill the container */
.profileImage-styling {
	height: 6.25rem;
	/* 100px */
	width: 6.25rem;
	object-fit: cover;
}

.defaultLabelColor {
	background-color: var(--primary);
}

.description-wrapper {
	transition: max-height 0.3s ease;
	overflow: hidden;
}

.description-wrapper.expanded {
	max-height: none;
	overflow: visible;
}

.description-wrapper.collapsed {
	/* Control behavoir using js, here have to use px as unit */
	max-height: 150px;
	overflow: hidden;
	position: relative;
}

.responsive-logo-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.toggle-button {
	display: inline-flex;
	align-items: center;
	margin-top: 0.25rem;
	cursor: pointer;
	font-weight: 400;
	font-size: 1rem;
	color: var(--primary);
}

#orgWebsiteContactDetails {
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

@media (min-width: 992px) {
	.content-col {
		max-width: 65%;
	}
}

@media (max-width: 991px) {
	#organization-container {
		overflow: visible !important;
	}

	.organization-list-wrapper {
		height: auto !important;
	}

	#orgLabels {
		flex-wrap: wrap;
		overflow: hidden;
	}

	#orgLabels .badge {
		white-space: normal;
		text-align: start;
	}

	#back-to-search-under {
		width: 100%;
	}

	#orgBackgroundPictureContainer {
		display: flex;
		justify-content: center !important;
		margin-top: 2rem !important;
	}

	.logo-col {
		flex: 0 0 auto;
		margin-right: 1rem;
	}

	.content-col {
		flex: 1 1 auto;
		width: 100% !important;
		max-width: 100vw !important;
	}

	#orgLabels {
		width: 100% !important;
	}

	.main-content-wrapper {
		flex: 0 0 100%;
		max-width: 100% !important;
	}

	.full-width-mobile {
		width: 100% !important;
		max-width: 100vw !important;
	}
}
