/**
  * Search input
  */

/* #query {
	position: absolute;
	top: 0;
	left: 0;
} */

#coaches-display__search--types-dropdown-content {
	position: absolute;
	top: 50px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: #fff;
	border-radius: 0 0 3px 3px;
	border: 1px solid #00a651;
	/* padding: 10px 15px; */
}

.coaches-display__search--types-dropdown-item {
	margin-left: 10px;
	cursor: pointer;
}

#coaches-display__search--types-dropdown-list-business,
#coaches-display__search--types-dropdown-list-individual {
	width: 100%;
}

.ais-RefinementList-list {
	padding-left: 10px;
}

.ais-RefinementList-item {
	margin: 0;
	padding: 3px 7px;
	list-style: none;
	color: #58595b;
}

.ais-RefinementList-item:hover {
	background-color: #00a651;
	color: #fff;
}

.ais-RefinementList-label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	cursor: pointer;
}

.ais-RefinementList-checkbox {
	display: none;
}

.ais-RefinementList-labelText {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1rem;
}

li.ais-RefinementList-item--selected .ais-RefinementList-labelText {
	font-weight: 700;
	color: #00a651;
}

li.ais-RefinementList-item--selected:hover .ais-RefinementList-labelText {
	color: #fff;
}

.ais-RefinementList-count {
	font-size: 0.7rem;
	font-weight: 400;
}

/* selected types labels */
#selected-item-container .selected-item-class {
	font-size: 14px;
	line-height: 16px;
}

#selected-item-container .selected-item-class::before {
	content: 'X';
	border-right: solid 1px #7b7878;
	padding-right: 5px;
	margin-right: 5px;
}

/**
  * Coaches carousel
  */

.home_featured_listings h2 {
	margin: 0 0 0.5em !important;
}

#coaches-carousel {
	margin: 0;
	padding: 0;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.carousel-btns > img {
	position: absolute;
	top: 50%;
	width: 42px;
	height: 70px;
	-webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(5px 5px 5px #222);
}

.carousel-btns-prev > img {
	left: -75px;
}

.carousel-btns-next > img {
	right: -75px;
}

.coaches-display__results {
	justify-content: space-between;
	flex-wrap: nowrap;
	overflow-x: hidden;
	margin-left: 0;
	width: 300%;
}

/**
  * Coach card
  */

.coaches-display__card {
	margin: 20px;
	padding: 1.5em 1em;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: center;
	width: calc(33.33% - 40px);
	max-width: calc(33.33% - 40px);
	min-width: calc(33.33% - 40px);
	transition: all 0.3s ease-in-out;
	border-radius: 12px;
}

.coaches-display__card:hover {
	transform: scale(1.02);
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.4);
}

.coaches-display__card:hover,
.coaches-display__card:focus {
	text-decoration: none;
}

.coaches-display__card--inner {
	display: grid;
	grid-template-columns: auto calc(100% - 100px) auto;
	grid-template-rows: auto 90px 80px 70px;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	align-items: center;
}

.coaches-display__card--section-favorite {
	grid-area: 1 / 1 / 2 / 2;
	display: flex;
	width: 50px;
	justify-content: flex-start;
	align-items: flex-start;
	align-self: start;
	font-size: 30px;
	color: #00a651;
}
.coaches-display__card--section-avatar {
	grid-area: 1 / 2 / 2 / 3;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}
.coaches-display__card--section-price {
	grid-area: 1 / 3 / 2 / 4;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	align-self: start;
}
.coaches-display__card--price {
	font-size: 20px;
	background-color: #00a651;
	color: #fff;
	margin: 5px 0 0;
	height: 30px;
	width: 50px;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.coaches-display__card--section-title {
	grid-area: 2 / 1 / 3 / 4;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
}
.coaches-display__card--section-types {
	grid-area: 3 / 1 / 4 / 4;
}
.coaches-display__card--section-book {
	grid-area: 4 / 1 / 5 / 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.coaches-display__card--favorite {
	font-size: 25px;
	color: #00a651;
}

.coaches-display__card--image {
	border-radius: 50%;
	display: block;
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.coaches-display__card--name {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #231f20;
	margin: 5px;
}

.coaches-display__card--location {
	font-size: 14px;
	color: #8b93a0;
	margin: 0 0 2px;
}

.coaches-display__card--note {
	font-size: 16px;
	color: #f6d404;
	margin: 0 0 2px;
}

.coaches-display__card--note > i {
	margin-right: 5px;
}

.coaches-display__card--note > i:last-child {
	margin-right: 0;
}

.coaches-display__card--section-types {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.coaches-display__card--section-types > span {
	display: inline-block;
	vertical-align: middle;
	padding: 3px 12px;
	border-radius: 13px;
	background: #e6e7ee;
	font-size: 14px;
	line-height: normal;
	font-weight: 600;
	color: #231f20;
	margin: 0px 2px 5px;
}

.coaches-display__card--freebooking-btn {
	min-width: 170px;
	padding: 10px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 60px;
	background-color: #00a651;
	color: #fff;
}

.coaches-display__card--freebooking-btn:hover,
.coaches-display__card--freebooking-btn:focus {
	background-color: #26b44e;
	color: #fff;
	text-decoration: none;
}

.home_featured_listings .owl-nav {
	-webkit-text-size-adjust: 100%;
    --button-shadow: -6px -6px 8px #00000008,5px 5px 8px #00000012;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #4D4D4D;
    box-sizing: border-box;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    margin-top: 0;
}

.home_featured_listings .owl-prev,
.home_featured_listings .owl-next {
-webkit-text-size-adjust: 100%;
--button-shadow: -6px -6px 8px #00000008,5px 5px 8px #00000012;
-webkit-tap-highlight-color: transparent;
box-sizing: border-box;
overflow: visible;
text-transform: none;
-webkit-appearance: button;
user-select: none;
margin: 5px;
display: inline-block;
cursor: pointer;
border-radius: 3px;
background: 0 0;
color: inherit;
border: none;
padding: 0!important;
font: inherit;
}

.home_featured_listings .owl-dots {
	-webkit-text-size-adjust: 100%;
    --button-shadow: -6px -6px 8px #00000008,5px 5px 8px #00000012;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #4D4D4D;
    box-sizing: border-box;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.home_featured_listings .owl-dot {
	-webkit-text-size-adjust: 100%;
    --button-shadow: -6px -6px 8px #00000008,5px 5px 8px #00000012;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    cursor: pointer;
    user-select: none;
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
    display: inline-block;
    zoom: 1;
}

.home_featured_listings .owl-dot span {
	-webkit-text-size-adjust: 100%;
    --button-shadow: -6px -6px 8px #00000008,5px 5px 8px #00000012;
    -webkit-tap-highlight-color: transparent;
    text-transform: none;
    cursor: pointer;
    user-select: none;
    color: inherit;
    font: inherit;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    background: #d6d6d6;
}

.home_featured_listings .owl-dot.active span {
	background: #42dc5a;
}

/**
* Responsive
*/

@media (max-width: 767px) {
	.coaches-display__results {
		box-sizing: border-box;
		width: auto;
	}

	.coaches-display__card {
		width: calc(100% - 40px);
		min-width: calc(100% - 40px);
		max-width: calc(100% - 40px);
	}

	.coaches-display__card--section-avatar {
		width: 100%;
		height: 200px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
	}

	.coaches-display__card--image {
		width: 190px;
		height: 190px;
	}

	.coaches-display__card--section-types .badge.rounded-pill {
		font-size: 12px;
		padding: 0.2rem 0.5rem 0.3rem;
	}
}

@media (min-width: 768px) and (max-width: 1299px) {
	.coaches-display__results {
		justify-content: space-between;
		flex-wrap: nowrap;
		overflow-x: hidden;
		margin-left: 0;
		width: 200%;
	}

	.coaches-display__card {
		width: calc(50% - 40px);
		min-width: calc(50% - 40px);
		max-width: calc(50% - 40px);
	}

	.coaches-display__card--section-types .badge.rounded-pill {
		font-size: 12px;
		padding: 0.2rem 0.5rem 0.3rem;
	}

	.carousel-btns {
		display: none;
	}
}


