.review__title {
    color: #062b48;
    padding-bottom: 24px;
}
    .review__title span {
        font-size: 17px;
        font-weight: 800;
    }

    .review__title a {
        font-size: 15px;
        color: inherit;
        margin-left: 55px;
    }
        .review__title a .icon {
            font-size: 11px;
            vertical-align: bottom;
            margin-left: 3px;
        }

.review {
    border-top: 1px solid #d5d5d5;
    padding: 30px 0;
    font-size: 15px;
}
    .review::after {
        content: '';
        clear: both;
        display: block;
    }

    .review__left {
        width: 140px;
        float: left;
    }
        .review .star-holder {
            margin-top: 12px;
        }

			.review .star-holder {
				position: relative;
			}

			.review .star {
				color:#fff;
				float:left;
				display:block;
				margin:0 3px 0 0;
				font-size:11px;
				line-height: 22px;
				text-align: center;
				border-radius: 100%;
				background-color: #dddddd;
				width:20px;
				height:20px;
			}

				.review .star:before  {
					margin-left:0;
				}

			.review .star.selected {
				background-color: #1fb05a;
			}

			.review .stars-green {
				position:absolute;
				overflow:hidden;
				width:80px;
				height:20px;
				left: 0px;
			}

				.review .stars-green-inner {
					width:115px;
					position:absolute;
				}

    .review__right {
        width: calc(100% - 140px);
        float: left;
    }





/* REVIEW POPUP */
.popup {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(0,0,0, .5);
    opacity: 0;
    pointer-events: none;
}
    .popup__inner {
        width: 400px;
        max-width: calc(100% - 90px);
        margin: 0 auto;
        height: 325px;
        position: relative;
        top: calc(50% - 162px);
        background: #fff;
        /*border: 1px solid #d8d8d8;*/
        padding: 30px;
    }

        .popup__inner--review
        {
            height: auto;
            top: calc(50% - 350px);
        }

        .popup__close {
          position: absolute;
          right: 12px;
          top: 12px;
          width: 19px;
          height: 19px;
          opacity: 1;
        }

        .popup__close:hover {
          opacity: 1;
        }

        .popup__close:before,
        .popup__close:after {
          position: absolute;
          left: 7px;
          content: ' ';
          height: 20px;
          width: 4px;
          background-color: #062b48;
        }

        .popup__close:before {
          transform: rotate(45deg);
        }

        .popup__close:after {
          transform: rotate(-45deg);
        }




        .popup__inner .bigtitle {
            margin-bottom: 20px;
        }

        .popup__inner textarea {
            width: 100%;
            height: 100px;
            padding: 10px;
        }

        .popup__inner .webform .webform-field {
            width: 100%;
            margin-right: 0;
        }

.popup.open {
    opacity: 1;
    pointer-events: all;
}





.popup .field-score label {
    position: relative;
    padding-bottom: 20px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    text-align: center;
}
    .popup .field-score label input {
        position: absolute;
        bottom: 0;
        left: 2px;
        margin: 0;
    }
    .popup .field-score label span {
    }