.container.static-page {
  	padding: 0;
}

.coaches-display__wrapper {
	font-family: 'Open Sans', sans-serif;
}
.coaches-display__figures {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	overflow: hidden;
	background: #f5f6fa;
}

.coaches-display__figures--figure {
	width: 1060px;
	height: 1630px;
	border-top: 610px solid #1aba6a;
	background: #42c464;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-left: -500px;
}

aside.hidden {
	display: none;
}

#main {
	margin-top: 60px;
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
	padding: 0;
}

/**
 * Header and buttons
 */

.coaches-display__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.coaches-display__buttons > h1 {
	display: none;
}

#coaches-display__filter-button {
	background: #00a651;
	color: #fff;
	width: 102px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#coaches-display__sortby-dropdown {
	width: 120px;
	font-weight: 600;
	font-size: 14px;
}

#coaches-display__sortby-dropdown-toggle {
	text-decoration: underline;
	color: #00a651;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	width: 120px;
	height: 32px;
}

#coaches-display__sortby-dropdown-toggle.active {
	text-decoration: none;
	background-color: #fff;
}

#coaches-display__sortby-dropdown-toggle > span {
	margin-right: 5px;
	margin-bottom: 3px;
}

#coaches-display__sortby-dropdown-content {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 10%;
	background-color: #fff;
	width: 120px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#coaches-display__sortby-dropdown-content > a {
	height: 32px;
	width: 100px;
	padding: 3px 10px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	font-weight: 400;
	border-bottom: #8b93a0 1px solid;
}

#coaches-display__sortby-dropdown-content > a:last-child {
	border-bottom: none;
}

/**
* Coach card
*/

.coaches-display__card {
	margin: 25px 0;
	padding: 10px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease-in-out;
	text-align: center;
}

.coaches-display__card--inner {
	display: grid;
	grid-template-columns: auto 150px auto;
	grid-template-rows: auto 90px 120px 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;
	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;
}
.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 {
	width: 146px;
	height: 146px;
	margin-top: 20px;
	border-radius: 50%;
}

.coaches-display__card--name {
	font-weight: 300;
	font-family: 'Open Sans', sans-serif;
	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: #decb22;
	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--coaching-types-ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.coaches-display__card--coaching-type-li:first-child {
	margin-top: 10px;
}

.coaches-display__card--coaching-type-li {
	padding: 5px 8px;
	margin-bottom: 5px;
	border-radius: 13px;
	background-color: #e6e7ee;
	color: #231f20;
	font-size: 13.5px;
	font-weight: 600;
}

.coaches-display__card--freebooking-btn {
	min-width: 170px;
	padding: 10px 28px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 18px;
	background-color: #00a651;
	color: #fff;
}

.coaches-display__card--freebooking-btn:hover,
.coaches-display__card--freebooking-btn:focus {
	background-color: #26b44e;
}

@media (min-width: 479px) {
}

@media (min-width: 767px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1900px) {
	.coaches-display__figures--figure {
		width: 2120px;
		height: 3260px;
		border-top: 1220px solid #1aba6a;
		margin-left: -425px;
	}
}
