:body {
	--theme-color: #6f5ba7;
	--theme-color-RGB: #6f5ba7;
  }

 /* Eric Meyer's Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
/* Global Typography */
*, :before, :after{
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 100%;
}
body {
	font-size: 20px;
	font-family: 'Proxima Nova', Avenir, Helvetica Neue, arial, sans-serif;
	color: #43425D;
	background-color: #F3F4F5;
	min-height: 480px;
}
/* Global Headings */
h1 {
	font-size: 31px;
	margin-bottom: 25px;
	word-break: break-word;
}
h2 {
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	left: 0;
	font-size: 16px;
	font-weight: 600;
	right: 0;
}
h3{
	font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    /* font-weight: 300; */
		word-break: break-word;
}

/* General Text Formatting */
strong , span{
	display: inline-block;
}
span{
	/* font-size: 14px; */
	word-break: break-word;
}
img{
	max-width: 100%;
	height: auto;
}
/* Global Link style */
a {
	text-decoration: none;
	outline: none;
	display: inline-block;
	transition: 0.3s ease;
}
a:hover, a:focus {
	color:#7b83d1;
}
/* Global Button Styles */
button {
	cursor: pointer;
	transition: 0.3s ease;
	border: none;
	outline: none;
}
.whitespace-nwrap{
	white-space: nowrap !important;
}
/*Page Navigator Styling*/
.page-navigator{
	margin-top: 100px;
}
.page-navigator a{
	color: #000;
	background-color: #eeeeee;
	padding: 10px 35px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	text-transform: capitalize;
	font-size: 16px;
}
.page-navigator a:hover{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	color: #fff;
	-webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
	-moz-box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
}
/* Global Sprite Icons */
[class^="icon-"], [class*="icon-"] {
	background-image: url(../images/smiley_faces.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	display: inline-block !important;
	width: 68px;
	height: 68px;
}
/* Clearfix class*/
.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/*Post Defined Classes*/
.d-block{
	display: block;
}
.d-none{
	display: none;
}
.back-btn{
	float: left;
}
.next-btn{
	float: right;
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
.text-uppercase{
	text-transform: uppercase;
}
 
/* Global style */
#wrapper{
	padding: 0 15px;

}
.content{
	min-width: 100%;
}
.container{
	max-width:80%;
	margin: 20px auto 0 auto;
	padding: 60px 60px 50px;
	background-color: #fff;
	border:1px solid #ebebec;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
}
/*Progress Bar Styling*/
.progress{
	max-width: 1070px;
	margin: 0 auto;
	position: fixed;
	background: rgba(243,244,245,1);
    padding:10px 20px 15px;
	bottom: 0px;
	left: 0;
	right: 0;
	width: 100%;
}
.progress span{
	margin-bottom: 14px;
}
.progress-bar{
	height: 9px;
	background-color: #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
}

.progress-line{
	height: 9px;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.null{
	width: 0;
}
.fourteen{
	width: 14%;
}
.twenty-eight{
	width: 28%;
}
.fourty-two{
	width: 42%;
}
.fifty-six{
	width: 56%;
}
.seventy{
	width: 70%;
}
.eighty-four{
	width: 84%;
}
.hundred{
	width: 100%;
}
/*Required Input Styling*/
.star{
	color: #cb0000;
	font-size: 22px;
	margin-left: 4px;
}
.required{
	padding-left: 15px;
}
.required span{
	font-size: 14px;
	font-weight: 500;
	color: #b94e4e;
}
/* Header Styles */
.header-x {
	/* position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	display: table-cell;
	vertical-align: middle;
}
.header-x .container {
	padding: 40px 60px;
	position: relative;
	margin: 0 auto;
}
.landing .header-x .container:after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.brand-logo{
	margin: 0 auto;
	/* width: 200px; */
	height: auto;
}
.brand-logo > img{
	/* max-height: 200px; */
}
.survey-name{
	padding:0;
	margin:12px 0;
}
.header-x h2{
	font-size: 18px;
	padding-bottom: 15px;
	display: block;
	line-height: 1.4;
	position: static;
	font-weight: 300;
	background-color: transparent;
	color: #404c53;
	word-break: break-word;
}
.header-x .survey-name-url{
	border-bottom: 1px solid #c3c3c3;
	margin-bottom: 30px;
	color: var(--theme-color);
	font-size: 16px;
	text-decoration: underline;
	padding-bottom: 30px;
	display: flex;
	justify-content: center;
	word-break: break-all;
}
.header-x .survey-name-url:hover{
	text-decoration: underline;
 }
.survey{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	opacity:1;
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	padding: 15px 26px;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 40px;
	-webkit-box-shadow: 8px 10px 20px rgba(46,61,73,0.15);
	-moz-box-shadow: 8px 10px 20px rgba(46,61,73,0.15);
	box-shadow: 8px 10px 20px rgba(46,61,73,0.15);
	font-family: 'Proxima Nova', Avenir, 'Helvetica Neue', Arial, sans-serif;
}
.survey:hover{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	color: #fff;
	opacity:0.95;
	-webkit-box-shadow: 2px 4px 8px rgba(46,61,73,0.2);
	-moz-box-shadow: 2px 4px 8px rgba(46,61,73,0.2);
	box-shadow: 2px 4px 8px rgba(46,61,73,0.2);
}
.header-navbar{
	/* width: 410px; */
	width: auto;
	margin: 0 auto;
}
.menu{
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.menu > li{
	float: left;
	margin: 0 10px;
}
.menu li a{
	font-size: 16px;
	color: #6f5ba7;
	color: var(--theme-color);
	/* color: #5F9CE4; */
	font-weight: 400;
}
.menu li .active{
	color: #43425D;
}
.menu li a:hover{
	color: #43425D;
}
.menu-collapse{
	position: relative;
	background-color: transparent;
	border:none;
	display: block;
	height: 20px;
	outline: none;
}
.menu-collapse:after{
	width: 14px;
	height: 2px;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	/* background-color: #5F9CE4; */
	position: absolute;
	content: '';
	top: 11px;
	left: 0;
	transition:0.7s ease;
}
.menu-collapse:before{
	width: 2px;
	height: 15px;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	/* background-color: #5F9CE4; */
	position: absolute;
	content: '';
	top: 4px;
	left: 6px;
	transition:0.7s ease;
}
.menu-collapse:hover:after, .menu-collapse:hover:before{
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
}

/*Dropdown Menu Styling*/
.sub-close{
	position: absolute;
	top: -12px;
	right: -12px;
	width: 30px;
	height: 30px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	/* background-color: #5F9CE4; */
}
.sub-close:after, .sub-close:before{
	position: absolute;
	content: '';
	width: 2px;
	height: 15px;
	background-color: #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 8px;
	left: 14px;
}
.sub-close:before{
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.dropdown-menu{
	position: absolute;
	width: 600px;
	bottom: 50px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fafafa;
	padding: 25px 30px 10px;
	border:1px solid #e9e9e9;
	-webkit-box-shadow: 0 10px 15px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 10px 15px rgba(0,0,0,0.1);
	box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.selected-language{
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 10px;
}
.selected-language li{
	float: left;
	width: 20%;
	text-align: left;
}
.selected-language li a{
	font-size: 17px;
}
.sub-lang{
	width: 20%;
	text-align: left;
	padding-top: 10px;
}
.sub-lang li{
	margin-bottom: 15px;
}
.sub-lang li a{
	font-size: 16px;
}
.dropthought{
	position: fixed;
	bottom: 1px;
	left: 0;
	right: 0;
	z-index: -1;
}
.landing {
	position: relative;
	min-height: calc(100vh - 45px);
	margin-top:45px;
	display: table;
	width: 100%;
}

/*Last page*/
.thanks h2{
	border-bottom: none;
}
.content-container{
	max-width:80%;
	padding: 100px 0 0 0;
	margin:0 auto;
}
.content-container>h2{
	position: initial !important;
}
.content-container>p{
	font-size: 16px;
	white-space: pre-wrap;

}

/*After text-title added changes*/
.pre-wrap-style,
.supRelative,
.pre-wrap-style p{
  display: inline !important;
  margin:0 !important;
}
.makeDisplayBlock{
  display: block !important;
}
/* .rating,
.rating-expresions,
.multiple-choice-preview-wrap{
  margin-top:20px !important
} */
/* .charCount{
  margin-bottom: 20px !important;
} */
.preserve-white.white-text{
	margin:8px 0 16px 0 !important
}
.slider-question{
	margin-bottom: 70px !important;
}
.radio-buttons{
	margin-bottom: 30px !important;
}
.multiple-choice-preview-wrap ul,
.multiple-dropwrap,
.multiChoiceWrap label,
.singleChoiceWrap label,
.metaTypeInfo{
	margin-top:12px !important;
}
.rating-expresions,
.rating,
.picture-list-set,
.file-upload-upload-area{
	padding-top:20px !important
}

@media only screen and (max-width: 1172px) {

	.container, .content-container {
		width: 95%;
	}
	.container{
		padding: 60px 30px 50px;
	}
	.content-container{
		padding: 60px 0 0 0;
	}
	.overall-form{
		margin-top:30px;
	}
	.progress{
		width: 769px;
	}
	/* .rating li{
		margin-right: 28px;
	} */
	.rating li a{
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}


:body {
	--theme-color: #6f5ba7;
  }

  /*------------------Styling for rating page------------------*/
  .rating{
	  position: relative;
	  margin-bottom: 15px;
  }

  /* .rating li{
	  float: left;
	  margin-right: 41px;
	  position: relative;
  } */
  .rating li:last-child{
	  margin-right: 0;
  }
  .rating li a{
	  width: 53px;
	  height: 53px;
	  background-color: #fff;
	  -webkit-border-radius: 50%;
	  -moz-border-radius: 50%;
	  border-radius: 50%;
	  text-align: center;
	  line-height: 53px;
	  font-size: 17px;
	  color: #707070;
  }
  .rating li a:hover{
	  color: #fff;
  }
  .not-likeable{
	  -webkit-box-shadow: 0 5px 7px rgba(210,49,60,0.5);
	  -moz-box-shadow: 0 3px 7px rgba(210,49,60,0.5);
	  box-shadow: 0 3px 7px rgba(210,49,60,0.5);
  }
  .medium-rate{
	  -webkit-box-shadow: 0 3px 7px rgba(255,179,5,0.5);
	  -moz-box-shadow: 0 3px 7px rgba(255,179,5,0.5);
	  box-shadow: 0 3px 7px rgba(255,179,5,0.5);
  }
  .excellent-rate{
	  -webkit-box-shadow: 0 3px 7px rgba(28,188,98,0.5);
	  -moz-box-shadow: 0 3px 7px rgba(28,188,98,0.5);
	  box-shadow: 0 3px 7px rgba(28,188,98,0.5);
  }
  .not-likeable:hover{
	  background-color: rgba(210,49,60,1);
  }
  .rating li .not-likeable-active{
	  background-color: rgba(210,49,60,1);
	  color: #fff;
  }
  .medium-rate:hover{
	  background-color: rgba(255,179,5,1);
  }
  .rating li .medium-rate-active{
	  background-color: rgba(255,179,5,1);
	  color: #fff;
  }
  .excellent-rate:hover{
	  background-color: rgba(28,188,98,1);
  }
  .rating li .excellent-rate-active{
	  background-color: rgba(28,188,98,1);
	  color: #fff;
  }
  .info-rating{
	  display: block;
	  position: absolute;
	  top: 100%;
	  margin-top: 15px;
	  left: 0;
	  /* width: 120px; */
	  width: 100%;
  }

  .greaterthanfive .info-rating{
    width:120px !important;
    left: 50% !important;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

  .nps-label{
	  width: 90px;
  }

  .excellent-rate + .info-rating{
	  right: 0;
	  left: auto;
	  width: 95px;
  }
  .info-rating-mobile{
	  display: none;
	 }
  /*Textarea Styling*/
  .comment{
	  position: relative;
  }
  .comment textarea{
	  width: 100%;
	  height: 100px;
	  resize: none;
	  border: 2px solid #dfdfdf;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
	  border-radius: 3px;
	  font-family: 'Proxima Nova', Avenir, Helvetica Neue, arial, sans-serif;
	  padding: 10px 20px;
	  color: #43425D;
	  text-align: left;
	  font-size: 16px;
	  font-weight: 400;
	  -webkit-appearance: none;
  }
   textarea:focus {
	   outline: none !important;
	box-shadow: 0 0 3px #6f5ba7;
	box-shadow: 0 0 3px var(--theme-color);
	border: 1px solid #6f5ba7;
	border: 1px solid var(--theme-color);
  }
  .default-circle{
	  -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	  -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	  box-shadow: 0 3px 7px rgba(0,0,0,0.3);
  }
  .default-circle:hover{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	  color: #fff;
  }
  .rating li .default-circle-active{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	  color: #fff;
  }
  /* .rating li:after{
	  position: absolute;
	  content: '';
	  top: 48%;
	  left: 100%;
	  width: 99%;
	  height: 3px;
	  background-color: #e6e6e6;
  } */
  .rating li:last-child:after{
	  display: none;
  }
  /*------------------Styling for Rating Question page------------------*/
  .rating-question .rating{
	  margin-bottom: 70px;
  }
  .rating li:last-child .info-rating{
	  right: 0;
	  left: auto;
	  width: 100%;
	  text-align:right;
  }

  .rating li:last-child .nps-label{
	  width: 70px;
  }

  .comment .words-left{
	  position: absolute;
	  right: 0;
	  top:100%;
	  margin-top: 5px;
  }
  /*------------------Styling for Overall Expierence page------------------*/
  .rating-expresions{
	  padding: 0 0 35px 10px;
	  display: flex;
	  align-items: center;
  }
  .rating-expresions li{
	  text-align: center;
	  display:flex;
	  justify-content: center;
	  width:calc(100% / 5);
	  align-self: flex-start;
	  background:none !important;
  }
  .rating-expresions li a{
	  color: #43425D;
	  display: flex;
	  width:100% !important;
	  flex-direction: column;
	  align-items: center;
  }
  .container.mobile .rating-expresions li a{
	  display:block;
  }
  .rating-expresions li:last-child{
	  margin-right: 0;
  }
  .rating-expresions li em{
	  /* display: block; */
	  margin-bottom: 10px;
	  /* transition:0.25s ease; */
  }
  .icon-very-poor{
	  background-position: 0 0;
  }
  .icon-fair{
	  background-position: -106px -1px;
  }
  .icon-neutral{
	  background-position: -213px 0;
  }
  .icon-good{
	  background-position: -319px 0;
  }
  .icon-excellent{
	  background-position: -434px 0;
  }
  /* .rating-expresions li a:hover .icon-very-poor{
	  background-position: 0 -82px;
  }
  .rating-expresions li a:hover .icon-fair{
	  background-position: -102px -82px;
  }
  .rating-expresions li a:hover .icon-neutral{
	  background-position: -213px -81px;
  }
  .rating-expresions li a:hover .icon-good{
	  background-position: -319px -81px;
  }
  .rating-expresions li a:hover .icon-excellent{
	  background-position: -434px -81px;
  } */
  .radio-buttons,.check-buttons{
	  margin-bottom: 30px;
  }

  /*Active classes for rating-expresions*/
  .icon-very-poor-active{
	  background-position: 0 -82px;
  }
  .icon-fair-active{
	  background-position: -102px -82px;
  }
  .icon-neutral-active{
	  background-position: -213px -81px;
  }
  .icon-good-active{
	  background-position: -319px -81px;
  }
  .icon-excellent-active{
	  background-position: -434px -81px;
  }
  /*Custom Styling For Chechbox and Radio*/
  .btn-custom{
	  display: block;
	  font-size: 14px;
	  position: relative;
	  margin-bottom: 2px;
	  cursor: pointer;
	  padding: 9px 0 9px 40px;
	  -webkit-border-radius: 4px;
	  -moz-border-radius: 4px;
	  border-radius: 4px;
  }
  .btn-custom input{
	  position: absolute;
	  opacity: 0;
	  cursor: pointer;
	  width: 100%;
	  height: 100%;
	  top: 0;
	  left: 0;
  }
  .radio-btn{
	 position: absolute;
	 top: 6px;
	 left: 12px;
	 height: 21px;
	 width: 21px;
	 -webkit-border-radius: 50%;
	 -moz-border-radius: 50%;
	 border-radius: 50%;
	 background-color: transparent;
	 border: 2px solid #a9a9a9;
  }

  .radio-btn:after {
	content: "";
	position: absolute;
	display: none;
	top: 4px;
	left: 4px;
	width: 9px;
	height: 9px;
	-webkit-border-radius: 50%;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
	-moz-border-radius: 50%;
	border-radius: 50%;
  }
  .btn-custom:hover{
	background: #F2F2F2;
	background: rgba(var(--theme-color-RGB));
  }
  .custom-radio input:checked ~ .radio-btn{
		border: 2px solid #6f5ba7;
		border: 2px solid var(--theme-color);
  }
  .custom-radio input:checked ~ .radio-btn:after{
	  display: block;
  }
  /*Checkbox*/
  .btn-check{
	  position: absolute;
	  top: 5px;
	  left: 12px;
	  height: 21px;
	  width: 21px;
	  min-width: 21px;
	  background-color: #fff;
	  border: 2px solid #a9a9a9;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
	  border-radius: 3px;
  }
  .btn-check:after{
	 position: absolute;
	 content:'';
	 top: 1px;
	 left: 5px;
	 width: 7px;
	 height: 12px;
	 border: solid #fff;
	 border-width: 0 2px 2px 0;
	 -webkit-transform: rotate(45deg);
	 -ms-transform: rotate(45deg);
	 transform: rotate(45deg);
  }
  .custom-check input:checked ~ .btn-check{
	background-color: #6f5ba7;
	background-color: var(--theme-color);
		 border: 2px solid #6f5ba7;
	   border: 2px solid var(--theme-color);
  }
  .custom-check input:checked ~ .btn-check:after{
	  display: block;

  }

  .selected-option{
		background: #F2F2F2;
	  background: rgba(var(--theme-color-RGB));
  }

  .denotes-required{
	  margin-bottom:30px;
	  color: #cb0000;
  }

  .denotes-required span{
	  font-size:14px;
  }
  /*Custom Styling For Chechbox and Radio End*/

  .rating-agree{
	  float: right;
  }

  .rating-disagree{
	  float: left;
  }

  .slider-question{
	  margin-bottom: 100px;
	}


.popup {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

/* The actual popup */
.popup .popuptext {
	visibility: hidden;
	background-color: #ffe0e5;
	color: #000000;
	text-align: center;
	border-radius: 12px;
	padding: 8px 0;
	padding-left: 17px;
	padding-right: 10px;
	position: relative;
	z-index: 10;
	bottom: 10%;
	left: 3%;
}
/* #ffe0e5 */
/* Popup arrow */
.popup .popuptext::before {
	content: "";
	position: absolute;
	background-color: #ffe0e5;
	width: 17px;
	height: 18px;
	bottom: 46.1654%;
	right: 99.2%;
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform-origin: 5px 25px;
	-ms-transform-origin: 5px 25px;
	-moz-transform-origin: 5px 25px;
	-webkit-transform-origin: 5px 25px;
	z-index: -1;
	text-align: left;
}

.popup .show {
	visibility: visible;
}

.multiple-dropwrap .ng-dropdown-panel .ng-dropdown-panel-items .ng-option{
	white-space:normal !important;
}

.engc-extra-logos{
	display: none !important;
}

/*FOR 769PX*/
@media only screen and (max-width: 1099px) {

	.container,
	.content-container{
		width: 90%;
		max-width: 90%;
		/* padding: 60px 30px 50px; */
	}
	.overall-form{
		margin-top:30px;
	}
	.progress{
		width: 769px;
	}
	/* .rating li{
		margin-right: 15px;
	} */
	.rating li a{
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
	ul.lessthanfive > li{
		width:100px !important;
	}
	.greaterthanfive .info-rating{
		left: 0 !important;
		transform: initial !important;
	}
	.collaborate-btn-cont{
		left:1% !important;
	}
	/* .content-container{
		padding:0 !important;
	} */
}
/*FOR 320PX*/
/*@media only screen and (max-width: 321px) {
	.menu > li{


}*/
/*FOR 768PX*/
@media only screen and (max-width: 768px) {
	body{
		position: relative;
	}
	h1{
		font-size: 22px;
	}
	h2{
		top: 0;
		padding: 15px 30px;
		background-color: #fff;
		font-size: 14px;
		background-color: #5F626A;
		color: #fff;
		bottom: auto;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}
	h3{
		font-size: 16px;
		margin-bottom: 14px;
	}
	#wrapper{
		padding: 0;
		background-color: white;
	}
	.container{
		margin: 0 auto;
		padding: 0px 30px 90px;
		width: auto;
		border: none;
	}
	.overall-form{
		margin-top:30px;
	}
    /*----------------------------Header Styling-----------------------------*/
   .header-x .container{
   		position: static;
   		margin: 0 auto;
   		padding: 20px 0;
   }
   .header-x .container:after{
   	    display: none;
   }
   .brand-logo{
   		margin-bottom: 20px;
   }
   .survey{
   		font-size: 18px;
   		padding: 10px 20px;
   }
   .header-x h2{
   	    /* border-bottom: 1px solid #c3c3c3 ; */
   	    width: 90%;
   	    margin: 0 auto;
		   font-size: 17px;
		   word-break: break-word;
   }
   .header-navbar{
   		max-width: 300px;
   }
   .menu li{
   		/* margin: 0 1.5% 8px; */
   		text-align: center;
			margin: 0 10px;
   }
   .menu > li:first-child{
   		margin-left: 0px;
   }
   .menu > li:last-child{
		margin-right: 0;
   }
   .menu li a{
   		font-size: 15px;
		margin:0 0 20px 0;
   }
   .dropdown-menu{
	   	width: 270px;
	   	padding-right: 0;
	   	padding-left: 0;
   }
   .sub-lang{
   		width: 33.3%;
   }
   .selection-language{
   	    overflow-y: scroll;
		height: 200px;
   }
   .selected-language li:last-child{
   	    margin-left: 8px;
   }

    /*----------------------------Header Styling End-----------------------------*/

   /*------------------Styling for rating page------------------*/
   .rating li:after{
   	    display: none;
	}
   .rating li{
   		float: none;
   		margin-bottom: 8px;
   		margin-right: 0;
   }
   .rating li a{
   		width: 100% !important;
   		height: 35px;
   		line-height: 35px;
   		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		font-size: 14px;
   }
   .info-rating{
		display: none;
   }
   .info-rating-mobile{
   		display: inline-block;
   }
   .page-navigator{
   		margin-top: 50px;
   }
   .page-navigator a{
		font-size: 15px;
		padding: 10px 25px;
   }
   /*------------------Styling for rating-Question page------------------*/
  .rating-question .rating{
  	    margin-bottom: 35px;
  }
  /*------------------Styling for Overall Expierence page------------------*/
  .rating-expresions{
  		padding: 0px 15px 10px;
  }
  .rating-expresions li{
		float: none;
		margin-bottom: 5px;
		text-align: left;
  }
  .rating-expresions li em{
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle;
		margin-right: 10px;
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
  }
  .radio-buttons, .check-buttons{
  	margin-bottom: 20px;
  }
  /*Required Input Styling*/
  .required span{
	font-size: 13px;
	font-weight: 400;
	color: #cb0000;
  }
   /*Progress Bar Styling*/
  .progress{
  	    padding:10px 35px;
  	    width: auto;
  	    text-align: center;
   }
   .progress-bar{
		height: 7px;
	}
	.progress-line{
		height: 7px;
	}
	/*Progress Bar Styling End*/

	.popup {
		position: relative;
		display: block;
		cursor: pointer;
	}

	/* The actual popup */
	.popup .popuptext {
		visibility: hidden;
		background-color: #ffe0e5;
		color: #000000;
		text-align: center;
		border-radius: 12px;
		padding: 8px 0;
		padding-left: 17px;
		padding-right: 10px;
		position: relative;
		z-index: 10;
		bottom: 10%;
		left: 3%;
		margin-top: 10px;
	}
	/* #ffe0e5 */
	/* Popup arrow */
	.popup .popuptext::before {
		content: "";
		position: absolute;
		background-color: #ffe0e5;
		width: 17px;
		height: 17px;
		-webkit-transform-origin: 5px 25px;
		-webkit-transform: rotate(45deg);
		bottom: 83%;
		right: 96%;
	}

	.popup .show {
		visibility: visible;
	}

	/*Ranking Question*/
	.ranking-ques-wrap > ul li .ranking-inner,
	.cdk-drag{
		width: 100% !important;
	}

	/*Multiple open Ended*/
	.eux-multiple-open-ended-wrap > ul > li{
		display: block !important;
	}
	.eux-multiple-open-ended-wrap > ul > li h4{
		margin-bottom: 8px;
	}
}
/*DTV-1292-r style starts*/
.other-input-label{
	padding:4px 0 4px 40px;
}
.other-input-label:hover{
	cursor: default !important;
	background-color: transparent !important;
}
.other-input-label .d-flex.y-center{
	margin:-5px 0 0 0;
}
.other-input-label > div > input{
	position: absolute;
    width: auto;
    cursor: pointer;
}
.other-input-ip{
	position: inherit !important;
    width: 350px !important;
    height: 28px !important;
    border-bottom: 1px solid #ddd !important;
    opacity: 1 !important;
    visibility: visible;
    display: inline-block;
    background-color: transparent;
    font-size: 15px !important;
	padding: 0!important;
	margin-left:10px;
}
.custom-check input:checked ~ .other-input-ip,
.custom-check input:checked ~ textarea,
.custom-radio input:checked ~ .other-input-ip,
.custom-radio input:checked ~ textarea{
	border-bottom:2px solid var(--theme-color) !important;
}



/*Preview Mobile */
.mobile .header-x .container{
	padding:40px 0;
}
.mobile{
	padding: 20px 20px !important;
  /* border: 1px solid white !important; */
}
.mobile .rating-question .rating{
	margin-bottom: 35px;
}
.mobile .rating-expresions{
	padding: 0px;
	display: block;
}
.mobile .rating-expresions li{
  float: none;
  margin-bottom: 5px;
  text-align: left;
}
.mobile .rating-expresions li em{
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  margin-right: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.mobile .radio-buttons, .check-buttons{
margin-bottom: 20px;
}
.mobile .required span{
font-size: 13px;
font-weight: 400;
color: #cb0000;
}
.mobile .rating li:after{
		 display: none;
}
.mobile .rating li{
	 float: none;
	 margin-bottom: 8px;
	 margin-right: 0;
}
.mobile .rating li a{
	 width: 100%;
	 height: auto;
	 line-height: inherit;
	 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;
 font-size: 14px;
 padding: 10px;
 min-height: 34px;
}
.mobile .info-rating{
 display: none;
}
.mobile .info-rating-mobile{
	 display: inline-block;
}
.mobile .page-navigator{
	 margin-top: 50px;
}
.mobile .page-navigator a{
 font-size: 15px;
 padding: 10px 25px;
}
.mobile span{
	display: inline-block;
}
.mobile .overall-form.ng-untouched .rating li{
	margin-right:0px;
}
 /* .mobile .rating-moods a:first-child{
	 width:150px !important;
 } */
 .mobile h3
{
	font-size: 16px;
	font-weight:500;
  color: #4D4F5C;
  margin-bottom: 12px;
}

.mobile .charCount{
	padding-bottom:20px;
	width:100%;
}

.mobile .p-name{
	top: 0;
    padding: 15px 30px;
    background-color: #fff;
    font-size: 14px;
    background-color: #5F626A;
    color: #fff;
    bottom: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	position: initial !important;
}
/* .mobile .form-wrap-preview{
	margin-top:55px;
} */
.mobile .header-x{
	top:initial !important;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}
/*Preview Mobile ends here */

/* metadata and open question css */

.charCount{
	font-size: 14px;
	float: right;
	color: #A8A2AD;
}

.metaTypeInfo{
	font-size: 14px;
	/* float: left; */
	color: #A8A2AD;
	margin-bottom:5px;
}
.anonyInfo{
	font-size: 14px;
	float: left;
	color: #A8A2AD;
	margin-bottom:5px;
}

/* metadata and open question css end */

/*DTV-4294-r*/
.other-input-label .other-span{
	margin:6px 10px 0 0;
}

/*DTV-4537-r*/
.iPad.landscape .tablet .rating-expresions > li:not(:last-child){
	padding-right: 5px;
}

/*SE-1249-r*/
.cursor-move{
	cursor: move;
 	cursor: -webkit-grab;
	cursor: -moz-grab;
}
.for-drag{
	width: 16px;
	height: 16px;
	margin-right:12px;
}
.ranking-ques-wrap > ul li {
	background-color: transparent;
	border-color: #E1E4EB;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
	width: auto;
	padding: 4px;
  }
  .cdk-drag{
	width: 540px;
  }
  .ranking-ques-wrap > ul li .ranking-inner {
	background-color: #F0F1F5;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
	width: 540px;
	padding: 8px 12px;
	gap:16px;
  }
  .ranking-ques-wrap .ranking-LabEL{
	word-break: break-word !important;
  }
  .ranking-inner-right{
	margin-right:10px;
  }
  .ranking-ques-wrap .select-cs{
	min-width: 48px;
	height: 28px;
	background-color: transparent;
	z-index: 1;
  }
  .ranking-select::after{
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	right:8px;
	top:50%;
	transform: translateY(-50%) rotate(45deg);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-moz-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	-o-transform: translateY(-50%) rotate(45deg);
	border-bottom-style: solid;
    border-bottom-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
}
.IP-div{
	background-color: #fff;
	width: 48px;
}
.rankingNA .IP-div::after{
	display: none;
}
.rankingNA select{
	cursor: no-drop;
}

/* Dropdown with serach

.multiple-dropwrap .btn-drop,
.multiple-dropwrap > ul{
	background-color: white;
	border:1px solid #C7CAD1;
	border-radius: 4px;
	font-size: 16px;
}
.multiple-dropwrap{
	position: relative;
}
.multiple-dropwrap .btn-drop{
	padding:12px;
	color:#000;
	cursor: pointer;
	flex: 0 0 35%;
	width:35%;
}
.multiple-dropwrap .pointer-arrow{
	width: 12px;
	height: 17px;
	background: url(../../assets/images/ponter.png) no-repeat;
	background-size: cover;
}
.multiple-dropwrap > ul{
	width: 100%;
	position: absolute;
	left: 0;
	padding:12px 0;
	max-height: 200px;
	overflow: auto;
	z-index: 2;
}
.multiple-dropwrap ul li a{
	padding: 8px 15px;
	color: #000;
	width: 100%;
	font-size: 16px;
}
.multiple-dropwrap ul li a:hover{
	background-color: #eeeeee;
}
.multiple-dropwrap li.no-hover-drop{
	width: calc(100% - 24px);
	margin: 0px auto 12px auto;
}
.multiple-dropwrap li.no-hover-drop a:hover{
	background-color: transparent;
}
.multiple-dropwrap li.no-hover-drop input{
	border-bottom: 0;
	border-radius: 4px;
	padding-left:32px;
	border: 2px solid #C7CAD1;
}
.multiple-dropwrap li.no-hover-drop input:focus,
.multiple-dropwrap li.no-hover-drop input:active{
	border-color:#6f5ba7
}
.multiple-dropwrap li.no-hover-drop .searchIcon{
	width: 16px;
	height: 16px;
	background: url(../../assets/images/search.png) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 9px;
}

.multiple-dropwrap textarea{
	margin-top:8px
} */


/*Multiple Dropdown*/
.multiple-choice-dropdown-wrap .ng-select{
	width: 40% !important;
	font-size: 16px !important;
	color: #000 !important;
}
.multiple-choice-dropdown-wrap .ng-input{
	top:0 !important;
	bottom: 0 !important;
	cursor: pointer;
}
.multiple-choice-dropdown-wrap .ng-dropdown-panel-items{
	width: 100% !important;
}
.multiple-choice-dropdown-wrap .ng-arrow-wrapper{
	background: url(../images/ponter.png) no-repeat center !important;
	background-size: 65% !important;
	height: 100%;
}
.multiple-choice-dropdown-wrap .ng-arrow{
	display: none !important;
}
.multiple-choice-dropdown-wrap .ng-dropdown-panel{
	padding:12px 0;
}
.multiple-choice-dropdown-wrap .ng-option{
	padding:8px 15px !important;
	font-size: 16px;
	color:#000;
}
.multiple-choice-dropdown-wrap .ng-option-marked{
	background-color: #6f5ba7 !important;
	background-color: rgba(var(--theme-color-RGB)) !important;
}
.multiple-choice-dropdown-wrap .ng-option-selected{
	background-color: #6f5ba7 !important;
	background-color: var(--theme-color) !important;
	border-radius: none !important;
}
.multiple-choice-dropdown-wrap #dashboard-questions_textarea_dropdown-other,
.multiple-choice-dropdown-wrap #dashboard-questions_textarea_dropdown-other:focus,
.multiple-choice-dropdown-wrap #dashboard-questions_textarea_dropdown-other:active{
	border-bottom: 2px solid var(--theme-color) !important;
}
.multiple-choice-dropdown-wrap .ng-select.ng-select-focused:not(.ng-select-opened)>.ng-select-container {
	border-color: #ccc !important;
	box-shadow: none;
}
.multiple-choice-preview-wrap ul li:hover,
.multiple-choice-preview-wrap ul li.active{
		  background-color: #F7F8FA;
}


/*Matrix Rating scale*/
.matrix-question-wrap{
	margin-bottom: 30px;
}
.matrix-sub-list{
	margin-bottom:0
}
.matrix-sub-list li {
	width: 100%;
	margin-right: 0;
}
.matrix-sub-list li a.default-circle {
	width: 32px !important;
	height: 32px !important;
	line-height: 32px !important;
}
.matrix-sub-list li::after {
	top: 50%;
	left: 50%;
}
.matrix-sub-list.matrix-after-none li::after {
	display: none;
}
.matrix-list-container > li{
	padding:8px 12px;
	background-color: #FAFBFC;
	margin-bottom: 8px;
}
.matrix-list-container > li > h4{
	margin:0 2px
}
.matrix-list-container > li:first-child{
	padding:0 12px 16px 12px;
	background-color: transparent;
}

/*Some added the styles at bottom*/
strong { 
    font-weight: bold !important;
 }

 em {
    font-style: italic !important;
 }

 #thankyouText ul,
 #thankyouText ul li,
 #welcomeText ul,
 #welcomeText ul li{
	list-style: disc !important;
 }

 #thankyouText ul,
 #thankyouText ol{
	display: inline-block !important;
 }

 #welcomeText ul,
 #welcomeText ol,
 #thankyouText ul,
 #thankyouText ol{
	margin-left: 28px !important;
 }

 #thankyouText ol,
 #thankyouText ol li,
 #welcomeText ol,
 #welcomeText ol li{
	list-style: decimal !important;
 }
 /* #welcomeText,#thankyouText{
	text-align: initial;
 } */

 #readmore{
	padding:4px 30px 4px 12px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	border:transparent;
	border-radius: 4px;
	margin:16px 0;
	color:#fff;
	background-color: #6f5ba7;
	background-color: var(--theme-color);
 }
 #readmore.ranking-select::after{
	top:45%;
 }
 #readmore-arrow{
	position: absolute;
    width: 15px;
    height: 15px;
    right: 7px;
 }
 .welcometxt.text-collapse + #readmore #readmore-arrow{
	background: url(../../assets/images/Chevron_Right.png) no-repeat center 5px !important;
	background-size: contain !important;
	transform: rotate(-360deg) !important;
 }
 .welcometxt + #readmore #readmore-arrow{
	background: url(../../assets/images/Chevron_Right.png) no-repeat center 2px !important;
	background-size: contain !important;
	transform: rotate(180deg) !important;
 }
 
 .thankyoutxt.text-collapse + #readmore #readmore-arrow{
	background: url(../../assets/images/Chevron_Right.png) no-repeat center 5px !important;
	background-size: contain !important;
	transform: rotate(-360deg) !important;
 }
 .thankyoutxt + #readmore #readmore-arrow{
	background: url(../../assets/images/Chevron_Right.png) no-repeat center 2px !important;
	background-size: contain !important;
	transform: rotate(180deg) !important;
 }

 #loadOverlay{display: none;}

 /*Multiple Open ended*/
 .eux-multiple-open-ended-wrap .multiple-open-textarea{
	height: 40px;
	min-height: auto;
 }
 .eux-multiple-open-ended-wrap  ul li{
	padding:8px 16px !important;
	background-color: transparent;
 }
 .eux-multiple-open-ended-wrap > ul li:hover{
	background-color: #F7F8FA;
 }



/*DTV-8760-r*/
.collaborate-aside-wrap .overlay-one{
	display: none;
}
.collaborate-aside-wrap.expand .overlay-one{
	display: block;
	z-index:1;
}
.collaborate-btn-cont{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: white;
	box-shadow: 0 12px 64px rgba(0,0,0, 16%);
	position: fixed;
	top: 90px;
    left: 6%;
	cursor: pointer;
}
.collaborate-side-panel-wrap{
	width: 520px;
	z-index: 99;
	border-radius: 12px;
	box-shadow: 0 12px 64px rgba(0,0,0, 16%);
	left:-200%;
	background-color: #ffffff;
	position: fixed;
    top: 1vh;
    height: 98vh;
	transition: .3s ease-in-out;
}
.collaborate-aside-wrap.expand .collaborate-side-panel-wrap{
	left:12px !important;
}
.list-status-collaborate{
	width: 28px;
	height: 28px;
	min-width: 28px;
}
.collaborate-side-panel-header img{
	width: 10px;
}
.collaborate-side-panel-body{
	height: calc(98% - 65px);
    overflow: auto;
}
.collaborate-side-panel-body > ul li:hover,
.collaborate-side-panel-body > ul li.active{
	background-color: #F7F8FA;
}
.collaborate-side-panel-body > ul li.collaborate-invite:hover{
	cursor: default;
}
.collaborate-side-panel-body > ul li:hover .collaborate-ico{
	cursor: pointer;
}
.revokeCollaborat:hover svg path{
	fill:#CA404A;
}
.collaborate-side-panel-body > ul li:hover::before,
.collaborate-side-panel-body > ul li.active::before{
	display: block;
}
.collaborate-side-panel-body > ul li{
	position: relative;
	cursor: pointer;
}
.collaborate-side-panel-body > ul li::before{
	width: 3px;
	height: 26px;
	transform: translateY(-50%);
	position: absolute;
	left: 0;
	top:50%;
	border-radius: 8px;
	background-color: #005399;
	content: '';
	display: none;
}
.collaborate-side-panel-body > ul li:hover .border-bottom,
.collaborate-side-panel-body > ul li.active .border-bottom{
	border-color: #F7F8FA !important;
}
.collaborate-side-panel-body > ul li.forgot-to-answer{
	background-color: #FFEEEF;
}
.collaborate-side-panel-body > ul li.forgot-to-answer .list-status-collaborate{
	background: url(../../assets/images/forgot-to-answer.svg) no-repeat center;
	background-size: cover;
}
.welcome-survey-btn{
	display: block;
	margin:0 auto;
}
#add-multi-users,
#add-multi-users path{
	fill: var(--theme-color);
  }
.invite-collaborate-button{
	background-color: #6f5ba7;
	background-color: var(--theme-color-RGB);
	color:var(--theme-color);
	display: inline-flex;
}
.response-waiting-toc > div svg{
	min-width: 25px;
}
/* .response-waiting-toc > div{
	max-width: 400px;
} */

/*Dt-hint*/
.dt-hint {
	font-size: 13px;
	color: #9C8FC4;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-left: 4px;
  }
  .dt-hint:hover .dt-hint-text {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	visibility: visible;
  }
  .dt-hint .dt-hint-text {
	position: absolute;
	background-color: #1C1E22;
	padding: 8px 12px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	height: max-content;
	height: -webkit-max-content;
	height: -moz-max-content;
	max-width: 280px;
	text-align: center;
	font-size: 13px;
	line-height: 17px;
	color: #fff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	visibility: hidden;
	bottom: calc(100% + 8px);
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 9;
	white-space: break-spaces;
  }
  .dt-hint .dt-hint-text::after {
	position: absolute;
	content: '';
	border-width: 5px;
	border-style: solid;
	border-color: #1C1E22 transparent transparent transparent;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
  }
  .dt-hint.dt-hint-TopRight .dt-hint-text {
	left: 16px;
	top: auto;
	-webkit-transform: translate(-100%, 0%);
	-moz-transform: translate(-100%, 0%);
	-ms-transform: translate(-100%, 0%);
	-o-transform: translate(-100%, 0%);
	transform: translate(-100%, 0%);
  }
  .dt-hint.dt-hint-TopRight .dt-hint-text::after {
	right: 0px;
	left: auto;
  }
  .dt-hint.dt-hint-BottomRight .dt-hint-text {
	left: 18px;
	top: calc(100% + 5px);
	-webkit-transform: translate(-100%, 0%);
	-moz-transform: translate(-100%, 0%);
	-ms-transform: translate(-100%, 0%);
	-o-transform: translate(-100%, 0%);
	transform: translate(-100%, 0%);
  }
  .dt-hint.dt-hint-BottomRight .dt-hint-text::after {
	right: 5px;
	left: auto;
	top: -10px;
	-webkit-transform: translate(0%, 0%);
	-moz-transform: translate(0%, 0%);
	-ms-transform: translate(0%, 0%);
	-o-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
  }

.dt-btn-theme{
	background-color: var(--theme-color);
}
.dt-btn-theme:hover{
	background: #F2F2F2;
    background: var(--theme-color) !important;
}
.svg-theme-color,
.svg-theme-color path{
	fill: var(--theme-color);
}

/*Dt-alert*/
.dt-alert,
.dt-message {
  position: fixed;
  width: auto;
  top: 24px;
  max-width: 720px;
  padding: 12px 12px 12px 16px;
  color: #2E2A3A;
  font-size: 16px;
  background-color: #F2EFFF;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  min-height: 48px;
  min-width: 240px;
  box-shadow: 0 12px 64px rgba(0, 0, 0, 0.16);
  z-index: 999999;
}
.dt-alert .dt-alert-msg-wrap,
.dt-message .dt-alert-msg-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 24px;
}
/* .dt-alert .dt-alert-close i,
.dt-message .dt-alert-close i {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  color: #2E2A3A;
  font-size: 14px;
}
.dt-alert .dt-alert-close:hover,
.dt-message .dt-alert-close:hover {
  background-color: #DDD6F5;
} */
.dt-alert.dt-alert-success, .dt-alert.dt-message-success,
.dt-message.dt-alert-success,
.dt-message.dt-message-success {
  background-color: #E6F6F3;
  color: #004435;
}
.dt-alert.dt-alert-success .dt-alert-close i svg path, .dt-alert.dt-message-success .dt-alert-close i svg path,
.dt-message.dt-alert-success .dt-alert-close i svg path,
.dt-message.dt-message-success .dt-alert-close i svg path {
  color: #004435;
  fill:#004435;
}
/* .dt-alert.dt-alert-success .dt-alert-close:hover i svg path, .dt-alert.dt-message-success .dt-alert-close:hover i svg path,
.dt-message.dt-alert-success .dt-alert-close:hover i svg path,
.dt-message.dt-message-success .dt-alert-close:hover i svg path{
  fill: #B3E5DA;
} */
.dt-btn-icon{
	background-color: transparent;
}
.dt-alert.dt-alert-error, .dt-alert.dt-message-error,
.dt-message.dt-alert-error,
.dt-message.dt-message-error {
  background-color: #FFEEEF;
  color: #CA404A !important;
}
.dt-alert.dt-alert-error b{
	color: #CA404A !important;
	font-weight: 700;
}
.dt-alert.dt-alert-error .dt-alert-close i, .dt-alert.dt-message-error .dt-alert-close i,
.dt-message.dt-alert-error .dt-alert-close i,
.dt-message.dt-message-error .dt-alert-close i {
  color: #4C181C;
}
.dt-alert.dt-alert-error .dt-alert-close:hover, .dt-alert.dt-message-error .dt-alert-close:hover,
.dt-message.dt-alert-error .dt-alert-close:hover,
.dt-message.dt-message-error .dt-alert-close:hover {
  background-color: #FECBCE;
  border-radius: 4px;
  min-height: 20px;
}

.picture-list-set{
	margin-bottom: 30px;
}

/*File-Upload*/
.dt-upload-format{
    border-radius: 20px;
    color:var(--theme-color);
	border-color: var(--theme-color) !important;
}
.dt-upload-format svg path{
	fill: var(--theme-color) !important;
}
.dt-upload-format input[type="file"]{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.file-upload-type-wrap{
	margin-bottom: 30px;
}
.dt-upload-items{
	max-height: 225px;
	overflow: auto;
}
.dt-upload-items li{
	background-color: #F7F8FA;
	border-radius: 12px;
}
.upload-profiler{
	width: 48px;
    /* height: 48px; */
    border-radius: 8px;
    background-color: #fff;
    min-width: 48px;
    overflow: hidden;
    padding-top: 48px;
    display: block;
    position: relative;
}
.upload-profiler img{
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right:0;
	margin:auto;
}
.upload-lefft{
	width: 80%;
}
/* .upload-file-name{
	max-width: 175px;
} */
.file-close svg path{
	fill:#005399 !important;
	fill: var(--theme-color) !important;
}
.file-close{
	width: 32px;
	height: 32px;
	border-radius: 50%;
}
.file-close:hover,
.file-close.active{
	background-color: #E6F6F3 !important;
	background-color: var(--theme-color-RGB) !important;
}

/*Poll Question style starts*/
.poll-question-ul > li{
	width: 100%;
	height: auto;
	border-radius: 8px;
	/* background-color: #F7F8FA;
	background-color: var(--theme-color);	 */
	padding:10px 16px;
	position: relative;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid #E1E4EB;
}
.poll-question-ul .poll-title{
	font-size: 18px;
	color: #2B2D33;
}
.poll-question-ul > li .poll-after{
	position: absolute;
	/* width: 30%; */
	/* content: ''; */
	height: 100%;
	border-radius: 8px;
	background-color: #E9F4FC;
	background-color: transparent;
	top:0;
	left:0;
}
.poll-content-area{
	position: relative;
	z-index: 1;
}
.poll-question-ul li .visibility-hidden{
	visibility: hidden !important;
	opacity: 0;
}
.poll-question-ul li.active .visibility-hidden{
	visibility: visible !important;
	opacity: 1;
}
.poll-question-ul li .content-hidden{
	display: none !important;
}
.poll-question-ul li.active .content-hidden{
	display: block !important;
}
.poll-question-ul li .poll-title{
	transform: translateX(-30px);
}
.poll-question-ul li.active .poll-title{
	transform: translateX(0px);
	transition: .3s ease-in;
	font-size: 18px;
    font-weight: bold;
	background-color: var(--theme-color-RGB);
}
.poll-question-ul li:not(.active){
	background-color: #F7F8FA;
}
.poll-question-ul > li.active .poll-after{
	background-color: rgba(var(--theme-color-RGB));
}
.poll-question-ul > li:hover{
	background-color: rgba(var(--theme-color-RGB)) !important;
}
.poll-content-area svg path{
	fill: var(--theme-color) !important;
}
.nps-alone .info-rating{
	width: 100px !important;
}
/*Respondent Prefix common classes*/
.matrix-multi-open textarea {
	padding: 10px 12px !important;
}
.prefixToTextboxes {
	position: relative;
  }
  .prefixToTextboxes textarea {
	padding: 14px 0 14px 64px !important;
	height: 54px !important;
	min-height: 54px !important;

  }
  .prefixToTextboxes .prefixToTextboxesItem {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: 12px;
	font-size: 14px;
	margin-top: 1px;
	color: #848A93;
	border-right: 1px solid #E1E4EB;
	width: auto;
	height: 18px;
	padding-right: 6px;
  }
.prefixToTextboxes.matrix-multi-open .prefixToTextboxesItem{
	top:11px !important;
	transform: initial !important;
}
.prefixToTextboxes.matrix-multi-open .prefixToTextboxesItem p,
.comment.prefixToTextboxes .prefixToTextboxesItem p{
	padding-top:3px
}
.comment.prefixToTextboxes .prefixToTextboxesItem{
	top:28px !important
}
.comment.prefixToTextboxes textarea{
	padding: 16px 0 16px 0 !important;
	height: 58px !important;
	min-height: 58px !important;
}
.prefixToTextboxes.matrix-multi-open textarea{
	padding: 12px 0 12px 42px !important;
	height: 42px !important;
	min-height: 42px !important;
}
.comment.grater2-4 > textarea,
.prefixToTextboxes.matrix-multi-open .grater2-4 textarea{
	padding-left:61px !important;
}
.comment.grater4-6 > textarea,
.prefixToTextboxes.matrix-multi-open .grater4-6 textarea{
	padding-left:66px !important;
}
.comment.grater6-8 > textarea,
.prefixToTextboxes.matrix-multi-open .grater6-8 textarea{
	padding-left:84px !important
}
.comment.grater8-10 > textarea,
.prefixToTextboxes.matrix-multi-open .grater8-10 textarea{
	padding-left: 106px !important
}
.multiple-choice-preview-wrap label.matrix-title-mob {
	margin-top:12px !important
}
.pre-wrap-style span{
	font-size: inherit;
}
.statement{
	word-break: break-word !important;
}

.editorAnchor a{
	width: 100% !important;
	display:inline !important;
}

/*DTV-4673-r*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.rating-expresions li a span{
		display: table-cell !important;
	}
}

@media only screen and (max-width:1200px){
	.nps-alone li:last-child .info-rating{
		left:-13px !important;
		right: 0 !important;
	}
}

@media only screen and (max-width: 1023px) {
	.matrix-list-container > li:not(:last-child) {
		margin-bottom: 8px;
   }
	.matrix-list-container > li:first-child {
		display: none !important;
   }
	.matrix-list-container .matrix-sub-list {
		margin-top: 15px;
   }
	.matrix-list-container .matrix-sub-list li {
		margin: 0 0 14px 0 !important;
   }
	.matrix-list-container .matrix-sub-list li a.default-circle {
		width: 100%;
		border-radius: 16px !important;
		padding: 8px 20px;
		width: 100% !important;
		text-align: left !important;
		height: auto !important;
   }
	.matrix-list-container .matrix-sub-list li a.default-circle.desk-ver {
		display: none !important;
   }
	.matrix-list-container .matrix-sub-list li a.default-circle.mob-ver {
		display: block !important;
   }
	.matrix-list-container .matrix-sub-list li::after {
		width: 3px;
		height: 100%;
		top: auto;
		top: 100%;
		left: 22px;
		right: auto;
   }
	.matrix-sub-list, .matrix-list-container {
		display: block !important;
   }
	.matrix-sub-list li, .matrix-list-container li {
		display: block !important;
   }
   .desk-ver{
	display: none !important;
   }
   .mob-ver{
	display: block !important;
   }
   /*Matrix-choice*/
	.matrixchoice-wrap .mob-ver{
		background-color: transparent !important;
		box-shadow: none !important;
		/* position: absolute; */
		padding:0 0 0 0 !important;
		line-height: initial !important;
		color:#000 !important
	}
	.matrixchoice-wrap .matrix-sub-list > li{
		padding:0 0 0 42px !important
	}
	.matrixchoice-wrap .matrix-sub-list > li .btn-custom{
		position: absolute;
		top: 5px;
		left: 0;
		right:0;
	}
	.matrixchoice-wrap .matrix-sub-list > li .btn-custom input{
		right: 0;
		z-index: 9;
	}
	.matrixchoice-wrap .matrix-list-container > li{
		background-color: transparent;
	}
	.picture-list-set{
		grid-template-columns: repeat(auto-fill, minmax(calc(33% - 24px), 1fr)) !important;
		padding:0 !important; 
	}
	/* .picture-list-set li picture::before{
		width: 104% !important;
		height: 108% !important;
	} */
	.file-upload-upload-area{
		flex-direction: column !important;
	}
	.upload-lefft{
		width: 90%;
	}
}


@media only screen and (max-width:767px){
	.content-container{
		margin:0 auto;
		padding:80px 0 0 0;
	}
	.collaborate-btn-cont{
		top: 30px;
		left: 4%;
		position: absolute;
	}
	.collaborate-side-panel-wrap{
		width: 94% !important;
	}
	.content-container,
	.container{
		max-width: 95% !important;
		width: 95% !important;
		margin:0 auto !important;
		padding:0;
	}
	.content-container{
		padding:80px 0 0 0 !important;
	}
	.m-block{
		display: block !important;
	}
	.matrix-title-mob{
		flex: 0 0 100% !important;
		width: 100% !important;
		margin-bottom: 8px !important;
	}
	.rating-star > li{
		flex-direction: row !important;
		margin-bottom: 26px;
		justify-content: flex-start !important;
	}
	.rating-star > li span{
		margin:0 0 0 12px;
	}
	.multiple-choice-dropdown-wrap .ng-select{
		width: 100% !important;
	}
	.picture-list-set{
		grid-template-columns: repeat(auto-fill, minmax(calc(50% - 24px), 1fr)) !important;
	}
	.dt-alert, .dt-message{
		max-width: 80%;
		transform: translate(0, 0);
		left: 0;
		right: 0;
		margin:0 auto
	}
	.dt-alert-msg-wrap{
		width: 100%;
	}

	/*DTV-11386 - Quick-Fix*/
	.btn-custom:hover,
	.mob-ver:hover,
	.default-circle:hover{
		background: initial;
	  }	
	  .selected-option{
			background: #F2F2F2 !important;
			background: rgba(var(--theme-color-RGB)) !important;
		}
		.mob-ver:hover:not(.default-circle-active),
		.default-circle:hover,
		.rating li a:hover{
			color: #707070;
		}
		.default-circle-active{
			color: #fff !important;
		}
		/* .rating-expresions li a:hover .icon-excellent,
		.rating-expresions li a:hover .icon-good,
		.rating-expresions li a:hover .icon-neutral,
		.rating-expresions li a:hover .icon-fair,
		.rating-expresions li a:hover .icon-poor{
			background-position: initial !important;
		} */
		.picture-choice-container .picture-list-set .picture-min{
			justify-content: flex-start !important;
		}
		.multiple-choice-preview-wrap label.matrix-title-mob {
			margin-top:0 !important
		}
}

@media screen and (min-width:769px){
	.rating-expresions li a:hover .icon-very-poor{
		background-position: 0 -82px;
	}
	.rating-expresions li a:hover .icon-fair{
		background-position: -102px -82px;
	}
	.rating-expresions li a:hover .icon-neutral{
		background-position: -213px -81px;
	}
	.rating-expresions li a:hover .icon-good{
		background-position: -319px -81px;
	}
	.rating-expresions li a:hover .icon-excellent{
		background-position: -434px -81px;
	}
	.star-rrating li.poor:hover label{
		background-position:-1px -80px !important;
	}
	.star-rrating li.fair:hover label{
		background-position:-85px -80px !important;
	}
	.star-rrating li.neutral:hover label{
		background-position:-167px -80px !important;
	}
	.star-rrating li.good:hover label{
		background-position:-251px -80px !important;
	}
	.star-rrating li.excellent:hover label{
		background-position: -335px -80px !important;
	}
	
	.heart-rating li.poor:hover label{
		background-position: -10px -221px !important;
	}
	.heart-rating li.fair:hover label{
		background-position:-93px -221px !important;
	}
	.heart-rating li.neutral:hover label{
		background-position:-175px top -221px !important;
	}
	.heart-rating li.good:hover label{
		background-position: -259px -221px !important;
	}
	.heart-rating li.excellent:hover label{
		background-position:-344px  -221px !important;
	 }
	 .like-rating li.hate:hover label{
		background-position:-12px -384px !important;
	}
	.like-rating li.dislike:hover label{
		background-position: -93px -384px !important;
	}
	.like-rating li.neutral-like:hover label{
		background-position: -167px -383px !important;
	}
	.like-rating li.like:hover label{
		background-position: -258px -383px !important;
	}
	.like-rating li.love:hover label{
		background-position: -342px -382px !important;
	}
}


@media screen and (max-width:560px){
		/*DTV-7918-r*/
		.ranking-ques-wrap > ul li .ranking-inner{
			width: 100% !important;
		}
}

@media screen and (max-width:520px){
	.picture-list-set{
		grid-template-columns: repeat(auto-fill, minmax(calc(100%), 1fr)) !important;
		padding: 0 12px !important;
        margin-top: 20px;
	}
}
