:root {
	--white: #fff;
	--off-white: #F9F9F9;
	--light-gray: #F5F5F5;
	--mid-gray: #B3B3B3;
	--gray-idle: #707070;
	--dark-gray: #404040;
	--black: #000;
	--light-blue: #D6EBFF;
	--bright-blue: #50AAF2;
	--cta-blue: #318CD4;
	--dark-blue: #257BBF;
	--light-green: #DFFBEC;
	--light-purple: #F3E5F9;
	--light-pink: #FFEBF1;
	--bright-pink: #FFC6D5;
	--light-brown: #EEE4E8;
	--cream: #FCF7F2;
	--light-yellow: #FFF4D0;
	--bright-yellow: #FFE276;
	--body-font: 'Averta', Arial, Helvetica, sans-serif;
	--heading-font: 'Freight Display Pro', 'freight-display-pro', Georgia, serif;
	--container-width: 90vw;
	--container-max-width: 1600px;
	--container-outer-padding: 50px;
	--container-outer-margin: calc((100vw - var(--container-width)) / 2);
	--viewport-edge: calc((var(--container-outer-margin) + var(--container-outer-padding)) * -1);
	--gap: 40px;
	--grid: repeat(12,1fr);
	--module-spacing-x-small: 36px;
	--module-spacing-small: 48px;
	--module-spacing-medium: 60px;
	--module-spacing-large: 75px;
	--module-spacing-x-large: 90px;
	--autoscroller-gap: 84px;
	--autoscroller-speed: 80s;
}

.smf-container {
    margin: 50px auto;
    width: 100%;
    max-width: 850px;
    padding: 50px 50px 67px 50px;
	background:--white;
	overflow: hidden;
}
.fullscreen-survey {
    border: 1px solid #ccc;
    background: #fff;
}

.logo-image-holder {
    text-align: center;
    margin-bottom: 30px;
}

.logo-image-holder img {
    max-width: 200px;
    height: auto;
	border-radius: 0!important;
}

.survey-category-menu-container {
    margin-bottom: 60px;
}

.survey-category-menu-title {
    font-family: var(--heading-font);
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    margin-bottom: 15px;
}

.survey-category-menu {
    padding: 10px 15px;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.survey-category-menu:hover,
.survey-category-menu.active {
    background-color: #f5f5f5;
    color: #333;
}

.survey-subtitle {
    font-family: var(--heading-font);
	font-size: calc(32rem/16);
	font-weight: 700;
	line-height: calc(40 / 32);
	letter-spacing: .1px;
    font-style: normal;
    text-align: center;
    margin-bottom: 20px;
}

.survey-subtitle  span{
	display:block;
	font-size: calc(26rem/16);
	line-height: calc(60 / 32);
	color: #000000;
	font-family: var(--body-font);
	font-weight: normal;
}

/***Buttons***/

.btn {
	display: inline-block;
	font: 600 calc(15rem/16)/calc(18/15) var(--body-font);
	position: relative;
	text-transform: uppercase;
}

/*Primary*/

.btn.primary,
.btn.secondary {
	border: none;
	letter-spacing: 1.5px;
	padding: 19px 30px;
	text-align: center;
	z-index: 2;
	min-width: 180px;
}

.btn.primary:before,
.btn.secondary:before,
.btn.primary:after,
.btn.secondary:after {
	box-sizing: border-box;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.btn.primary:before,
.btn.secondary:before {
	background: var(--bright-blue);
	transform: translate(5px,5px);
	transition: transform .25s ease;
}

.btn.primary:after,
.btn.secondary:after {
	background: var(--white);
	border: 2px solid var(--bright-blue);
}

.btn.primary:hover::before,
.btn.secondary:hover::before {
	transform: translate(0,0);
}

/*Secondary*/

.btn.secondary {
	font-size: calc(11rem/16);
	padding: 15px 30px;
}

.btn.secondary:before {
	transform: translate(3px,3px);
}

.btn.secondary:after {
	border-width: 1.5px;
}

/*Tertiary*/

.btn.tertiary,
.services aside h2 {
	font-size: calc(13rem/16);
	letter-spacing: 1.4px;
	line-height: calc(20/13);
	text-transform: uppercase;
}

.btn.tertiary {
	padding-right: 34px;
}

.btn.tertiary.large {
	font-size: calc(28rem/16);
	padding-right: 40px;
}

.btn.tertiary::after {
	background: url('svgs/icon-arrow.svg') no-repeat center var(--light-blue);
	border-radius: 100%;
	content: '';
	height: 25px;
	position: absolute;
	right: 0;
	top: -2px;
	transition: transform .25s ease;
	width: 25px;
}

.btn.tertiary.large::after {
	height: 32px;
	right: -6px;
	top: 50%;
	translate: 0 -50%;
	width: 32px;
}

.btn.tertiary.dark:after {
	background-color: var(--bright-blue);
}

.btn.tertiary:hover::after,
.btn-hover:hover .btn.tertiary:after {
	transform: translateX(5px);
}



.survey-section {
    display: none;
}

.survey-section.active {
    display: block;
}

.faces-holder {
    text-align: center;
	margin-bottom: 30px;
}

.faces-holder-inner {
    display: inline-flex;
    gap: 30px;
}

.face-image-holder {
    cursor: pointer;
    padding: 0px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.face-image-holder:hover,
.face-image-holder:focus{
    transform: scale(1.1);
}

.face-image-holder.happy:hover,
.face-image-holder.happy:focus{
    background:var(--bright-yellow);
}
.face-image-holder.happy.selected {
    background: var(--bright-yellow);
}
.face-image-holder.sad:hover,
.face-image-holder.sad:focus{
    background:var(--light-blue);
}
.face-image-holder.sad.selected {
    background:var(--light-blue);
}

.face-image-holder img {
    width: 55px !important;
    height: 55px;
	border-radius: 100% !important;
}

#survey-questions-4 {
    display: inline-block;
    margin: 0 0 30px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #b4adad;
    padding-bottom: 50px;
}

.rating-number {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-style: normal;
    font-weight: 600;
    margin: 15px 4px 0; 
}

.rating-holder .rating-number img {
    display: block;
    border-radius: 50px;
    width: 55px;
    margin-top: 5px;
    text-align: center;
}
#required-rating {
    margin-top: 30px;
}
.rating-holder .rating-number:hover img,
.rating-holder .rating-number.selected img{
    background:var(--light-blue);
}

.rating-holder .rating-number.rating-6:hover img,
.rating-holder .rating-number.rating-6.selected img,
.rating-holder .rating-number.rating-7:hover img,
.rating-holder .rating-number.rating-7.selected img,
.rating-holder .rating-number.rating-8:hover img,
.rating-holder .rating-number.rating-8.selected img,
.rating-holder .rating-number.rating-9:hover img,
.rating-holder .rating-number.rating-9.selected img,
.rating-holder .rating-number.rating-10:hover img,
.rating-holder .rating-number.rating-10.selected img{
    background: var(--bright-yellow);
}

textarea {
  height: 100px;
  padding: 15px;
  background-color: var(--white);
  border: 1px solid #ccc !important;
  border-radius: 10px;
  color: var(--black);
  font: calc(14rem/16)/calc(20/14) var(--body-font);
  letter-spacing: .3px;
  height: 50px;
  padding: 0 15px;
  width: 100%; 
} 

.recommendation-holder {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #b4adad;
    padding-bottom: 35px;
}

#survey-questions-6 .recommendation-holder {
    border-bottom: 0;
    padding: 0;
}
.recommendation-holder button {
    /*margin: 0 10px;
    padding: 10px 30px;*/
}

.recommendation-holder button.selected {
    transform: scale(1.1);
}

.form-navigation {
  margin-top: 40px;
  text-align: center;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    text-align:center;
    margin: 0 auto;
}

.checkbox-group.negative-feedback, .checkbox-group.positive-feedback {
    margin-bottom: 30px;
    border-bottom: 1px solid #b4adad;
    padding-bottom: 30px;
}

.checkbox-group label.survey-question {
  background:var(--white);
  border: 2px solid var(--bright-blue);
  border-radius: 50px;
  padding: 10px 30px;
  color:var(--black);
  text-transform: unset;
  font-size: 14px;
  font-weight: 500;
  margin:0px 2px 10px 2px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  vertical-align: middle;
  z-index: 1;
  transition: .3s ease-out;
  min-width: 200px;
  text-align: center;
}

.checkbox-group label.survey-question:hover,
.checkbox-group label.survey-question:focus {
	 background:var(--bright-blue);
     border: 2px solid var(--bright-blue);
	 color:var(--white);
}

.checkbox-group label.survey-question [type="checkbox"]:not(:checked), 
.checkbox-group label.survey-question [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.checkbox-group label.survey-question:has(input:checked) {
    background:var(--bright-blue);
    border: 2px solid var(--bright-blue);
	color:var(--white);
}

.feedback-arrow {
  align-items: center;
  background: transparent;
  border: 2px solid var(--bright-blue);
  border-radius: 100%;
  display: flex;
  height: 50px;
  justify-content: center;
  padding: 0;
  position: relative;
  transform: translate3d(0, 0, 0);
  width: 50px;
  z-index: 3;
}
.feedback-arrow:hover,
.feedback-arrow:focus{
  background-color: var(--bright-blue);
}

.feedback-arrow.prev {
  transform: scale(-1,1) translate3d(0, 0, 0);
  transform-origin: center;
}


.thank-you-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease-out;
    display: inline-block;
    width: 100%;
}

.thank-you-message p {
    font-size: 18px;
    margin-top: 20px;
    color: var(--black);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-template-page-post-facial-feedback .needsclick{
	display:none;
}
body.page-template-page-post-facial-feedback .announcement-pop{
	display:none;
}
@media only screen and (max-device-width: 1366px){
 .fullscreen-survey {
            height: 50vh;
        display: table;
        justify-content: center;
        align-items: center;
        margin: 50px auto;
	}
}
@media only screen and (max-device-width: 1280px){
 .fullscreen-survey {
    height: auto;
	}
}

@media only screen and (max-width: calc(59.375rem)) {
	 .fullscreen-survey {
    	height: auto;
    	}
    footer .intro ul.social {
    	margin: 0 !important;
	}
	footer .intro .logo {
	    flex: 0 0 225px;
	    margin-bottom: 15px;
	    display: inline-block;
	}
	.smf-container {
	    margin: 20px auto;
		padding: 8px;
	}
	.survey-subtitle {
		font-size: calc(28rem / 16);
		letter-spacing: .08px;
		line-height: calc(40 / 30);
	}
	 .h2.survey-subtitle {
		font-size: calc(28rem / 16)!important;
		letter-spacing: .08px;
		line-height: calc(40 / 30);
	  }

	.thank-you-message { 
	  padding: 20px 0px;
	 }
    
    .survey-category-menu-container {
        margin-bottom: 30px;
    }
	.checkbox-group label.survey-question {
    	min-width: 100px;
    	padding: 10px 5px;
    	width: 48%;
    	display: inline-block;
    	margin: 10px 2px 0 2px;
    	font-size: 13px;
	}	
	.survey-subtitle  span {
    	margin-top: 10px;
    	font: calc(20rem/16)/calc(24/16) var(--body-font);
    	color: var(--black);
	}
	.faces-holder {
    text-align: center;
    margin-bottom: 20px;
}
.checkbox-group.negative-feedback, .checkbox-group.positive-feedback {
    margin-bottom: 24px;
}
#survey-questions-4 {
    padding-bottom: 35px;
}
button.btn.primary.submit {
    margin: 0 auto 30px;
}
}


@media only screen and (max-width: calc(40.625rem)) {
	.survey-subtitle {
		font-size: 6vw;
        letter-spacing: .1px;
        line-height: 7vw;
        margin-bottom: 20px;
	}
	 h2.survey-subtitle {
		font-size: calc(24rem / 16)!important;
		letter-spacing: .1px;
		line-height: calc(36 / 28);
	 }
	 .survey-subtitle  span {
    	margin-top: 10px;
    	font: calc(17rem/16)/calc(24/16) var(--body-font);
    	color: var(--black);
	}
	.checkbox-group label.survey-question {
		margin: 10px 1px 0 2px;
	}
}
