.survey_heading{
	margin-bottom: 60px;
	text-align: center;
}
.survey_heading h1{
	font-size: 30px;
	color: #CA3C3C;
	font-family: 'montserratsemibold';
	margin-bottom: 20px;
}
.survey_heading p{
	font-size: 16px;
	font-family: 'montserratregular';
	color: #6D6D6D;
}

.survey_form .form-group{
	margin-bottom: 30px;
	position: relative;
}
.survey_form .form-group .form-control{
	height: 60px;
	line-height: 60px;
	border-radius: 0;
	border: none;
	background: #fff;
	-webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.14);
	font-family: 'montserratregular';
	color: #6D6D6D;
}
.ui.selection.dropdown:hover, .ui.selection.dropdown:focus{
	background: #fff;
	-webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.14);
}
.ui.selection.dropdown{
	line-height: normal;
}
.ui.multiple.dropdown>.label{
	border-radius: 20px;
	line-height: 16px;
	font-size: 12px;
}
.ui.dropdown>.text{
	margin-top: 10px;
}
.ui.multiple.dropdown>.text{
	margin-top: 18px;
}
.ui.fluid.dropdown>.dropdown.icon{
	margin-top: 2px;
	color: #CA3C3C;
}

.survey_form .form-group .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #E2E2E2;
}
.survey_form .form-group .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #E2E2E2;
}
.survey_form .form-group .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #E2E2E2;
}
.survey_form .form-group .form-control:-moz-placeholder { /* Firefox 18- */
  color: #E2E2E2;
}

.survey_form .form-group select.form-control:not([size]):not([multiple]){
	height: 60px;
	line-height: 50px;
}
.survey_form .form-group select.form-control {
  background-image:
    linear-gradient(45deg, transparent 50%, #CA3C3C 50%),
    linear-gradient(135deg, #CA3C3C 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 21px) calc(1em + 10px),
    calc(100% - 15px) calc(1em + 10px);
    
  background-size:
   6px 6px,
    6px 6px,
    1px 1.5em;
  background-repeat: no-repeat;
}

.survey_form .form-group select.form-control:focus {
  background-image:
    linear-gradient(45deg, #CA3C3C 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, #CA3C3C 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 15px) 25px,
    calc(100% - 20px) 25px;  
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  outline: 0;
}
.survey_form .form-group select:-moz-focusring {
  color: transparent;
}
.survey_form .form-group textarea.form-control:not([size]):not([multiple]){
	height: auto;
	line-height: 18px;
	border-radius: 4px;
	border: 1px solid #D6D6D6;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 20px;
}
.survey_form .form-group label{
	font-size: 12px;
	padding-left: 0px;
	color: #6D6D6D;
	font-family: 'montserratsemibold';
}

.survey_form .form_head{
	margin-bottom: 50px;
	margin-top: 100px;
	position: relative;
}
.survey_form .form_head h3{
	font-size: 24px;
	font-weight: 500;
	display: inline-block;
	background: #fff;
	padding-right: 25px;
	color: #CA3C3C;
	font-family: 'montserratsemibold';
	
}
.survey_form .form_head h3:after{
	content: '';
	display: block;
	border-top: 1px solid #CA3C3C;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -10px;
	width: 100%;
	z-index: -1;
}

/*==== Rating style =====*/
.cs_rating{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	border-bottom: 1px solid #EDEDED;
    padding-bottom: 25px;
    margin-top: 30px;
    position: relative;
}
.survey_form .cs_rating label{
	font-size: 16px;
	font-family: 'montserratregular';
}
.star-cb-group {
    font-size: 0;
    unicode-bidi: bidi-override;
    direction: rtl;
    margin-left: auto;
}
.star-cb-group > input{
	display: none;
}
.star-cb-group > input + label {
    display: inline-block;
    overflow: hidden;
    /*text-indent: 9999px;*/
    /*width: 1em;*/
    white-space: nowrap;
    cursor: pointer;
    font-size: 0 !important;
    margin: 0px 10px 0px 0px;
}
.star-cb-group > input + label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "";
    color: #888;
    width: 20px;
    height: 19px;
    background-image: url(../images/star-unckeck.svg);
}
.star-cb-group > input:checked ~ label:before, .star-cb-group > input + label:hover ~ label:before, .star-cb-group > input + label:hover:before {
    content: "";
    color: #e52;
    text-shadow: 0 0 1px #333;
    background-image: url(../images/star-check.svg);
}
.star-cb-group > .star-cb-clear + label:before {
    width: .5em;
}
.star-cb-group > .star-cb-clear + label{
	margin: 0; 
}

/*===== custom Radio Button =====*/

.custom_radio_button > input{
	display: none;
}
.custom_radio_button input[type="radio"]:checked + label {
    border: 1px solid #CA3C3C;
    cursor: default;
}
.custom_radio_button input[type="radio"] + label {
    width: auto;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 18px;
    text-align: center;
    padding: 5px 15px;
    margin: 0px 5px;
    color: #6D6D6D;
     background: transparent;
}

.custom_radio_button input[type="radio"] + label:hover {
	border: 1px solid #CA3C3C;
    background-color: inherit;
    background-position: 0 0;
    -webkit-transition: none;
    -moz-trainsition: none;
    transition: none;
}


/*===== Error Validation message =====*/
.survey_form .form-group .parsley-error{
	background: #FFE8E8;
	border: none !important;
}
.survey_form .form-group .col-md-4{
	position: relative;
}
.survey_form .form-group .parsley-errors-list{
	position: absolute;
	top: 0;
	right: 5px;
	font-size: 12px;
	font-family: 'montserratsemibold';
	background: transparent;
	color: #CA3C3C;
	margin-top: 0;
}
body ul.parsley-errors-list li:after{
	display: none;
}
.parsley-required{
	font-size: 12px;
}
.cs_rating .parsley-error{
	background: transparent !important;
}

.survey_form .form-group .cs_rating .parsley-errors-list{
	top: auto;
	right: 0;
	bottom: 0;
}
.survey_form .form-group .op_btn_prime{
	min-width: 320px;
	font-family: 'montserratsemibold';
}


.ui.label { background-color: #EEE; color: #666 !important; font-size: 13px; }
.ui.label .icon:before { content: '\f00d'; font-family: fontAwesome; font-style: normal; font-size: 12px; padding-left: 5px; position: relative; top: -1px; }
.ui.label .icon:hover:before { color: #F00; }


@media only screen and (max-width: 767px){
	.survey_heading h1{
		font-size: 26px;
	}
	.survey_heading p{
		font-size: 14px;
	}
	.survey_form .form_head{
		margin-top: 50px;
		margin-bottom: 20px;
	}
	.survey_form .form_head h3{
		font-size: 18px;
	}
	.survey_form .form-group{
		margin-bottom: 0;
	}
	.survey_form .form-group .form-control{
		margin-bottom: 30px;
	}
	.cs_rating{
		flex-direction: column;
	}
	.custom_radio_button.imporve_service input[type="radio"] + label{
		padding: 5px 6px;
		margin: 0;
	}
	.survey_form .form-group .op_btn_prime{
		min-width: 100%;
	}
	.survey_form .form-group .cs_rating .parsley-errors-list{
		bottom: 20px;
	}
}