.doc-feedbacks {
	padding: 40px 0px;
	padding-bottom: 110px;
}
.doc-feedbacks__top {
	border-radius: 10px;
	background: #F5F9F4;
	padding: 30px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.doc-feedbacks__text {
	margin-left: 15px;
	margin-right: 15px;
	color: #000;
	
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: 35px; 
}
.doc-feedbacks__button {
	margin-left: 15px;
	margin-right: 15px;
}
.doc-feedbacks__btn {
	display: inline-block;
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	white-space: nowrap;
	background-color: #009846;
	border-radius: 35px;
	width: 201px;
	min-width: 201px;
	text-align: center;
	padding: 19px 0px;
	cursor: pointer;
}
.doc-feedbacks__content {
	padding: 30px 0px;
}
.feedback-list {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}
.feedback-list__col {
	width: 33.33%;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
}
.feedback-list__item {
	min-height: 100%;
	border-radius: 10px;
	border: 1px solid #E3E3E3;
	padding: 30px;
	display: flex;
	flex-direction: column;
}
.feedback-list__item-top {
	display: flex;
	align-items: flex-start;
	padding-bottom: 25px;
	border-bottom: 1px solid #E3E3E3;
	width: 100%;
}
.feedback-list__item-image {
	width: 70px;
	min-width: 70px;
	height: 70px;
}
.feedback-list__item-image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	border-radius: 100%;
	object-fit: cover;
}
.feedback-list__item-top-content {
	padding-left: 14px;
	flex-grow: 1;
	width: 100%;
}
.feedback-list__top-title {
	color: #B4B4B4;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.feedback-list__top-name {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}
.feedback-list__item-content {
	padding-top: 20px;
}	
.feedback-list__item-content-title {
	color: #B4B4B4;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}
.feedback-list__item-content-text {
	color: #0A1A07;
	text-overflow: ellipsis;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	margin-top: 5px;
}
.feedback-list__item-bottom {
	padding-top: 20px;
	margin-top: auto;
	width: 100%;
}
.feedback-list__item-readmore {
	display: inline-block;
	cursor: pointer;
	color: #009846;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 14px 0px;
	border-radius: 30px;
	border: 1px solid #009846;
	width: 176px;
	text-align: center;
}
.feedback-list__bottom {
	padding-top: 25px;
	text-align: center;
}
.feedback-list__loadmore {
	display: inline-block;
	cursor: pointer;
	width: 300px;
	max-width: 100%;
	text-align: center;
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	border-radius: 30px;
	background: #009846;
	padding: 17px 0px;
}
.feedback-list__loadmore span {
	display: inline-block;
	vertical-align: middle;
}
.feedback-list__loadmore svg {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.feedback-list__item-hidden {
	display: none;
}
html.show-feedback-popup {
	overflow: hidden;
	padding-right: 17px;
}
.feedback-popup-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 8000;
	background-color: #0A1A07;
	opacity: 0.4;
	display: none;
}
html.show-feedback-popup .feedback-popup-wrapper {
	display: block;
}
.feedback-popup {
	z-index: 9000;
	width: 653px;
	max-width: 100%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-height: 100vh;
    overflow: auto;
	transition: all 0.3s;
	padding: 15px;
	display: none;
}
.feedback-popup.show-feedback-popup {
	display: block;	
}
.feedback-popup::-webkit-scrollbar { width: 0; }
.feedback-popup { -ms-overflow-style: none; }
.feedback-popup { overflow: -moz-scrollbars-none; }

.feedback-popup__body {
	border-radius: 10px;
	background: #FFF;
	padding: 50px 30px;
	padding-bottom: 30px;
	position: relative;
}

.feedback-popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
	width: 30px;
	height: 30px;
	z-index: 1000;
}
.feedback-popup__close svg {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.feedback-popup__content {
	padding-top: 10px;
}
.feedback-detail {
	position: relative;
}
.feedback-detail__title {
	color: #000;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.feedback-detail__date {
	margin-top: 10px;
	display: flex;
	align-items: center;
}
.feedback-detail__date svg {
	margin-right: 9px;		
}
.feedback-detail__date span {
	color: #B4B4B4;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}
.feedback-detail__top {
	margin-top: 25px;
	display: flex;
	align-items: flex-start;
	padding-bottom: 25px;
	border-bottom: 1px solid #E3E3E3;
}
.feedback-detail__top-image {
	width: 70px;
	min-width: 70px;
	height: 70px;
}
.feedback-detail__top-image img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 100%;
}
.feedback-detail__top-content {
	padding-left: 14px;
}
.feedback-detail__top-title {
	color: #B4B4B4;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.feedback-detail__top-text {
	color: #000;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px; 
	margin-top: 5px;
}
.feedback-detail__content {
	padding: 20px 0px;
	color: #0A1A07;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.feedback-detail__content p {
	margin: 10px 0px;
}
.feedback-detail__bottom {
	padding-top: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.feedback-detail__arrow {
	width: 55px;
	height: 40px;
	position: relative;
	cursor: pointer;
}
.feedback-detail__arrow svg {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.feedback-detail__more {
	color: #009846;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px;
	white-space: nowrap;
}
.feedback-form {
	padding-bottom: 20px;
}
.feedback-form__title {
	color: #000;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-align: center;
}
.feedback-form__text {
	color: #0A1A07;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px; 
	margin-top: 15px;
}
.feedback-form__fields {
	padding-top: 10px;
}
.feedback-form__fields-row {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
}
.feedback-form__fields-col {
	margin-top: 20px;
	width: 50%;
	padding-left: 10px;
	padding-right: 10px;
}
.feedback-form__fields-col_full {
	width: 100%;
}
.feedback-form__field {
	position: relative;
}
.feedback-form__field-label {
	color: #B4B4B4;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: absolute;
    left: 21px;
    top: 19px;
    z-index: 0;
}
.feedback-form__field-label span {
	color: #DB2228;
}
.feedback-form__field-input {
	border-radius: 5px;
	border: 1px solid #E3E3E3;
	display: block;
	width: 100%;
	padding: 18px 20px;	
	color:  #0A1A07;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	outline: none;
}
.feedback-form__field-input.error {
	border-color: #DB2228;
}
.feedback-form__field-input_date {

}
.feedback-form__field-dateicon {
	position: absolute;
	z-index: 0;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	cursor: pointer;
}
.feedback-form__field-input_textarea {
	height: 140px;
	min-height: 140px;
	min-width: 100%;
	max-width: 100%;
}
.feedback-form__button {
	margin-top: 35px;
	text-align: center;
}
.feedback-form__submit {
	display: inline-block;
	cursor: pointer;
	width: 360px;
	max-width: 100%;
	text-align: center;
	border-radius: 35px;
	background: #009846;
	padding: 19px 10px;			
	color: #FFF;
	font-size: 19px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border: none;
}
.feedback-form__info {
	margin-top: 15px;
	color: #B4B4B4;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.feedback-form__info a {
	color: #7D7878;
	text-decoration: underline;		
}
.feedback-form__success {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 30px;
}
.feedback-form__success.show-success {
	display: flex;
}
.feedback-form__success div {
	color: #000;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}

@media (max-width: 1024px) {
	.feedback-list__col {
		width: 50%;
	}
}

@media (max-width: 767px) {
	.doc-feedbacks {
		padding-top: 20px;
		padding-bottom: 60px;
	}
	.doc-feedbacks__top {
		display: block;
		text-align: center;
		padding: 15px;
	}
	.doc-feedbacks__text {
		margin: 0;
		font-size: 16px;
		line-height: normal;
	}
	.doc-feedbacks__button {
		margin: 0;
		margin-top: 15px;
	}
	.doc-feedbacks__btn {
		font-size: 16px;
		line-height: normal;
		width: 210px;
		max-width: 100%;
		padding: 14px 0px;
	}
	.doc-feedbacks__content {
		padding: 20px 0px;
	}
	.feedback-list {
		margin-left: 0;
		margin-right: 0;
	}
	.feedback-list__col {
		width: 100%;
		padding: 0;
		margin-bottom: 10px;
	}
	.feedback-list__item {
		padding: 15px;
		padding-bottom: 20px;
	}
	.feedback-list__top-name {
		font-size: 16px;
		margin-top: 3px;
	}
	.feedback-list__item-top {
		padding-bottom: 15px;
	}
	.feedback-list__item-content {
		padding-top: 15px;
	}
	.feedback-list__item-content-text {
		font-size: 15px;
		line-height: 19px;
	}
	.feedback-list__item-readmore {
		width: 251px;
		max-width: 100%;
	}
	.feedback-list__bottom {
		padding-top: 15px;
	}
	.feedback-list__loadmore {
		font-size: 16px;
		padding: 10px 0px;
		width: 280px;
	}
	.feedback-list__item-bottom {
		text-align: center;
	}
}