.survey-response {
    position: relative;
    margin-bottom: 24px;
}
.survey-responses-responses .survey-top {
    border: 1px solid #B8E8A6;
    padding: 20px 24px;
    border-radius: 4px;
    margin-bottom: 30px;
}
.survey-responses-responses .survey-top p {
    text-align: center;
}
.survey-responses-responses .survey-top p.title {
    color: #285a34;
    font-size: 23px;
    margin-top: 65px;
}
.survey-responses-responses h2 {
    color: #285a34;
    font-size: 21px;
    margin-bottom: 30px;
    text-align: center;
}
.survey-response-node {
    width: 74px;
    margin-right: 10px;
}
.smiley-face {
    width: 48px;
    height: 48px;
    left: 0px;
    top: 0px;
}
.smiley.is-promoter-promoter .smiley-score {
    color: #a1b800;
    background-color: #F8FBE5;
    border-radius: 48px;
    border: 4px solid #a1b880;
    user-select: none;
    height: 48px;
    width: 48px;
    line-height: 40px;
    cursor: default;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.survey-response-content {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    background: #fff;
    border: 1px solid #B8E8A6;
    padding: 20px 24px;
    padding-bottom: 0;
    width: 100%;
}
.survey-response-meta {
    margin-bottom: 18px;
    overflow: hidden;
    width: 100%;
}
.survey-response-meta .survey-response-node {
    display: none;
}
.survey-response-meta-person {
    display: block;
    float: left;
}
.survey-response-meta-person-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    float: left;
    font-weight: 600;
    max-width: 410px;
}
.survey-response-meta-timestamp {
    float: right;
    font-size: 14px;
    position: relative;
}
.survey-response-comment {
    font-size: 16px;
    line-height: 30px;
    overflow: auto;
    margin-top: -6px;
    margin-bottom: 20px;
}

.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.single-chart {
    width: 100%;
    justify-content: space-around ;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 1.8;
}

.circle {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.green .circle {
    stroke: #285a34;
}

.percentage {
    fill: #285a34;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

.review-form-wrapper {
    margin: 40px auto;
    max-width: 600px;
}

.review-form-wrapper .ratings {
    display: flex;
    gap: 10px;
}
.review-form-wrapper .ratings .rating {
    flex-grow: 1;
    text-align: center;

    color: #a1b800;
    background-color: #F8FBE5;
    border-radius: 48px;
    border: 4px solid #a1b880;
    height: 48px;
    width: 48px;
    line-height: 38px;
    cursor: default;
    font-size: 28px;
    font-weight: 700;
}
.review-form-wrapper .ratings .rating:hover {
    cursor: pointer;
}
.review-form-wrapper .ratings .rating.active {
    border-color: #FFA74C;
    color: #FFA74C;
}
.review-form-wrapper .ratings input {
    display: none;
}
.review-form-wrapper .ratings-note {
    display: flex;
}
.review-form-wrapper .ratings-note .note {
    flex-grow: 1;
    color: #285a34;
    font-size: 16px;
}
.review-form-wrapper .ratings-note .note-1 {
    text-align: left;
}
.review-form-wrapper .ratings-note .note-2 {
    text-align: right;
}
@media only screen and (max-width: 991px) {
    .review-form-wrapper .ratings .rating {
        font-size: 17px;
        height: 35px;
        width: 35px;
        line-height: 31px;
        border: 2px solid #a1b880;
    }
    .review-form-wrapper .ratings-note .note {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .survey-response-node {
        display: none;
    }
    .survey-response-meta .survey-response-node {
        display: block;
        float: left;
        margin-right: 0;
        width: 35px;
    }
    .smiley.is-promoter-promoter .smiley-score {
        height: 26px;
        width: 26px;
        font-size: 14px;
        line-height: 21px;
		border: 2px solid #a1b880;
    }
	.survey-response-meta-person, .survey-response-meta-timestamp{
		line-height: 26px;
	}
    .review-form-wrapper .ratings {
        flex-direction: column-reverse;
    }
    .review-form-wrapper .ratings .rating {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        margin-bottom: 10px;
    }
}

