.filter-form {
	width: 100%;
    max-width: 612px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 16px;
    background-color: rgb(225, 244, 251);
}
.form-group {
    width: 100%;
}
.form-group:not(:last-child) {
    margin-bottom: 40px;
}
.label-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 24px;
    margin-bottom: 1rem;
    color: var(--black);
}
.checkbox-group, .radio-option {
    width: 100%;
}
.checkbox-group label, .radio-option {
	width: 100%;
	display: flex;
	gap: 10px;
	align-items: center;
}
.checkbox-group label:not(:last-child), .radio-option:not(:last-child) {
    margin-bottom: 12px;
}
.checkbox-group label span, .radio-option label {
	position: relative;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
	color: var(--black);
}
.checkbox-group [type="checkbox"], .radio-option [type="radio"] {
    height: 16px;
    width: 16px;
}
.form-group select, .form-group input[type="text"] {
    width: 100%;
    background-color: var(--white);
    padding: 8px 12px;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid var(--white);
	outline: unset;
}
.form-group select:focus-visible, .form-group input[type="text"]:focus-visible {
	outline: 1px solid var(--primary);
}
.submit-therapist {
    border-radius: 50px;
    background-color: var(--electric-blue);
    color: var(--dark-gray);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;
    text-align: center;
    padding: 12px 18px;
    text-transform: capitalize;
	border: 1px solid var(--electric-blue);
}
.reset-therapist {
    border-radius: 50px;
    background-color: var(--white);
    color: var(--teal-blue);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;
    text-align: center;
    padding: 12px 18px;
    text-transform: capitalize;
    border: 1px solid var(--teal-blue);
}
.reset-therapist:hover {
    background-color: var(--teal-blue);
    cursor: pointer;
    color: var(--white);
    border-color: var(--teal-blue);
}
.submit-therapist:hover {
    background-color: var(--teal-blue);
    color: var(--white);
    cursor: pointer;
	border-color: var(--teal-blue);
}
.search-btn-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.submit-therapist:focus, .submit-therapist:active {
	border: unset;
}
.search-therapist-results {
    width: 100%;
    margin-top: 80px;
}
.search-therapist-results .therapist-card {
    width: 100%;
    background-color: rgb(225, 244, 251);
    display: flex;
    border-radius: 24px;
    flex-wrap: wrap;
}
.search-therapist-results .therapist-card:not(:last-child) {
    margin-bottom: 32px;
}
.search-therapist-results .therapist-card .therapist-left {
    background-color: var(--soft-gray);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 24px 0 0 24px;
	flex: 0 0 auto;
	width: 33.33333333%;
}
.search-therapist-results .therapist-card .therapist-left img.therapist-image {
    border-radius: 999px;
    width: 144px;
    height: 144px;
    object-fit: cover;
	display: block;
}
.search-therapist-results .therapist-card .therapist-left .therapist-reviews {
    width: 100%;
    padding-top: 24px;
}
.search-therapist-results .therapist-card .therapist-left .therapist-reviews .therapist-card-reviews {
	width: 100%;
	display: flex;
    justify-content: center;
    gap: 6px;
}
.search-therapist-results .therapist-card .therapist-left .therapist-reviews .therapist-card-reviews span {
    display: block;
    text-align: center;
    font-size: 16px;
    color: var(--black);
	font-weight: 500;
}
.search-therapist-results .therapist-card .therapist-left .therapist-card-price {
    width: 100%;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.search-therapist-results .therapist-card .therapist-left .therapist-card-price span {
	display: block;
    line-height: 22px;
    font-size: 16px;
    font-weight: 400;
	text-align: center;
	color: var(--black);
}
.search-therapist-results .therapist-card .therapist-right {
	flex: 0 0 auto;
	width: 66.66666667%;
	display: flex;
	flex-flow: wrap;
	padding: 32px;
	flex-direction: column;
}
.search-therapist-results .therapist-card .therapist-right h3 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    color: var(--black);
	padding-bottom: 8px;
}
.search-therapist-results .therapist-card .therapist-right h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--electric-blue);
}
.search-therapist-results .therapist-card .therapist-right .therapist-content {
    width: 100%;
    padding: 28px 0 24px;
    border-bottom: 1px solid var(--soft-gray);
    margin-bottom: 24px;
}
.search-therapist-results .therapist-card .therapist-right .therapist-content p {
	font-weight: 400;
    font-size: 14px;
    line-height: 22px;
	color: var(--black);
}
.search-therapist-results .therapist-card .therapist-right .buttons-block .see-profile-button {
	text-decoration: none;
    background-color: var(--vibrant-green);
    color: var(--white);
    display: inline-block;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.2px;
    padding: 10px 40px;
    border-radius: 28px;
    border: 1px solid var(--vibrant-green);
}
.search-therapist-results .therapist-card .therapist-right .buttons-block .see-profile-button:hover {
    background-color: var(--forest-green);
    border-color: var(--forest-green);
    cursor: pointer;
}
.not-found {
    width: 100%;
    background-color: rgb(225, 244, 251);
    padding: 48px;
    border-radius: 16px;
}
.not-found p {
	font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}
@media only screen and (max-width: 1300px) {
	.search-therapist-results .therapist-card .therapist-left, .search-therapist-results .therapist-card .therapist-right {
		padding: 20px;
	}
}
@media only screen and (max-width: 1199px) {
	.search-therapist-results .therapist-card .therapist-left img.therapist-image {
		width: 100px;
		height: 100px;
	}
	.search-therapist-results .therapist-card .therapist-right h3 {
		font-size: 28px;
		line-height: 32px;
	}
}
@media only screen and (max-width: 767px) {
	.search-therapist-results .therapist-card .therapist-left {
		width: 100%;
		border-radius: 24px 24px 0 0;
	}
	.search-therapist-results .therapist-card .therapist-right {
		width: 100%;
	}
}