/*************
NAVBAR ADJUSTMENTS (may need to be folded into the main sales css)
**************/
.mainnav .dropdown-toggle::after {
	content: '';
	display: none;
}

.mainnav .dropdown-item {
	font-weight: bold;
	font-size: 0.9rem;
}

	.mainnav .dropdown-item svg {
		fill: var(--dark);
		opacity: 0.65;
		margin-right: 0.25rem;
	}

	.mainnav .dropdown-item:hover {
		background: none;
		color: var(--accent02)
	}

.dropdown-divider {
	background: var(--tertiary-tint-03);
	width: 100%;
	max-width: 100%;
}

/*************
CATALOG LIGHT CARDS
**************/
/*all horse cards*/
.catalog-horse-card .ratio {
  overflow: hidden;
}

.catalog-horse-card img {
  transition: transform 0.6s cubic-bezier(0.11, 0, 0.5, 0);
}

.catalog-horse-card img:hover,
.catalog-horse-card-out img:hover {
  transform: scale(1.05);
}

.catalog-horse-card .overlay {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 2;
	text-align: right;
}

	.catalog-horse-card .overlay div {
		max-width: 50px;
	}
	
	.catalog-horse-card .horse-action {
		border-radius: 100%;
		background: var(--light);
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

/* outs */
.catalog-horse-card-out img {
	filter: grayscale(1);
	opacity: 0.5;
	transition: transform 0.6s cubic-bezier(0.11, 0, 0.5, 0);
}

.catalog-horse-card-out {
	color: var(--gray);
	text-decoration: line-through;
}

/*************
SEARCH AND FILTER ON CATALOG LIGHT
**************/
.catalog-filter-container {
	/*border: 1px solid var(--tertiary-tint-01);*/
}

.catalog-namesearch {
	border-radius: 50px;
}

	.catalog-namesearch .input-group-text {
		background: var(--light);
		border-radius: 50px;
		border: 0;
		border: 1px solid var(--table-border);
	}
	
	.catalog-namesearch .form-control {
		border: 0;
		font-weight: normal;
		font-size: 1rem;
		padding: 1rem 0.5rem;
		border-radius: 0px 50px 50px 0px!important;
		border-top: 1px solid var(--table-border);
		border-bottom: 1px solid var(--table-border);
		border-right: 1px solid var(--table-border);
	}
	
		.catalog-namesearch .form-control::placeholder {
			font-weight: normal;
			font-size: 1rem;
		}
		
		.catalog-namesearch .form-control:focus::placeholder {
			color: transparent;
		}

.catalog-search-filter {

}

/*sets the filters to scroll sideways if needed*/
.catalog-filters-scroll {
	display: flex;
	overflow: auto;
	column-gap: 15px;
	white-space: nowrap;
	margin: 0 auto;
	padding: 0.75rem;
	scrollbar-width: thin;
	scrollbar-color: var(--tertiary-tint-02) var(--tertiary-tint-03);
}

	.catalog-filters-scroll .catalog-filter {
		min-width: 175px;
	}
	
/*************
CATALOG LIGHT HORSE PROFILE STYLES
**************/
/* the giant number behind the hip*/
.hipno-accent {
	color: var(--accent01);
	font-family: Quincy;
	letter-spacing: -2rem;
	font-size: 26rem;
	line-height: 20rem;
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	z-index: -1
}

.horseprofile-header {
	margin-top: 170px;
	position: relative;
	min-height: 50vh;
}

	.horseprofile-header .horseprofile-intro {
		display: flex; 
		flex-direction: column; 
		justify-content: space-between;
	}
	
/***************************
CATALOG LIGHT - BROWSE MENU
****************************/
.browse-nav {
	position: fixed;
	left: 0;
	top: 40vh;
	z-index: 1000;
	display: flex;
	flex-direction: column!important;
}

	.browse-nav .btn {
		border-radius: 0;
		font-size: 0.55rem;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		height: 70px;
		width: 70px;
		margin: 0;
		border: 0;
		padding: 0;
		color: rgba(255,255,255,0.85);
	}
	
		.browse-nav .btn:hover {
			color: var(--light);
		}
	
		.browse-nav .btn.prev {
			border-bottom: 1px solid rgba(255,255,255,0.5);
		}
		
		.browse-nav .btn.next {
			border-top: 1px solid rgba(255,255,255,0.5);
		}
	
	.browse-nav .btn svg {
		width: 20px;
		display: block;
		margin: 0 auto 3px auto;
		color: rgba(255,255,255,0.85);
	}
	
		.browse-nav .btn.active svg {
			color: rgba(255,255,255,1);
		}
	
@media only screen and (max-width: 1080px) {
	.browse-nav {
		display: flex;
		flex-direction: row!important;
		top: auto!important;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100%;
		align-items:center;
		justify-content: space-between;
		background: var(--primary);
		border-top: 1px solid rgba(255,255,255,0.35);
	}
	
	.browse-nav .btn {
		font-size: 0.7rem!important;
		border: 0;
	}
	
	.browse-nav .btn.prev {
		border: 0;
		border-right: 1px solid rgba(255,255,255,0.35);
	}
	
	.browse-nav .btn.next {
		border: 0;
		border-left: 1px solid rgba(255,255,255,0.35);
	}
}