.survey_loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(50 50 50 / 90%);
  z-index: 99999;
}

.survey_loader__text {
  color: #ffffff;
}

.survey_loader__progress {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.survey_loader__progress:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fa5b29;
  border-color: #fa5b29 transparent #fa5b29 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}
@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}/* SelectBox styles */

#ui-selectBox-dropdown .ui-selectBox-option {
    min-height:1.3em;
}
.ui-selectBox {
	position: relative;
	width: 188px; /* 188px + 35px (padding-right) + 2px (for borders) == 225px wide */
	border-color: #AAAAAA #CCCCCC #CCCCCC #AAAAAA;
    border-style: solid;
    border-width: 1px;
	text-decoration: none;
	color: #666;
	outline: none;
	vertical-align: middle;
	background: #F2F2F2;
	background: -moz-linear-gradient(top, #F8F8F8 1%, #E1E1E1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F8F8F8), color-stop(100%, #E1E1E1));	
    -pie-background: linear-gradient(#F8F8F8, #E1E1E1);	
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .75);
	-pie-box-shadow:none;
	padding-right: 35px;
	display: inline-block;
	cursor: default;
}


.ui-selectBox-disabled,
.ui-selectBox-disabled .ui-selectBox-arrow {
    color: #aaa !important;
	font-style: italic !important;
}
.ui-selectBox-disabled .ui-selectBox-arrow {
    border-width: 0 0 0 1px;    
	color: #888 !important;
	border-color: #AAAAAA #CCCCCC #CCCCCC #AAAAAA!important;
    border-style: solid;
}
.ui-selectBox:hover,
.ui-selectBox-focus,
.ui-selectBox:hover .ui-selectBox-arrow,
.ui-selectBox-focus .ui-selectBox-arrow {
	/*border-color: #AAA;*/
	cursor:pointer;
	text-decoration: none;
}

.ui-selectBox-label,
.ui-selectBox-label:hover {
	width: 100%;
	padding: .3em .3em;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-decoration: none;	
}

.ui-selectBox-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 22px;
	height: 100%;
	background: url("/lib/jqueryUI/images/ui-icons_70b2e1_256x240.png") -125px 3px;
	border-left: solid 1px #BBB;
}

/* Dropdown styles */
#ui-selectBox-dropdown {
	max-height: 200px;
	max-width:710px;
	border: solid 1px #BBB;
	background: #FFF;
	margin-top: -1px;
	overflow: auto;
	-moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	-pie-box-shadow:none;
}

#ui-selectBox-dropdown UL,
#ui-selectBox-dropdown UL LI {
	list-style: none;
	padding: 0;
	margin: 0;
}

#ui-selectBox-dropdown UL LI {
	white-space: nowrap;
	overflow: hidden;
	padding: .3em 4px .1em 6px;
	display: block;
	cursor: default;	
}

#ui-selectBox-dropdown .ui-selectBox-optgroup {
	background: #F2F2F2;
	color: #888;
	padding-left: .6em;
}

#ui-selectBox-dropdown.ui-selectBox-hasOptgroups .ui-selectBox-option {
	padding-left: 20px;
	background-position: 14px center;
}
#ui-selectBox-dropdown .ui-selectBox-current {
	background-color: #C8DEF4;
}

#ui-selectBox-dropdown .ui-selectBox-disabled {
	color: #888;
	font-style: italic;
}
.inputContainer {
	position: relative;
	float: left;
}
.formError {
	position: absolute;
	top: 300px;
	left: 300px;
	display: block;
	z-index: 5000;
	cursor: pointer;
}
.ajaxSubmit {
	padding: 20px;
	background: #55ea55;
	border: 1px solid #999;
	display: none
}

.formError .formErrorContent {
	width: 100%;
	background: #ee0101;
	position:relative;
	z-index:5001;
	color: #fff;
	width: 200px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	border: 2px solid #ddd;
	box-shadow: 0 0 6px #000;
	-moz-box-shadow: 0 0 6px #000;
	-webkit-box-shadow: 0 0 6px #000;
	padding: 4px 10px 4px 10px;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	text-align: left;
}

.greenPopup .formErrorContent {
	background: #33be40;
}

.blackPopup .formErrorContent {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow {
	width: 15px;
	margin: -2px 0 0 13px;
  position:relative;
  z-index: 5006;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
	margin: 0px 0 0 12px;
  top:2px;
}

.formError .formErrorArrow div {
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	box-shadow: 0 2px 3px #444;
	-moz-box-shadow: 0 2px 3px #444;
	-webkit-box-shadow: 0 2px 3px #444;
	font-size: 0px;
	height: 1px;
	background: #ee0101;
	margin: 0 auto;
	line-height: 0;
	font-size: 0;
	display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.greenPopup .formErrorArrow div {
	background: #33be40;
}

.blackPopup .formErrorArrow div {
	background: #393939;
	color: #FFF;
}

.formError .formErrorArrow .line10 {
	width: 15px;
	border: none;
}

.formError .formErrorArrow .line9 {
	width: 13px;
	border: none;
}

.formError .formErrorArrow .line8 {
	width: 11px;
}

.formError .formErrorArrow .line7 {
	width: 9px;
}

.formError .formErrorArrow .line6 {
	width: 7px;
}

.formError .formErrorArrow .line5 {
	width: 5px;
}

.formError .formErrorArrow .line4 {
	width: 3px;
}

.formError .formErrorArrow .line3 {
	width: 1px;
	border-left: 2px solid #ddd;
	border-right: 2px solid #ddd;
	border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
	width: 3px;
	border: none;
	background: #ddd;
}

.formError .formErrorArrow .line1 {
	width: 1px;
	border: none;
	background: #ddd;
}
/**
 * Variables declared here can be overridden by consuming applications, with
 * the help of the `!default` flag.
 *
 * @example
 *     // overriding $hoverColor
 *     $hoverColor: rgba(red, 0.05);
 *
 *     // overriding image path
 *     $flagsImagePath: "images/";
 *
 *     // import the scss file after the overrides
 *     @import "bower_component/intl-tel-input/src/css/intlTelInput";
 */
.intl-tel-input {
  position: relative;
  display: inline-block; }
  .intl-tel-input * {
    box-sizing: border-box;
    -moz-box-sizing: border-box; }
  .intl-tel-input .hide {
    display: none; }
  .intl-tel-input .v-hide {
    visibility: hidden; }
  .intl-tel-input input, .intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
    position: relative;
    z-index: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-right: 36px;
    margin-right: 0; }
  .intl-tel-input .flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px; }
  .intl-tel-input .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 8px; }
    .intl-tel-input .selected-flag .iti-flag {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto; }
    .intl-tel-input .selected-flag .iti-arrow {
      position: absolute;
      top: 50%;
      margin-top: -2px;
      right: 6px;
      width: 0;
      height: 0;
      border-left: 3px solid transparent;
      border-right: 3px solid transparent;
      border-top: 4px solid #555; }
      .intl-tel-input .selected-flag .iti-arrow.up {
        border-top: none;
        border-bottom: 4px solid #555; }
  .intl-tel-input .country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: nowrap;
    max-height: 200px;
    overflow-y: scroll; }
    .intl-tel-input .country-list.dropup {
      bottom: 100%;
      margin-bottom: -1px; }
    .intl-tel-input .country-list .flag-box {
      display: inline-block;
      width: 20px; }
    @media (max-width: 500px) {
      .intl-tel-input .country-list {
        white-space: normal; } }
    .intl-tel-input .country-list .divider {
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px solid #CCC; }
    .intl-tel-input .country-list .country {
      padding: 5px 10px; }
      .intl-tel-input .country-list .country .dial-code {
        color: #999; }
    .intl-tel-input .country-list .country.highlight {
      background-color: rgba(0, 0, 0, 0.05); }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .dial-code {
      vertical-align: middle; }
    .intl-tel-input .country-list .flag-box, .intl-tel-input .country-list .country-name {
      margin-right: 6px; }
  .intl-tel-input.allow-dropdown input, .intl-tel-input.allow-dropdown input[type=text], .intl-tel-input.allow-dropdown input[type=tel], .intl-tel-input.separate-dial-code input, .intl-tel-input.separate-dial-code input[type=text], .intl-tel-input.separate-dial-code input[type=tel] {
    padding-right: 6px;
    padding-left: 52px;
    margin-left: 0; }
  .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container {
    right: auto;
    left: 0; }
  .intl-tel-input.allow-dropdown .selected-flag, .intl-tel-input.separate-dial-code .selected-flag {
    width: 46px; }
  .intl-tel-input.allow-dropdown .flag-container:hover {
    cursor: pointer; }
    .intl-tel-input.allow-dropdown .flag-container:hover .selected-flag {
      background-color: rgba(0, 0, 0, 0.05); }
  .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover {
    cursor: default; }
    .intl-tel-input.allow-dropdown input[disabled] + .flag-container:hover .selected-flag, .intl-tel-input.allow-dropdown input[readonly] + .flag-container:hover .selected-flag {
      background-color: transparent; }
  .intl-tel-input.separate-dial-code .selected-flag {
    background-color: rgba(0, 0, 0, 0.05);
    display: table; }
  .intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    vertical-align: middle;
    padding-left: 28px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 input, .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-2 input[type=tel] {
    padding-left: 66px; }
  .intl-tel-input.separate-dial-code.iti-sdc-2 .selected-flag {
    width: 60px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 input[type=tel] {
    padding-left: 76px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-2 .selected-flag {
    width: 70px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 input, .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-3 input[type=tel] {
    padding-left: 74px; }
  .intl-tel-input.separate-dial-code.iti-sdc-3 .selected-flag {
    width: 68px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel] {
    padding-left: 84px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 .selected-flag {
    width: 78px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 input, .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-4 input[type=tel] {
    padding-left: 82px; }
  .intl-tel-input.separate-dial-code.iti-sdc-4 .selected-flag {
    width: 76px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 input[type=tel] {
    padding-left: 92px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag {
    width: 86px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 input, .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.iti-sdc-5 input[type=tel] {
    padding-left: 90px; }
  .intl-tel-input.separate-dial-code.iti-sdc-5 .selected-flag {
    width: 84px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input, .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=text], .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 input[type=tel] {
    padding-left: 100px; }
  .intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-5 .selected-flag {
    width: 94px; }
  .intl-tel-input.iti-container {
    position: absolute;
    top: -1000px;
    left: -1000px;
    z-index: 1060;
    padding: 1px; }
    .intl-tel-input.iti-container:hover {
      cursor: pointer; }

.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed; }

.iti-mobile .intl-tel-input .country-list {
  max-height: 100%;
  width: 100%; }
  .iti-mobile .intl-tel-input .country-list .country {
    padding: 10px 10px;
    line-height: 1.5em; }

.iti-flag {
  width: 20px; }
  .iti-flag.be {
    width: 18px; }
  .iti-flag.ch {
    width: 15px; }
  .iti-flag.mc {
    width: 19px; }
  .iti-flag.ne {
    width: 18px; }
  .iti-flag.np {
    width: 13px; }
  .iti-flag.va {
    width: 15px; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-size: 5630px 15px; } }
  .iti-flag.ac {
    height: 10px;
    background-position: 0px 0px; }
  .iti-flag.ad {
    height: 14px;
    background-position: -22px 0px; }
  .iti-flag.ae {
    height: 10px;
    background-position: -44px 0px; }
  .iti-flag.af {
    height: 14px;
    background-position: -66px 0px; }
  .iti-flag.ag {
    height: 14px;
    background-position: -88px 0px; }
  .iti-flag.ai {
    height: 10px;
    background-position: -110px 0px; }
  .iti-flag.al {
    height: 15px;
    background-position: -132px 0px; }
  .iti-flag.am {
    height: 10px;
    background-position: -154px 0px; }
  .iti-flag.ao {
    height: 14px;
    background-position: -176px 0px; }
  .iti-flag.aq {
    height: 14px;
    background-position: -198px 0px; }
  .iti-flag.ar {
    height: 13px;
    background-position: -220px 0px; }
  .iti-flag.as {
    height: 10px;
    background-position: -242px 0px; }
  .iti-flag.at {
    height: 14px;
    background-position: -264px 0px; }
  .iti-flag.au {
    height: 10px;
    background-position: -286px 0px; }
  .iti-flag.aw {
    height: 14px;
    background-position: -308px 0px; }
  .iti-flag.ax {
    height: 13px;
    background-position: -330px 0px; }
  .iti-flag.az {
    height: 10px;
    background-position: -352px 0px; }
  .iti-flag.ba {
    height: 10px;
    background-position: -374px 0px; }
  .iti-flag.bb {
    height: 14px;
    background-position: -396px 0px; }
  .iti-flag.bd {
    height: 12px;
    background-position: -418px 0px; }
  .iti-flag.be {
    height: 15px;
    background-position: -440px 0px; }
  .iti-flag.bf {
    height: 14px;
    background-position: -460px 0px; }
  .iti-flag.bg {
    height: 12px;
    background-position: -482px 0px; }
  .iti-flag.bh {
    height: 12px;
    background-position: -504px 0px; }
  .iti-flag.bi {
    height: 12px;
    background-position: -526px 0px; }
  .iti-flag.bj {
    height: 14px;
    background-position: -548px 0px; }
  .iti-flag.bl {
    height: 14px;
    background-position: -570px 0px; }
  .iti-flag.bm {
    height: 10px;
    background-position: -592px 0px; }
  .iti-flag.bn {
    height: 10px;
    background-position: -614px 0px; }
  .iti-flag.bo {
    height: 14px;
    background-position: -636px 0px; }
  .iti-flag.bq {
    height: 14px;
    background-position: -658px 0px; }
  .iti-flag.br {
    height: 14px;
    background-position: -680px 0px; }
  .iti-flag.bs {
    height: 10px;
    background-position: -702px 0px; }
  .iti-flag.bt {
    height: 14px;
    background-position: -724px 0px; }
  .iti-flag.bv {
    height: 15px;
    background-position: -746px 0px; }
  .iti-flag.bw {
    height: 14px;
    background-position: -768px 0px; }
  .iti-flag.by {
    height: 10px;
    background-position: -790px 0px; }
  .iti-flag.bz {
    height: 14px;
    background-position: -812px 0px; }
  .iti-flag.ca {
    height: 10px;
    background-position: -834px 0px; }
  .iti-flag.cc {
    height: 10px;
    background-position: -856px 0px; }
  .iti-flag.cd {
    height: 15px;
    background-position: -878px 0px; }
  .iti-flag.cf {
    height: 14px;
    background-position: -900px 0px; }
  .iti-flag.cg {
    height: 14px;
    background-position: -922px 0px; }
  .iti-flag.ch {
    height: 15px;
    background-position: -944px 0px; }
  .iti-flag.ci {
    height: 14px;
    background-position: -961px 0px; }
  .iti-flag.ck {
    height: 10px;
    background-position: -983px 0px; }
  .iti-flag.cl {
    height: 14px;
    background-position: -1005px 0px; }
  .iti-flag.cm {
    height: 14px;
    background-position: -1027px 0px; }
  .iti-flag.cn {
    height: 14px;
    background-position: -1049px 0px; }
  .iti-flag.co {
    height: 14px;
    background-position: -1071px 0px; }
  .iti-flag.cp {
    height: 14px;
    background-position: -1093px 0px; }
  .iti-flag.cr {
    height: 12px;
    background-position: -1115px 0px; }
  .iti-flag.cu {
    height: 10px;
    background-position: -1137px 0px; }
  .iti-flag.cv {
    height: 12px;
    background-position: -1159px 0px; }
  .iti-flag.cw {
    height: 14px;
    background-position: -1181px 0px; }
  .iti-flag.cx {
    height: 10px;
    background-position: -1203px 0px; }
  .iti-flag.cy {
    height: 13px;
    background-position: -1225px 0px; }
  .iti-flag.cz {
    height: 14px;
    background-position: -1247px 0px; }
  .iti-flag.de {
    height: 12px;
    background-position: -1269px 0px; }
  .iti-flag.dg {
    height: 10px;
    background-position: -1291px 0px; }
  .iti-flag.dj {
    height: 14px;
    background-position: -1313px 0px; }
  .iti-flag.dk {
    height: 15px;
    background-position: -1335px 0px; }
  .iti-flag.dm {
    height: 10px;
    background-position: -1357px 0px; }
  .iti-flag.do {
    height: 13px;
    background-position: -1379px 0px; }
  .iti-flag.dz {
    height: 14px;
    background-position: -1401px 0px; }
  .iti-flag.ea {
    height: 14px;
    background-position: -1423px 0px; }
  .iti-flag.ec {
    height: 14px;
    background-position: -1445px 0px; }
  .iti-flag.ee {
    height: 13px;
    background-position: -1467px 0px; }
  .iti-flag.eg {
    height: 14px;
    background-position: -1489px 0px; }
  .iti-flag.eh {
    height: 10px;
    background-position: -1511px 0px; }
  .iti-flag.er {
    height: 10px;
    background-position: -1533px 0px; }
  .iti-flag.es {
    height: 14px;
    background-position: -1555px 0px; }
  .iti-flag.et {
    height: 10px;
    background-position: -1577px 0px; }
  .iti-flag.eu {
    height: 14px;
    background-position: -1599px 0px; }
  .iti-flag.fi {
    height: 12px;
    background-position: -1621px 0px; }
  .iti-flag.fj {
    height: 10px;
    background-position: -1643px 0px; }
  .iti-flag.fk {
    height: 10px;
    background-position: -1665px 0px; }
  .iti-flag.fm {
    height: 11px;
    background-position: -1687px 0px; }
  .iti-flag.fo {
    height: 15px;
    background-position: -1709px 0px; }
  .iti-flag.fr {
    height: 14px;
    background-position: -1731px 0px; }
  .iti-flag.ga {
    height: 15px;
    background-position: -1753px 0px; }
  .iti-flag.gb {
    height: 10px;
    background-position: -1775px 0px; }
  .iti-flag.gd {
    height: 12px;
    background-position: -1797px 0px; }
  .iti-flag.ge {
    height: 14px;
    background-position: -1819px 0px; }
  .iti-flag.gf {
    height: 14px;
    background-position: -1841px 0px; }
  .iti-flag.gg {
    height: 14px;
    background-position: -1863px 0px; }
  .iti-flag.gh {
    height: 14px;
    background-position: -1885px 0px; }
  .iti-flag.gi {
    height: 10px;
    background-position: -1907px 0px; }
  .iti-flag.gl {
    height: 14px;
    background-position: -1929px 0px; }
  .iti-flag.gm {
    height: 14px;
    background-position: -1951px 0px; }
  .iti-flag.gn {
    height: 14px;
    background-position: -1973px 0px; }
  .iti-flag.gp {
    height: 14px;
    background-position: -1995px 0px; }
  .iti-flag.gq {
    height: 14px;
    background-position: -2017px 0px; }
  .iti-flag.gr {
    height: 14px;
    background-position: -2039px 0px; }
  .iti-flag.gs {
    height: 10px;
    background-position: -2061px 0px; }
  .iti-flag.gt {
    height: 13px;
    background-position: -2083px 0px; }
  .iti-flag.gu {
    height: 11px;
    background-position: -2105px 0px; }
  .iti-flag.gw {
    height: 10px;
    background-position: -2127px 0px; }
  .iti-flag.gy {
    height: 12px;
    background-position: -2149px 0px; }
  .iti-flag.hk {
    height: 14px;
    background-position: -2171px 0px; }
  .iti-flag.hm {
    height: 10px;
    background-position: -2193px 0px; }
  .iti-flag.hn {
    height: 10px;
    background-position: -2215px 0px; }
  .iti-flag.hr {
    height: 10px;
    background-position: -2237px 0px; }
  .iti-flag.ht {
    height: 12px;
    background-position: -2259px 0px; }
  .iti-flag.hu {
    height: 10px;
    background-position: -2281px 0px; }
  .iti-flag.ic {
    height: 14px;
    background-position: -2303px 0px; }
  .iti-flag.id {
    height: 14px;
    background-position: -2325px 0px; }
  .iti-flag.ie {
    height: 10px;
    background-position: -2347px 0px; }
  .iti-flag.il {
    height: 15px;
    background-position: -2369px 0px; }
  .iti-flag.im {
    height: 10px;
    background-position: -2391px 0px; }
  .iti-flag.in {
    height: 14px;
    background-position: -2413px 0px; }
  .iti-flag.io {
    height: 10px;
    background-position: -2435px 0px; }
  .iti-flag.iq {
    height: 14px;
    background-position: -2457px 0px; }
  .iti-flag.ir {
    height: 12px;
    background-position: -2479px 0px; }
  .iti-flag.is {
    height: 15px;
    background-position: -2501px 0px; }
  .iti-flag.it {
    height: 14px;
    background-position: -2523px 0px; }
  .iti-flag.je {
    height: 12px;
    background-position: -2545px 0px; }
  .iti-flag.jm {
    height: 10px;
    background-position: -2567px 0px; }
  .iti-flag.jo {
    height: 10px;
    background-position: -2589px 0px; }
  .iti-flag.jp {
    height: 14px;
    background-position: -2611px 0px; }
  .iti-flag.ke {
    height: 14px;
    background-position: -2633px 0px; }
  .iti-flag.kg {
    height: 12px;
    background-position: -2655px 0px; }
  .iti-flag.kh {
    height: 13px;
    background-position: -2677px 0px; }
  .iti-flag.ki {
    height: 10px;
    background-position: -2699px 0px; }
  .iti-flag.km {
    height: 12px;
    background-position: -2721px 0px; }
  .iti-flag.kn {
    height: 14px;
    background-position: -2743px 0px; }
  .iti-flag.kp {
    height: 10px;
    background-position: -2765px 0px; }
  .iti-flag.kr {
    height: 14px;
    background-position: -2787px 0px; }
  .iti-flag.kw {
    height: 10px;
    background-position: -2809px 0px; }
  .iti-flag.ky {
    height: 10px;
    background-position: -2831px 0px; }
  .iti-flag.kz {
    height: 10px;
    background-position: -2853px 0px; }
  .iti-flag.la {
    height: 14px;
    background-position: -2875px 0px; }
  .iti-flag.lb {
    height: 14px;
    background-position: -2897px 0px; }
  .iti-flag.lc {
    height: 10px;
    background-position: -2919px 0px; }
  .iti-flag.li {
    height: 12px;
    background-position: -2941px 0px; }
  .iti-flag.lk {
    height: 10px;
    background-position: -2963px 0px; }
  .iti-flag.lr {
    height: 11px;
    background-position: -2985px 0px; }
  .iti-flag.ls {
    height: 14px;
    background-position: -3007px 0px; }
  .iti-flag.lt {
    height: 12px;
    background-position: -3029px 0px; }
  .iti-flag.lu {
    height: 12px;
    background-position: -3051px 0px; }
  .iti-flag.lv {
    height: 10px;
    background-position: -3073px 0px; }
  .iti-flag.ly {
    height: 10px;
    background-position: -3095px 0px; }
  .iti-flag.ma {
    height: 14px;
    background-position: -3117px 0px; }
  .iti-flag.mc {
    height: 15px;
    background-position: -3139px 0px; }
  .iti-flag.md {
    height: 10px;
    background-position: -3160px 0px; }
  .iti-flag.me {
    height: 10px;
    background-position: -3182px 0px; }
  .iti-flag.mf {
    height: 14px;
    background-position: -3204px 0px; }
  .iti-flag.mg {
    height: 14px;
    background-position: -3226px 0px; }
  .iti-flag.mh {
    height: 11px;
    background-position: -3248px 0px; }
  .iti-flag.mk {
    height: 10px;
    background-position: -3270px 0px; }
  .iti-flag.ml {
    height: 14px;
    background-position: -3292px 0px; }
  .iti-flag.mm {
    height: 14px;
    background-position: -3314px 0px; }
  .iti-flag.mn {
    height: 10px;
    background-position: -3336px 0px; }
  .iti-flag.mo {
    height: 14px;
    background-position: -3358px 0px; }
  .iti-flag.mp {
    height: 10px;
    background-position: -3380px 0px; }
  .iti-flag.mq {
    height: 14px;
    background-position: -3402px 0px; }
  .iti-flag.mr {
    height: 14px;
    background-position: -3424px 0px; }
  .iti-flag.ms {
    height: 10px;
    background-position: -3446px 0px; }
  .iti-flag.mt {
    height: 14px;
    background-position: -3468px 0px; }
  .iti-flag.mu {
    height: 14px;
    background-position: -3490px 0px; }
  .iti-flag.mv {
    height: 14px;
    background-position: -3512px 0px; }
  .iti-flag.mw {
    height: 14px;
    background-position: -3534px 0px; }
  .iti-flag.mx {
    height: 12px;
    background-position: -3556px 0px; }
  .iti-flag.my {
    height: 10px;
    background-position: -3578px 0px; }
  .iti-flag.mz {
    height: 14px;
    background-position: -3600px 0px; }
  .iti-flag.na {
    height: 14px;
    background-position: -3622px 0px; }
  .iti-flag.nc {
    height: 10px;
    background-position: -3644px 0px; }
  .iti-flag.ne {
    height: 15px;
    background-position: -3666px 0px; }
  .iti-flag.nf {
    height: 10px;
    background-position: -3686px 0px; }
  .iti-flag.ng {
    height: 10px;
    background-position: -3708px 0px; }
  .iti-flag.ni {
    height: 12px;
    background-position: -3730px 0px; }
  .iti-flag.nl {
    height: 14px;
    background-position: -3752px 0px; }
  .iti-flag.no {
    height: 15px;
    background-position: -3774px 0px; }
  .iti-flag.np {
    height: 15px;
    background-position: -3796px 0px; }
  .iti-flag.nr {
    height: 10px;
    background-position: -3811px 0px; }
  .iti-flag.nu {
    height: 10px;
    background-position: -3833px 0px; }
  .iti-flag.nz {
    height: 10px;
    background-position: -3855px 0px; }
  .iti-flag.om {
    height: 10px;
    background-position: -3877px 0px; }
  .iti-flag.pa {
    height: 14px;
    background-position: -3899px 0px; }
  .iti-flag.pe {
    height: 14px;
    background-position: -3921px 0px; }
  .iti-flag.pf {
    height: 14px;
    background-position: -3943px 0px; }
  .iti-flag.pg {
    height: 15px;
    background-position: -3965px 0px; }
  .iti-flag.ph {
    height: 10px;
    background-position: -3987px 0px; }
  .iti-flag.pk {
    height: 14px;
    background-position: -4009px 0px; }
  .iti-flag.pl {
    height: 13px;
    background-position: -4031px 0px; }
  .iti-flag.pm {
    height: 14px;
    background-position: -4053px 0px; }
  .iti-flag.pn {
    height: 10px;
    background-position: -4075px 0px; }
  .iti-flag.pr {
    height: 14px;
    background-position: -4097px 0px; }
  .iti-flag.ps {
    height: 10px;
    background-position: -4119px 0px; }
  .iti-flag.pt {
    height: 14px;
    background-position: -4141px 0px; }
  .iti-flag.pw {
    height: 13px;
    background-position: -4163px 0px; }
  .iti-flag.py {
    height: 11px;
    background-position: -4185px 0px; }
  .iti-flag.qa {
    height: 8px;
    background-position: -4207px 0px; }
  .iti-flag.re {
    height: 14px;
    background-position: -4229px 0px; }
  .iti-flag.ro {
    height: 14px;
    background-position: -4251px 0px; }
  .iti-flag.rs {
    height: 14px;
    background-position: -4273px 0px; }
  .iti-flag.ru {
    height: 14px;
    background-position: -4295px 0px; }
  .iti-flag.rw {
    height: 14px;
    background-position: -4317px 0px; }
  .iti-flag.sa {
    height: 14px;
    background-position: -4339px 0px; }
  .iti-flag.sb {
    height: 10px;
    background-position: -4361px 0px; }
  .iti-flag.sc {
    height: 10px;
    background-position: -4383px 0px; }
  .iti-flag.sd {
    height: 10px;
    background-position: -4405px 0px; }
  .iti-flag.se {
    height: 13px;
    background-position: -4427px 0px; }
  .iti-flag.sg {
    height: 14px;
    background-position: -4449px 0px; }
  .iti-flag.sh {
    height: 10px;
    background-position: -4471px 0px; }
  .iti-flag.si {
    height: 10px;
    background-position: -4493px 0px; }
  .iti-flag.sj {
    height: 15px;
    background-position: -4515px 0px; }
  .iti-flag.sk {
    height: 14px;
    background-position: -4537px 0px; }
  .iti-flag.sl {
    height: 14px;
    background-position: -4559px 0px; }
  .iti-flag.sm {
    height: 15px;
    background-position: -4581px 0px; }
  .iti-flag.sn {
    height: 14px;
    background-position: -4603px 0px; }
  .iti-flag.so {
    height: 14px;
    background-position: -4625px 0px; }
  .iti-flag.sr {
    height: 14px;
    background-position: -4647px 0px; }
  .iti-flag.ss {
    height: 10px;
    background-position: -4669px 0px; }
  .iti-flag.st {
    height: 10px;
    background-position: -4691px 0px; }
  .iti-flag.sv {
    height: 12px;
    background-position: -4713px 0px; }
  .iti-flag.sx {
    height: 14px;
    background-position: -4735px 0px; }
  .iti-flag.sy {
    height: 14px;
    background-position: -4757px 0px; }
  .iti-flag.sz {
    height: 14px;
    background-position: -4779px 0px; }
  .iti-flag.ta {
    height: 10px;
    background-position: -4801px 0px; }
  .iti-flag.tc {
    height: 10px;
    background-position: -4823px 0px; }
  .iti-flag.td {
    height: 14px;
    background-position: -4845px 0px; }
  .iti-flag.tf {
    height: 14px;
    background-position: -4867px 0px; }
  .iti-flag.tg {
    height: 13px;
    background-position: -4889px 0px; }
  .iti-flag.th {
    height: 14px;
    background-position: -4911px 0px; }
  .iti-flag.tj {
    height: 10px;
    background-position: -4933px 0px; }
  .iti-flag.tk {
    height: 10px;
    background-position: -4955px 0px; }
  .iti-flag.tl {
    height: 10px;
    background-position: -4977px 0px; }
  .iti-flag.tm {
    height: 14px;
    background-position: -4999px 0px; }
  .iti-flag.tn {
    height: 14px;
    background-position: -5021px 0px; }
  .iti-flag.to {
    height: 10px;
    background-position: -5043px 0px; }
  .iti-flag.tr {
    height: 14px;
    background-position: -5065px 0px; }
  .iti-flag.tt {
    height: 12px;
    background-position: -5087px 0px; }
  .iti-flag.tv {
    height: 10px;
    background-position: -5109px 0px; }
  .iti-flag.tw {
    height: 14px;
    background-position: -5131px 0px; }
  .iti-flag.tz {
    height: 14px;
    background-position: -5153px 0px; }
  .iti-flag.ua {
    height: 14px;
    background-position: -5175px 0px; }
  .iti-flag.ug {
    height: 14px;
    background-position: -5197px 0px; }
  .iti-flag.um {
    height: 11px;
    background-position: -5219px 0px; }
  .iti-flag.us {
    height: 11px;
    background-position: -5241px 0px; }
  .iti-flag.uy {
    height: 14px;
    background-position: -5263px 0px; }
  .iti-flag.uz {
    height: 10px;
    background-position: -5285px 0px; }
  .iti-flag.va {
    height: 15px;
    background-position: -5307px 0px; }
  .iti-flag.vc {
    height: 14px;
    background-position: -5324px 0px; }
  .iti-flag.ve {
    height: 14px;
    background-position: -5346px 0px; }
  .iti-flag.vg {
    height: 10px;
    background-position: -5368px 0px; }
  .iti-flag.vi {
    height: 14px;
    background-position: -5390px 0px; }
  .iti-flag.vn {
    height: 14px;
    background-position: -5412px 0px; }
  .iti-flag.vu {
    height: 12px;
    background-position: -5434px 0px; }
  .iti-flag.wf {
    height: 14px;
    background-position: -5456px 0px; }
  .iti-flag.ws {
    height: 10px;
    background-position: -5478px 0px; }
  .iti-flag.xk {
    height: 15px;
    background-position: -5500px 0px; }
  .iti-flag.ye {
    height: 14px;
    background-position: -5522px 0px; }
  .iti-flag.yt {
    height: 14px;
    background-position: -5544px 0px; }
  .iti-flag.za {
    height: 14px;
    background-position: -5566px 0px; }
  .iti-flag.zm {
    height: 14px;
    background-position: -5588px 0px; }
  .iti-flag.zw {
    height: 10px;
    background-position: -5610px 0px; }

.iti-flag {
  width: 20px;
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("/img/intlTelInput/flags.png");
  background-repeat: no-repeat;
  background-color: #DBDBDB;
  background-position: 20px 0; }
  @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {
      background-image: url("/img/intlTelInput/flags2x.png"); } }

.iti-flag.np {
  background-color: transparent; }
.mejs-offscreen{position:absolute!important;top:-10000px;left:-10000px;overflow:hidden;width:1px;height:1px}.mejs-container{position:relative;background:#000;font-family:Helvetica,Arial;text-align:left;vertical-align:top;text-indent:0}.mejs-container:focus{outline:0}.me-plugin{position:absolute}.mejs-embed,.mejs-embed body{width:100%;height:100%;margin:0;padding:0;background:#000;overflow:hidden}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{width:100%;height:100%}.mejs-clear{clear:both}.mejs-background{position:absolute;top:0;left:0}.mejs-mediaelement{position:absolute;top:0;left:0;width:100%;height:100%}.mejs-poster{position:absolute;top:0;left:0;background-size:contain;background-position:50% 50%;background-repeat:no-repeat}:root .mejs-poster img{display:none}.mejs-poster img{border:0;padding:0;border:0}.mejs-overlay{position:absolute;top:0;left:0}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;background:url("/img/mediaelement/bigplay.svg") no-repeat}.no-svg .mejs-overlay-button{background-image:url("/img/mediaelement/bigplay.png")}.mejs-overlay:hover .mejs-overlay-button{background-position:0 -100px}.mejs-overlay-loading{position:absolute;top:50%;left:50%;width:80px;height:80px;margin:-40px 0 0 -40px;background:#333;background:url("/img/mediaelement/background.png");background:rgba(0,0,0,.9);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,.9)),to(rgba(0,0,0,.9)));background:-webkit-linear-gradient(top,rgba(50,50,50,.9),rgba(0,0,0,.9));background:-moz-linear-gradient(top,rgba(50,50,50,.9),rgba(0,0,0,.9));background:-o-linear-gradient(top,rgba(50,50,50,.9),rgba(0,0,0,.9));background:-ms-linear-gradient(top,rgba(50,50,50,.9),rgba(0,0,0,.9));background:linear-gradient(rgba(50,50,50,.9),rgba(0,0,0,.9))}.mejs-overlay-loading span{display:block;width:80px;height:80px;background:transparent url("/img/mediaelement/loading.gif") 50% 50% no-repeat}.mejs-container .mejs-controls{position:absolute;list-style-type:none;margin:0;padding:0;bottom:0;left:0;background:url("/img/mediaelement/background.png");background:rgba(0,0,0,.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,.7)),to(rgba(0,0,0,.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-moz-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-o-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-ms-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:linear-gradient(rgba(50,50,50,.7),rgba(0,0,0,.7));height:30px;width:100%}.mejs-container .mejs-controls div{list-style-type:none;background-image:none;display:block;float:left;margin:0;padding:0;width:26px;height:26px;font-size:11px;line-height:11px;font-family:Helvetica,Arial;border:0}.mejs-controls .mejs-button button{cursor:pointer;display:block;font-size:0;line-height:0;text-decoration:none;margin:7px 5px;padding:0;position:absolute;height:16px;width:16px;min-width:0;border:0;background:transparent url("/img/mediaelement/controls.svg") no-repeat}.no-svg .mejs-controls .mejs-button button{background-image:url("/img/mediaelement/controls.png")}.mejs-controls .mejs-button button:focus{outline:dotted 1px #999}.mejs-container .mejs-controls .mejs-time{color:#fff;display:block;height:17px;width:auto;padding:10px 3px 0;overflow:hidden;text-align:center;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}.mejs-container .mejs-controls .mejs-time a{color:#fff;font-size:11px;line-height:12px;display:block;float:left;margin:1px 2px 0 0;width:auto}.mejs-controls .mejs-play button{background-position:0 0}.mejs-controls .mejs-pause button{background-position:0 -16px}.mejs-controls .mejs-stop button{background-position:-112px 0}.mejs-controls div.mejs-time-rail{direction:ltr;width:200px;padding-top:5px}.mejs-controls .mejs-time-rail span,.mejs-controls .mejs-time-rail a{display:block;position:absolute;width:180px;height:10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:pointer}.mejs-controls .mejs-time-rail .mejs-time-total{margin:5px;background:#333;background:rgba(50,50,50,.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(30,30,30,.8)),to(rgba(60,60,60,.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-moz-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-o-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-ms-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:linear-gradient(rgba(30,30,30,.8),rgba(60,60,60,.8))}.mejs-controls .mejs-time-rail .mejs-time-buffering{width:100%;background-image:-o-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:15px 15px;-moz-background-size:15px 15px;-o-background-size:15px 15px;background-size:15px 15px;-webkit-animation:buffering-stripes 2s linear infinite;-moz-animation:buffering-stripes 2s linear infinite;-ms-animation:buffering-stripes 2s linear infinite;-o-animation:buffering-stripes 2s linear infinite;animation:buffering-stripes 2s linear infinite}@-webkit-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-moz-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-ms-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@-o-keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}@keyframes buffering-stripes{from{background-position:0 0}to{background-position:30px 0}}.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#3caac8;background:rgba(60,170,200,.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(44,124,145,.8)),to(rgba(78,183,212,.8)));background:-webkit-linear-gradient(top,rgba(44,124,145,.8),rgba(78,183,212,.8));background:-moz-linear-gradient(top,rgba(44,124,145,.8),rgba(78,183,212,.8));background:-o-linear-gradient(top,rgba(44,124,145,.8),rgba(78,183,212,.8));background:-ms-linear-gradient(top,rgba(44,124,145,.8),rgba(78,183,212,.8));background:linear-gradient(rgba(44,124,145,.8),rgba(78,183,212,.8));width:0}.mejs-controls .mejs-time-rail .mejs-time-current{background:#fff;background:rgba(255,255,255,.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(255,255,255,.9)),to(rgba(200,200,200,.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-moz-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-o-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-ms-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:linear-gradient(rgba(255,255,255,.9),rgba(200,200,200,.8));width:0}.mejs-controls .mejs-time-rail .mejs-time-handle{display:none;position:absolute;margin:0;width:10px;background:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;border:solid 2px #333;top:-2px;text-align:center}.mejs-controls .mejs-time-rail .mejs-time-float{position:absolute;display:none;background:#eee;width:36px;height:17px;border:solid 1px #333;top:-26px;margin-left:-18px;text-align:center;color:#111}.mejs-controls .mejs-time-rail .mejs-time-float-current{margin:2px;width:30px;display:block;text-align:center;left:0}.mejs-controls .mejs-time-rail .mejs-time-float-corner{position:absolute;display:block;width:0;height:0;line-height:0;border:solid 5px #eee;border-color:#eee transparent transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:15px;left:13px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float{width:48px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current{width:44px}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner{left:18px}.mejs-controls .mejs-fullscreen-button button{background-position:-32px 0}.mejs-controls .mejs-unfullscreen button{background-position:-32px -16px}.mejs-controls .mejs-volume-button{}.mejs-controls .mejs-mute button{background-position:-16px -16px}.mejs-controls .mejs-unmute button{background-position:-16px 0}.mejs-controls .mejs-volume-button{position:relative}.mejs-controls .mejs-volume-button .mejs-volume-slider{display:none;height:115px;width:25px;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:-115px;left:0;z-index:1;position:absolute;margin:0}.mejs-controls .mejs-volume-button:hover{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,.5);margin:0}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,.9);margin:0}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle{position:absolute;left:4px;top:-3px;width:16px;height:6px;background:#ddd;background:rgba(255,255,255,.9);cursor:N-resize;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;margin:0}.mejs-controls a.mejs-horizontal-volume-slider{height:26px;width:56px;position:relative;display:block;float:left;vertical-align:middle}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#333;background:rgba(50,50,50,.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(30,30,30,.8)),to(rgba(60,60,60,.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-moz-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-o-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:-ms-linear-gradient(top,rgba(30,30,30,.8),rgba(60,60,60,.8));background:linear-gradient(rgba(30,30,30,.8),rgba(60,60,60,.8))}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#fff;background:rgba(255,255,255,.8);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(255,255,255,.9)),to(rgba(200,200,200,.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-moz-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-o-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:-ms-linear-gradient(top,rgba(255,255,255,.9),rgba(200,200,200,.8));background:linear-gradient(rgba(255,255,255,.9),rgba(200,200,200,.8))}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle{display:none}.mejs-controls .mejs-captions-button{position:relative}.mejs-controls .mejs-captions-button button{background-position:-48px 0}.mejs-controls .mejs-captions-button .mejs-captions-selector{visibility:hidden;position:absolute;bottom:26px;right:-51px;width:85px;height:100px;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);border:solid 1px transparent;padding:10px 10px 0;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-captions-button .mejs-captions-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{margin:0 0 6px;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{width:55px;float:left;padding:4px 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px}.mejs-controls .mejs-captions-button .mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-chapters{position:absolute;top:0;left:0;-xborder-right:solid 1px #fff;width:10000px;z-index:1}.mejs-chapters .mejs-chapter{position:absolute;float:left;background:#222;background:rgba(0,0,0,.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(50,50,50,.7)),to(rgba(0,0,0,.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-moz-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-o-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:-ms-linear-gradient(top,rgba(50,50,50,.7),rgba(0,0,0,.7));background:linear-gradient(rgba(50,50,50,.7),rgba(0,0,0,.7));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232, endColorstr=#000000);overflow:hidden;border:0}.mejs-chapters .mejs-chapter .mejs-chapter-block{font-size:11px;color:#fff;padding:5px;display:block;border-right:solid 1px #333;border-bottom:solid 1px #333;cursor:pointer}.mejs-chapters .mejs-chapter .mejs-chapter-block-last{border-right:0}.mejs-chapters .mejs-chapter .mejs-chapter-block:hover{background:#666;background:rgba(102,102,102,.7);background:-webkit-gradient(linear,0 0,0 100%,from(rgba(102,102,102,.7)),to(rgba(50,50,50,.6)));background:-webkit-linear-gradient(top,rgba(102,102,102,.7),rgba(50,50,50,.6));background:-moz-linear-gradient(top,rgba(102,102,102,.7),rgba(50,50,50,.6));background:-o-linear-gradient(top,rgba(102,102,102,.7),rgba(50,50,50,.6));background:-ms-linear-gradient(top,rgba(102,102,102,.7),rgba(50,50,50,.6));background:linear-gradient(rgba(102,102,102,.7),rgba(50,50,50,.6));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666, endColorstr=#323232)}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{font-size:12px;font-weight:700;display:block;white-space:nowrap;text-overflow:ellipsis;margin:0 0 3px;line-height:12px}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{font-size:12px;line-height:12px;margin:3px 0 4px;display:block;white-space:nowrap;text-overflow:ellipsis}.mejs-captions-layer{position:absolute;bottom:0;left:0;text-align:center;line-height:20px;font-size:16px;color:#fff}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{position:absolute;width:100%;bottom:15px;left:0}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text{padding:3px 5px;background:url("/img/mediaelement/background.png");background:rgba(20,20,20,.5);white-space:pre-wrap}.me-cannotplay{}.me-cannotplay a{color:#fff;font-weight:700}.me-cannotplay span{padding:15px;display:block}.mejs-controls .mejs-loop-off button{background-position:-64px -16px}.mejs-controls .mejs-loop-on button{background-position:-64px 0}.mejs-controls .mejs-backlight-off button{background-position:-80px -16px}.mejs-controls .mejs-backlight-on button{background-position:-80px 0}.mejs-controls .mejs-picturecontrols-button{background-position:-96px 0}.mejs-contextmenu{position:absolute;width:150px;padding:10px;border-radius:4px;top:0;left:0;background:#fff;border:solid 1px #999;z-index:1001}.mejs-contextmenu .mejs-contextmenu-separator{height:1px;font-size:0;margin:5px 6px;background:#333}.mejs-contextmenu .mejs-contextmenu-item{font-family:Helvetica,Arial;font-size:12px;padding:4px 6px;cursor:pointer;color:#333}.mejs-contextmenu .mejs-contextmenu-item:hover{background:#2C7C91;color:#fff}.mejs-controls .mejs-sourcechooser-button{position:relative}.mejs-controls .mejs-sourcechooser-button button{background-position:-128px 0}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{margin:0 0 6px;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{width:100px;float:left;padding:4px 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px}.mejs-postroll-layer{position:absolute;bottom:0;left:0;width:100%;height:100%;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);z-index:1000;overflow:hidden}.mejs-postroll-layer-content{width:100%;height:100%}.mejs-postroll-close{position:absolute;right:0;top:0;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);color:#fff;padding:4px;z-index:100;cursor:pointer}div.mejs-speed-button{width:46px!important;position:relative}.mejs-controls .mejs-button.mejs-speed-button button{background:transparent;width:36px;font-size:11px;line-height:normal;color:#fff}.mejs-controls .mejs-speed-button .mejs-speed-selector{display:none;position:absolute;top:-100px;left:-10px;width:60px;height:100px;background:url("/img/mediaelement/background.png");background:rgba(50,50,50,.7);border:solid 1px transparent;padding:0;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.mejs-controls .mejs-speed-button:hover>.mejs-speed-selector{display:block}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected{color:rgba(33,248,248,1)}.mejs-controls .mejs-speed-button .mejs-speed-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li{margin:0 0 6px;padding:0 10px;list-style-type:none!important;display:block;color:#fff;overflow:hidden}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;display:none}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label{width:60px;float:left;padding:4px 0 0;line-height:15px;font-family:helvetica,arial;font-size:11.5px;color:#fff;margin-left:5px;cursor:pointer}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover{background-color:#c8c8c8!important;background-color:rgba(255,255,255,.4)!important}.mejs-controls .mejs-button.mejs-jump-forward-button{background:transparent url("/img/mediaelement/jumpforward.png") no-repeat;background-position:3px 3px}.mejs-controls .mejs-button.mejs-jump-forward-button button{background:transparent;font-size:9px;line-height:normal;color:#fff}.mejs-controls .mejs-button.mejs-skip-back-button{background:transparent url("/img/mediaelement/skipback.png") no-repeat;background-position:3px 3px}.mejs-controls .mejs-button.mejs-skip-back-button button{background:transparent;font-size:9px;line-height:normal;color:#fff}/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.7.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2017 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/

/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.chosen-container * {
  box-sizing: border-box;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  clip: rect(0, 0, 0, 0);
}

.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
}

.chosen-container a {
  cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAlCAQAAACn+wJeAAAB4UlEQVRIx+2XsWtTURTGrwouLQQDwYLFzT3yJBDoYoVvySQoKFShSHe7qAgqiMn9rcUibnVwEARBl0AgUIh/QXBxFIpKJHAhUBz0HQcf4U0xtZwu+r3l8t4758fHPe/jvhBcRIUuWbFuMKAWnEB9jEQWAk0SRt8LtMo+RmKdhDGiHrzEChOMHGPsiAkhBDbIMXKu+2KaJUfZwcsXD4RJrJFKKHaw6fVmRnmNT5ydC9TDSDRCIGOMMfh9u8pegRmzNKP8NUZvzu+oR6NY19mddqVVgG7MKL5SvHPrcJu3g/F2xvMqowKUOHMYUJXhrAa8Ku1j90/dVFFXxaypoYFqfzFR80h9mZKyENRUkskrgrSqfZmS1pVkGskvG7SiiUy5TGP5RpA2lMuUyzeC1Cw5yrwxSWtKrij1ZEpqhKBMY5kGXqCKeioiSHXtain817+k9gLLLD887ozhLl8xjGG86onZxuIe99jCsHjTCRMvYvF9+1QIIcTz8RuTzmkfP0+jdaYJHW9jXPYBvYj5/ZNlf06HxvgEYzoC8Tk5l1xAnXP8IHVam8faC3GTn3x5cMJr6q5h0fjI5+L4suU24PFCfMkHhvExHQyL20eQEfERhsVncdEfdYfvGK2jcPUOK/+A/QJb5yp50uoC6QAAAABJRU5ErkJggg==') /*/lib/chosen/chosen-cooltool.css*/ -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAlCAQAAACn+wJeAAAB4UlEQVRIx+2XsWtTURTGrwouLQQDwYLFzT3yJBDoYoVvySQoKFShSHe7qAgqiMn9rcUibnVwEARBl0AgUIh/QXBxFIpKJHAhUBz0HQcf4U0xtZwu+r3l8t4758fHPe/jvhBcRIUuWbFuMKAWnEB9jEQWAk0SRt8LtMo+RmKdhDGiHrzEChOMHGPsiAkhBDbIMXKu+2KaJUfZwcsXD4RJrJFKKHaw6fVmRnmNT5ydC9TDSDRCIGOMMfh9u8pegRmzNKP8NUZvzu+oR6NY19mddqVVgG7MKL5SvHPrcJu3g/F2xvMqowKUOHMYUJXhrAa8Ku1j90/dVFFXxaypoYFqfzFR80h9mZKyENRUkskrgrSqfZmS1pVkGskvG7SiiUy5TGP5RpA2lMuUyzeC1Cw5yrwxSWtKrij1ZEpqhKBMY5kGXqCKeioiSHXtain817+k9gLLLD887ozhLl8xjGG86onZxuIe99jCsHjTCRMvYvF9+1QIIcTz8RuTzmkfP0+jdaYJHW9jXPYBvYj5/ZNlf06HxvgEYzoC8Tk5l1xAnXP8IHVam8faC3GTn3x5cMJr6q5h0fjI5+L4suU24PFCfMkHhvExHQyL20eQEfERhsVncdEfdYfvGK2jcPUOK/+A/QJb5yp50uoC6QAAAABJRU5ErkJggg==') /*/lib/chosen/chosen-cooltool.css*/ no-repeat 0px 2px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAlCAQAAACn+wJeAAAB4UlEQVRIx+2XsWtTURTGrwouLQQDwYLFzT3yJBDoYoVvySQoKFShSHe7qAgqiMn9rcUibnVwEARBl0AgUIh/QXBxFIpKJHAhUBz0HQcf4U0xtZwu+r3l8t4758fHPe/jvhBcRIUuWbFuMKAWnEB9jEQWAk0SRt8LtMo+RmKdhDGiHrzEChOMHGPsiAkhBDbIMXKu+2KaJUfZwcsXD4RJrJFKKHaw6fVmRnmNT5ydC9TDSDRCIGOMMfh9u8pegRmzNKP8NUZvzu+oR6NY19mddqVVgG7MKL5SvHPrcJu3g/F2xvMqowKUOHMYUJXhrAa8Ku1j90/dVFFXxaypoYFqfzFR80h9mZKyENRUkskrgrSqfZmS1pVkGskvG7SiiUy5TGP5RpA2lMuUyzeC1Cw5yrwxSWtKrij1ZEpqhKBMY5kGXqCKeioiSHXtain817+k9gLLLD887ozhLl8xjGG86onZxuIe99jCsHjTCRMvYvF9+1QIIcTz8RuTzmkfP0+jdaYJHW9jXPYBvYj5/ZNlf06HxvgEYzoC8Tk5l1xAnXP8IHVam8faC3GTn3x5cMJr6q5h0fjI5+L4suU24PFCfMkHhvExHQyL20eQEfERhsVncdEfdYfvGK2jcPUOK/+A/QJb5yp50uoC6QAAAABJRU5ErkJggg==') /*/lib/chosen/chosen-cooltool.css*/ no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}

.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAlCAQAAACn+wJeAAAB4UlEQVRIx+2XsWtTURTGrwouLQQDwYLFzT3yJBDoYoVvySQoKFShSHe7qAgqiMn9rcUibnVwEARBl0AgUIh/QXBxFIpKJHAhUBz0HQcf4U0xtZwu+r3l8t4758fHPe/jvhBcRIUuWbFuMKAWnEB9jEQWAk0SRt8LtMo+RmKdhDGiHrzEChOMHGPsiAkhBDbIMXKu+2KaJUfZwcsXD4RJrJFKKHaw6fVmRnmNT5ydC9TDSDRCIGOMMfh9u8pegRmzNKP8NUZvzu+oR6NY19mddqVVgG7MKL5SvHPrcJu3g/F2xvMqowKUOHMYUJXhrAa8Ku1j90/dVFFXxaypoYFqfzFR80h9mZKyENRUkskrgrSqfZmS1pVkGskvG7SiiUy5TGP5RpA2lMuUyzeC1Cw5yrwxSWtKrij1ZEpqhKBMY5kGXqCKeioiSHXtain817+k9gLLLD887ozhLl8xjGG86onZxuIe99jCsHjTCRMvYvF9+1QIIcTz8RuTzmkfP0+jdaYJHW9jXPYBvYj5/ZNlf06HxvgEYzoC8Tk5l1xAnXP8IHVam8faC3GTn3x5cMJr6q5h0fjI5+L4suU24PFCfMkHhvExHQyL20eQEfERhsVncdEfdYfvGK2jcPUOK/+A/QJb5yp50uoC6QAAAABJRU5ErkJggg==') /*/lib/chosen/chosen-cooltool.css*/ -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}

.chosen-disabled .chosen-single {
  cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}

.chosen-rtl .chosen-choices li {
  float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAlCAQAAACn+wJeAAAB4UlEQVRIx+2XsWtTURTGrwouLQQDwYLFzT3yJBDoYoVvySQoKFShSHe7qAgqiMn9rcUibnVwEARBl0AgUIh/QXBxFIpKJHAhUBz0HQcf4U0xtZwu+r3l8t4758fHPe/jvhBcRIUuWbFuMKAWnEB9jEQWAk0SRt8LtMo+RmKdhDGiHrzEChOMHGPsiAkhBDbIMXKu+2KaJUfZwcsXD4RJrJFKKHaw6fVmRnmNT5ydC9TDSDRCIGOMMfh9u8pegRmzNKP8NUZvzu+oR6NY19mddqVVgG7MKL5SvHPrcJu3g/F2xvMqowKUOHMYUJXhrAa8Ku1j90/dVFFXxaypoYFqfzFR80h9mZKyENRUkskrgrSqfZmS1pVkGskvG7SiiUy5TGP5RpA2lMuUyzeC1Cw5yrwxSWtKrij1ZEpqhKBMY5kGXqCKeioiSHXtain817+k9gLLLD887ozhLl8xjGG86onZxuIe99jCsHjTCRMvYvF9+1QIIcTz8RuTzmkfP0+jdaYJHW9jXPYBvYj5/ZNlf06HxvgEYzoC8Tk5l1xAnXP8IHVam8faC3GTn3x5cMJr6q5h0fjI5+L4suU24PFCfMkHhvExHQyL20eQEfERhsVncdEfdYfvGK2jcPUOK/+A/QJb5yp50uoC6QAAAABJRU5ErkJggg==') /*/lib/chosen/chosen-cooltool.css*/ no-repeat -30px -20px;
  direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .chosen-rtl .chosen-search input[type="text"],
  .chosen-container-single .chosen-single abbr,
  .chosen-container-single .chosen-single div b,
  .chosen-container-single .chosen-search input[type="text"],
  .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
  .chosen-container .chosen-results-scroll-down span,
  .chosen-container .chosen-results-scroll-up span {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGgAAABKCAQAAAD9cdkXAAACqUlEQVRo3u2av2/TQBTHI8FQCYYguoLCyOY/IQNk6NSF3RNzBmZ04oe/JwFSp0owtSNb/oT8B8mIBIioAyuWrA7pD4fns+vkzvZQ1+3lne57UoZXJfan79333ovT6zGTDGUsg0o0oGjY4yfCWdEykBROFg954hhIJQ4/pI0bL5E0HIryAgpMpGqEW9HpAAktzjg1SNxxGpH44hRIiYaTsMZxDsixknPMFKzaNgSEQwcrBtklMLDW+mBRV5lYtAaaqvdPrTWnGNYCDdtdOtq/+oRo39r4gEkFZ9LusqK/zjcWom9pwKOq1w0xbrsDILR/i7Bmit3cSG4H2icN7CEturIDDWhqD2jYnR1srm6t4XpIk5vYQff2b2oUjuJRxRRGAUXDph0Qt7eD2xbhrGgZSAoni4d31LJ0jGMglTjNSNuqjRsvkTQcivICCkykaoTZ+GAAJLQ449QgccdpROKLUyAlGk7CGsc5IMdKzjFTcMy2nTtY3Wt9XGtOW44PW490vQHPy8vLy8vLy2ubJfrRGHP6RjxVaxaNu31kdseipxdXj93SYq3kP4tPL24mhAqAMHApL+QFvRZQCHlmJ8/MGX7jtXz64Yl8K39hmUOyy5Loq2JLcYoDsVNCPpbfcKqyFDPbS9FYldpSftHjr+7JQ5xnWYrGrIDkLNs5+PnmQSV3OzhR+2jOC0jtn/os4F1uD+yAcPn+Wd3fPr4kz2MK9NwpoMaSkwxLrmh3foiHFVPYxYkCmnGz7fxQ/SruGx53zNK21cGaqoP1WOyWeXskv6uDdYUluyaVWh/V5OAcf+QnvIj28Bl/8+woyzji2JwWranWnK5/YsMPqRgf0o3hgYqNNVI24GVtUL4wzwY8HLFGqi1Gj8QNae4ckiPfCa2Req5I9XyNv1n+D6RKWo1cTsbTAAAAAElFTkSuQmCC') /*/lib/chosen/chosen-sprite__2x.png*/ !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}

/* @end */
.chosen-container {
    font-size: 14px;
}

.chosen-container-single .chosen-single {
    height: 2em;
    border: 1px solid #ddd;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));
    background-image: -webkit-linear-gradient(center bottom,#eee 0,white 50%);
    background-image: -moz-linear-gradient(center bottom,#eee 0,white 50%);
    background-image: -o-linear-gradient(top,#eee 0,#fff 50%);
    background-image: -ms-linear-gradient(top,#eee 0,#fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);
    background-image: linear-gradient(top,#eee 0,#fff 50%);
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    line-height: 1.9em;
    box-shadow: none;
}

    .chosen-container-single .chosen-single div {
        text-align: center;
    }

        .chosen-container-single .chosen-single div b {
            background-position: 0 4px;
        }

.chosen-container-single .chosen-search input[type="text"] {
    margin: 0.1em 0;
    padding: 0.2em 1.5em 0.2em 0.25em;
    line-height: inherit;
}


.chosen-drop {
    border-top-color: #aaaaaa !important;
    border-top-style: solid !important;
    padding-top: 2px;
}.survey-shelf__container {
    position: relative;
    height: auto; /* should be set impicitly in px */
}

.survey-shelf__row {
    width: 100%;
    height: 100%; /* should be set depends on rows' count. i.e. 50%, 33.33%, 25% etc. */
}

    .survey-shelf__row .survey-shelf__row-background {
        width: 100%;
        height: 100%;
    }

.survey-shelf {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.survey-shelf__item {
    float: left;
    position: relative;
    width: 100%; /* should be set depends on rows' count. i.e. 50%, 33.33%, 25% etc. */
    height: 100%; /* should be set depends on columns' count. i.e. 50%, 33.33%, 25% etc. */
}

    .survey-shelf__item img {
        display: block;
        max-height: 100%;
        max-width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
/* BUTTONS STYLE
======================================= */

.button:hover {
    text-decoration: none !important;
}

.button:visited {
    color: #fff;
}

/** ============= Main green buttons ============== */

.button {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px solid #9dcb3a;
    color: #fff;
    background: #9dcb3a;
    font: 600 15px/34px ProximaNova, sans-serif;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 9px 0 13px 0;
    min-width: 110px;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9dcb3a', endColorstr='#9dcb3a',GradientType=0 );
    -moz-transition: all .05s ease-in-out;
    -o-transition: all .05s ease-in-out;
    -webkit-transition: all .05s ease-in-out;
    transition: all .05s ease-in-out;
}

    .button:hover {
        text-decoration: none;
        background: #8eba2d;
        color: #fff;
    }

    /** ============= Main green buttons ============== */


    /** ============= Main green buttons with green border and transparent back ============== */

    .button.btn-green-border {
        background: transparent;
        color: #9dcb3a;
        -webkit-box-shadow: inset -1px 0 1px #cae198,inset 1px 0 1px #cae198;
        -moz-box-shadow: inset -1px 0 1px #cae198,inset 1px 0 1px #cae198;
        box-shadow: inset -1px 0 1px #cae198,inset 1px 0 1px #cae198;
    }

        .button.btn-green-border.btn-md {
            height: 45px;
            line-height: 34px;
        }

        .button.btn-green-border:hover {
            text-decoration: none;
            background: #9dcb3a;
            color: #fff;
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
        }


    .button.btn-lg {
        height: 64px;
        padding: 15px 45px;
        line-height: 30px;
        font-size: 1.7142857142857142em;
        border: 2px solid #9dcb3a;
        border-top: 3px solid #9dcb3a;
    }


    .button.btn-md {
        height: 45px;
        padding: 5px 40px;
        line-height: 32px;
        font-size: 1.1428571428571428em;
    }

    /** ============= Main green buttons with green border and transparent back ============== */

    .button.get-started {
        font-weight: bold;
        border-width: 0;
        margin-bottom: 35px;
    }

.header .button.get-started {
    line-height: 1.142857142857142em !important;
}

.block-head .header .button {
    background: #fff;
    border-color: #fff;
    color: #000;
    height: 35px;
    line-height: 32px;
    min-width: 92px;
}

    .block-head .header .button:hover {
        background: #fff;
    }

.block-head .button.get-started {
    margin: 26px 0 0 0px;
    height: 60px;
    font-size: 20px;
}

.button.show-more {
    color: #666;
    background: #fff;
    border-color: #d0d0d0;
    margin-top: 48px;
}

/* BUTTONS STYLE
======================================= */


/** =================================
            LIST TYPES
===================================== */

/** ============ list-green-round ============ */

ul.list-green-round li {
    padding: 0 9px 16px 21px;
    position: relative;
    text-align: left;
}

    ul.list-green-round li:before {
        content: '�';
        color: #9dcb3a;
        font-size: 19px;
        position: absolute;
        top: 0;
        left: 6px;
        display: block;
    }

/** ============ list-green-round ============ */

/** ============ list-green-check ============ */

ul.list-green-check li {
    padding: 0 9px 30px 38px;
    position: relative;
    text-align: left;
    font-size: 1.3571428571428572em;
    font-weight: 200;
    line-height: 1.08em;
}

    ul.list-green-check li:before {
        content: '';
        width: 31px;
        height: 22px;
        background-image: url("../img/public_pages/icons/check.svg");
        background-repeat: no-repeat;
        background-size: cover;
        margin-left: -36px;
        float: left;
    }

/** ============ list-green-check ============ */


/** =================================
            LIST TYPES
===================================== */
/** =============================================================================
 Styles for advertising of cooltool in projects if account is free and
  in the questionnaire on the end of questionnaire
 ============================================================================== */

.page-title {
    color: #000;
    text-align: center;
    font: 600 2.3333333333333335em/1.1833333333333335em ProximaNova, sans-serif;
    padding: 25px 54px 10px 0px;
}

    .page-title.green-title {
        color: #8dbb2b;
    }

.survey-create-info > .fl {
    width: 520px;
}

@media screen and (min-width: 1360px) {
    .survey-create__right {
        left: 565px !important;
    }
}

@media screen and (max-width: 1359px) {
    .survey-create-info > .fl {
        font-size: 10px;
        width: 360px;
    }

    ul.list-green-check li {
        padding: 0 9px 18px 38px;
    }
}

.survey-create-info h1 {
    text-align: left;
}

.survey-create-info h3 {
    color: #7f7f7f;
    font-weight: normal;
    margin: 0;
}

ul.list-green-check li {
    font-size: 1.4166666666666667em;
    line-height: 1.2666666666666667em;
}

    ul.list-green-check li:before {
        top: -1px;
    }

.survey-create-info {
    position: relative;
    font-family: ProximaNova, sans-serif;
    font-size: 12px;
}

.survey-create__right {
    position: absolute;
    right: 0;
    left: 397px;
}

.survey-create-info .button.btn-md {
    font-size: 1.3333333333333333em;
    display: inline-block;
    margin-top: 0;
}

.survey-create-info .logo {
    background-image: url('../img/cooltoollogo.png');
    background-repeat: no-repeat;
    width: 176px;
    height: 39px;
    display: inline-block;
    border: 0 none;
    outline: none;
    text-decoration: none;
    background-size: contain;
    margin-right: 70px;
    margin-top: 25px;
    float: right;
}

.survey-create__img {
    margin-top: 53px;
    position: absolute;
    background: url('../img/public_pages/landing/img-01.png') no-repeat;
    background-size: contain;
    top: 25px;
    bottom: 0;
    right: auto;
    left: auto;
    height: 434px;
    width: 625px;
}


/** For tablet preview
     ============================================================== */

@media screen and (max-width: 769px) {
    .survey-create-info > .fl {
        width: 100% !important;
        margin-left: 10px;
    }

    .page-title {
        padding: 15px 0px 10px 0px;
        margin-top: 0;
    }

    .survey-create__right {
        left: 10px;
        position: relative;
    }

        .survey-create__right .logo {
            float: none;
        }

    .survey-create__img {
        display: none;
    }

    .survey-create-info {
        font-size: 10px;
    }
}

@media screen and (max-width: 340px) {
    ul.list-green-check li {
        padding: 0 9px 13px 58px;
    }

    .survey-create-info {
        font-size: 9px;
    }
}

/** For tablet preview
     ============================================================== */


/* SURVEY CREATE INFORMATION
     ============================ */
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat;
    background-position: center top;
    font-size: 14px;
}

    /* allow horizontal scroolbar for eyetracking slide */
    html.eyetracking-slide {
        overflow-x: auto;
        overflow-y: auto;
    }

    html::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    html::-webkit-scrollbar-track {
        background-color: rgba(113,112,107,0.1);
    }

    html::-webkit-scrollbar-thumb:vertical {
        background-color: rgba(0,0,0,.2);
        border-radius: 4px;
    }

        html::-webkit-scrollbar-thumb:vertical:hover,
        html::-webkit-scrollbar-thumb:horizontal:hover {
            background-color: rgba(0,0,0,.3);
        }

    html::-webkit-scrollbar-thumb:horizontal {
        background-color: rgba(0,0,0,.2);
        border-radius: 4px;
    }

body {
    min-width: 0;
    height: 100%;
    min-height: 100%;
    margin: 0;
    line-height: 1.42857143;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
}

body, input, textarea, button {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

a, a:visited {
    background: transparent;
    color: #259fc1;
    cursor: pointer;
    text-decoration: none;
}

    a:hover, .activetxt:hover {
        color: #1b7a94;
        outline: 0 none;
        text-decoration: underline;
    }

    a:active {
        color: #1b7a94;
        outline: 0 none;
    }

ul, ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.reset-table, .reset-table tbody, .reset-table tfoot, .reset-table thead, .reset-table tr, .reset-table th, .reset-table td {
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

.uppercase {
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.wordwrap {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/*utility*/
html > body .invisible {
    display: none;
}

html > body .hidden-accessible {
    position: absolute;
    top: 0;
    left: -9999px;
}

html > body .hidden {
    visibility: hidden;
}

.block {
    display: block;
}

.cl {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.opaque {
    opacity: 0;
    filter: alpha(opacity=1);
}

.clearfix:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

* html .clearfix {
    zoom: 1;
}
/* IE6 */
*:first-child + html .clearfix {
    zoom: 1;
}
/* IE7 */

/*margin and padding*/
.space {
    margin-top: 20px;
}
/*alignment*/
.vtop {
    vertical-align: top;
}

.vcenter {
    vertical-align: middle;
}

.vbottom {
    vertical-align: bottom;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.tac {
    text-align: center;
}

.min-width {
    width: 1px;
}

.inline-block {
    display: inline-block;
}

a > .fa {
    margin-right: 0.2em;
}

/*survey controls*/


.app-button {
    display: block;
    margin: 0;
    color: #444 !important;
    text-decoration: none !important;
    text-align: center;
    font-size: 1em;
    padding: 0.5em 0.8em;
    border: 1px solid #ccc;
    -moz-border-radius: 0.14em;
    -webkit-border-radius: 0.14em;
    border-radius: 0.14em;
    background: #f5f5f5;
    background: -moz-linear-gradient(top, #f5f5f5 50%, #e5e5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#f5f5f5), color-stop(100%,#e5e5e5));
    background: -webkit-linear-gradient(top, #f5f5f5 50%,#e5e5e5 100%);
    background: -o-linear-gradient(top, #f5f5f5 50%,#e5e5e5 100%);
    background: -ms-linear-gradient(top, #f5f5f5 50%,#e5e5e5 100%);
    background: linear-gradient(to bottom, #f5f5f5 50%,#e5e5e5 100%);
    cursor: pointer;
    outline: none !important;
}

    .app-button.primary {
        color: #fff !important;
        border-color: #669c1b;
        background: #89b725;
        background: -moz-linear-gradient(top, #b1cf6f 0%, #89b725 5%, #76a413 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b1cf6f), color-stop(5%,#89b725), color-stop(100%,#76a413));
        background: -webkit-linear-gradient(top, #b1cf6f 0%,#89b725 5%,#76a413 100%);
        background: -o-linear-gradient(top, #b1cf6f 0%,#89b725 5%,#76a413 100%);
        background: -ms-linear-gradient(top, #b1cf6f 0%,#89b725 5%,#76a413 100%);
        background: linear-gradient(to bottom, #b1cf6f 0%,#89b725 5%,#76a413 100%);
    }

    .app-button.active {
        color: #fff !important;
        border-color: #669c1b;
        background: #76a413;
        background: -moz-linear-gradient(top, #76a413 0, #89b725 50%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#76a413), color-stop(50%,#89b725));
        background: -webkit-linear-gradient(top, #76a413 0,#89b725 50%);
        background: -o-linear-gradient(top, #76a413 0,#89b725 50%);
        background: -ms-linear-gradient(top, #76a413 0,#89b725 50%);
        background: linear-gradient(to bottom, #76a413 0,#89b725 50%);
        cursor: default;
    }

    .app-button.fa {
        width: 2.6em;
        padding: 0.3em 0.3em 0.2em;
    }

        .app-button.fa:before {
            font-size: 1.6em;
        }

.app-button-group .app-button {
    float: left;
    border-right-width: 0;
    border-left-width: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border-right-width: 1px;
}

    .app-button-group .app-button:first-child {
        border-left-width: 1px;
        -moz-border-radius: 0.14em 0 0 0.14em;
        -webkit-border-radius: 0.14em 0 0 0.14em;
        border-radius: 0.14em 0 0 0.14em;
    }

    .app-button-group .app-button:last-child {
        -moz-border-radius: 0 0.14em 0.14em 0;
        -webkit-border-radius: 0 0.14em 0.14em 0;
        border-radius: 0 0.14em 0.14em 0;
    }

.app-controls {
    font-size: 1.3em;
}

.app-update-progress {
    text-align: center;
    background: #222;
    font-size: 1.8em;
    line-height: 2em;
    font-family: sans-serif;
    text-shadow: 0 0 0.2px;
    color: #fff;
    position: fixed;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30% 0;
}

.app-top-bar {
    color: #555;
    height: 1.8em;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    max-width: 100%;
    padding: 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,0.9) 0%, rgba(243,243,243,0.9) 50%, rgba(237,237,237,0.9) 51%, rgba(255,255,255,0.9) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.9)), color-stop(50%,rgba(243,243,243,0.9)), color-stop(51%,rgba(237,237,237,0.9)), color-stop(100%,rgba(255,255,255,0.9)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.9) 0%,rgba(243,243,243,0.9) 50%,rgba(237,237,237,0.9) 51%,rgba(255,255,255,0.9) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0.9) 0%,rgba(243,243,243,0.9) 50%,rgba(237,237,237,0.9) 51%,rgba(255,255,255,0.9) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0.9) 0%,rgba(243,243,243,0.9) 50%,rgba(237,237,237,0.9) 51%,rgba(255,255,255,0.9) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%,rgba(243,243,243,0.9) 50%,rgba(237,237,237,0.9) 51%,rgba(255,255,255,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6ffffff', endColorstr='#e6ffffff',GradientType=0 );
    -moz-box-shadow: 0 0.05em 0.2em rgba(0,0,0,0.15);
    -webkit-box-shadow: 0 0.05em 0.2em rgba(0,0,0,0.15);
    box-shadow: 0 0.05em 0.2em rgba(0,0,0,0.15);
}

    .app-top-bar > * {
        display: block;
        float: left;
        line-height: 1.8em;
        height: 1.8em;
        vertical-align: bottom;
    }

    .app-top-bar .survey-logo {
        background: url(../img/logo-small.svg) center center no-repeat;
        background-size: cover;
        height: 1.8em;
        width: 1.8em;
    }

    .app-top-bar .text-block {
        padding: 0 0.2em;
        text-align: center;
        max-width: 86%;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.app-main-menu {
    width: 100%;
    max-width: 15em;
    position: fixed;
    /*background: #222;*/
    top: 0;
    left: -30em;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: left ease-in-out 0.2s;
    -moz-transition: left ease-in-out 0.2s;
    -o-transition: left ease-in-out 0.2s;
    transition: left ease-in-out 0.2s;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 100;
    background: #222; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #333333 0%, #111111 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#333333), color-stop(100%,#111111)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #333333 0%,#111111 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #333333 0%,#111111 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #333333 0%,#111111 100%); /* IE10+ */
    background: linear-gradient(135deg, #333333 0%,#111111 100%); /* W3C */
}

.app-main-content {
    height: 100%;
    margin-top: -1px;
    padding-top: 1px; /*margin-top reset hack*/
    position: relative;
}

    .app-main-content img {
        max-width: 100%;
    }

.app-main-menu.menu-activated {
    left: 0;
}

.app-main-menu > a {
    font-size: 1em;
    border-left: 0.15em solid transparent;
    border-bottom: 1px solid #444;
    color: #fff;
    display: block;
    padding: 0.4em 0.5em;
}

    .app-main-menu > a:hover, .app-main-menu > a.active {
        text-decoration: none;
        border-left-color: #89b725;
        /*color: #259fc1;*/
        background: #333;
    }

.app-main-menu .survey-skip-interview {
    display: none;
}

.app-processing-dialog {
    color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    font-size: 1.4em;
    line-height: 1.8em;
    display: table;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-touch-callout: none;
    -moz-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    -webkit-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 200;
    background: #222; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #333333 0%, #111111 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#333333), color-stop(100%,#111111)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(-45deg, #333333 0%,#111111 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(-45deg, #333333 0%,#111111 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(-45deg, #333333 0%,#111111 100%); /* IE10+ */
    background: linear-gradient(135deg, #333333 0%,#111111 100%); /* W3C */
}

    .app-processing-dialog > .content {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

    .app-processing-dialog .title {
        font-size: 1.2em;
    }

    .app-processing-dialog .cancel {
        text-decoration: underline;
        font-size: 0.7em;
        color: #aaa;
    }

    .app-processing-dialog .fail-icon {
        color: darkorange;
    }

    .app-processing-dialog .success-icon {
        color: #58e258;
    }


/* Kiosk mode styles begin */
.app-kiosk-dialog {
    color: #222;
    position: fixed;
    width: 100%;
    height: 100%;
    font-size: 1.4em;
    line-height: 1.8em;
    display: table;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-touch-callout: none;
    -moz-transition: opacity linear 0.2s;
    -o-transition: opacity linear 0.2s;
    -webkit-transition: opacity linear 0.2s;
    transition: opacity linear 0.2s;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 200;
    background: #fff;
}

    .app-kiosk-dialog > .content {
        display: table-cell;
        vertical-align: middle;
        text-align: center;
    }

    .app-kiosk-dialog .button-container {
        padding-top: 1em;
        text-align: center;
    }
/* Kiosk mode styles end */

.content-page {
    margin-top: 2.5em;
    padding: 1em;
}

.survey-menu {
    display: inline-block;
    height: 1.6em;
    color: #555 !important;
    vertical-align: bottom;
    line-height: 1.8em;
}

    .survey-menu.fa-bars {
        margin-left: -0.2em;
    }

    .survey-menu:hover, .survey-menu:focus {
        text-decoration: none;
    }

    .app-main-content.menu-activated .survey-menu, .survey-menu:hover, .survey-menu:focus {
        opacity: 1;
    }

.survey-progress-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    height: 5px;
    z-index: 100;
}

    .survey-progress-bar .survey-progress {
        height: 100%;
        background: #29d;
        /*-moz-box-shadow: 1px 0 7px #29d, 1px 0 2px #29d;
        -webkit-box-shadow: 1px 0 7px #29d, 1px 0 2px #29d;
        box-shadow: 1px 0 7px #29d, 1px 0 2px #29d;*/
        width: 0;
        -moz-transition: width ease-in-out 0.4s;
        -o-transition: width ease-in-out 0.4s;
        -webkit-transition: width ease-in-out 0.4s;
        transition: width ease-in-out 0.4s;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
    }

.survey-actions {
    padding-top: 0.4em;
    padding-left: 1.2em;
}

.items-list {
    padding: 0.5em 0;
    margin: 0 -1em;
}

    .items-list > * {
        font-size: 1.2em;
        background-color: #fff;
        padding: 0.5em 1em;
        display: block;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
        border-bottom: 1px solid #eee;
    }

    .items-list > :first-child {
        border-top: 1px solid #eee;
    }

    .items-list > .noitems {
        color: #999;
        white-space: normal;
    }

.add-survey {
    margin-top: 2em;
    min-width: 10em;
}

.survey-code {
    text-align: center;
    font-size: 1.6em;
    width: 8em;
    color: #333;
    margin: 1em 0 !important;
}

.survey-test-mode-controls > * {
    display: block;
    float: left;
    height: 100%;
    margin-right: 0.3em;
}

.survey-test-mode-controls a.fa {
    text-decoration: none !important;
    color: #555;
}

    .survey-test-mode-controls a.fa:hover {
        color: #1b7a94;
    }

.survey-test-mode-controls .app-button {
    font-size: 0.56em;
}

.survey-test-mode-controls td {
    padding: 0.25em 0.2em;
    vertical-align: middle;
}

.survey-page-selector {
    width: 10em;
}

.survey-page-selector-container > * {
    display: block;
    white-space: nowrap !important;
    font-size: inherit;
    font-size: 0.67em;
}

.survey-page-selector-container .chosen-container {
    width: 20em !important;
}

/*SURVEY-SPECIFIC STYLES*/

body > embed {
    position: absolute;
    z-index: -1;
}

/* Don't add transtion to the '.survey-container' in order to prevent incorrect video size calculation */
.survey-container {
    color: #444;
    width: 58em;
    position: relative;
    margin-bottom: 100px;
    max-width: 100%;
    min-height: 94%;
    margin: 1em auto;
    padding: 2em;
    padding-bottom: 6em;
}

.app-top-bar + .survey-device-preview-frame {
    padding-top: 2.5em;
}

.survey-container.full-width {
    min-width: 94%;
}

.survey-buttons-block-bottom {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 3em;
    padding: 0 2em;
}

.survey-button {
    float: right;
    font-size: 1.3em;
    cursor: pointer;
    text-align: center;
    height: 2.5em;
    width: 9em;
    display: inline-block;
    *display: inline;
    zoom: 1;
    overflow: visible;
    white-space: nowrap;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Hide controls begin */
/* Leave place for Branding */
.survey-container.survey-next-button-invisible {
    padding-bottom: 2.76em;
}

/* Leave place for bottom padding. Branding and NextButton are hidden */
.survey-container.survey-next-button-invisible.survey-cooltool-branding-invisible {
    padding-bottom: 0.2em;
}

.survey-container.survey-next-button-invisible .survey-next-button {
    display: none;
}

.survey-container.survey-cooltool-branding-invisible .survey-cooltool-branding>a.poweredBy,
.implicit_question_layout .survey-cooltool-branding,
.implicit_question_rtt .survey-cooltool-branding {
    display: none;
}
/* Hide controls end */

.survey-skip-interview {
    display: inline-block;
    position: absolute;
    top: 1em;
    right: 0.5em;
}
    .survey-skip-interview .fa {
        font-size: 20px;
    }
    .survey-skip-interview .fa-sign-out,
    .survey-skip-interview .fa-close {
        font-family: fontawesome;
        margin: 0;
        width: 23.31px;
        height: 23.31px;
        text-align: center;
        color: #8e8e8e;
        border: 1px solid #dddddd;
        border-radius: 50%;
        background: #ffffff;
        opacity: .5;
    }
    .survey-skip-interview .fa-sign-out {
        width: 27px;
        height: 27px;
    }
    .survey-skip-interview .fa-sign-out {
        position: relative;
        width: 27px;
        height: 27px;
        background: url('/img/survey/skip_instruction.svg');
        background-size: contain;
        border: none;
    }
    .survey-skip-interview .fa-sign-out:before {
        display: none;
    }


    .survey-skip-interview .fa-close:hover,
    .survey-skip-interview .fa-sign-out:hover {
        color: #ee0101;
        opacity: 1;
    }

    .survey-skip-interview .fa-chevron-circle-right {
        color: #89b725;
        font-size: 2em;
        font-family: fontawesome;
    }

.survey-alternatives-container {
    display: inline-block;
}

    .survey-alternatives-container.multi-coulmn {
        display: block;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
    }

        .survey-alternatives-container.multi-coulmn .survey-alternative-line-block {
            min-width: -moz-min-content;
            min-width: -webkit-min-content;
            min-width: min-content;
        }

        .survey-alternatives-container.multi-coulmn .survey-alternative-line {
            height: 100%;
        }

    .survey-alternatives-container.multi-coulmn_alc2 .survey-alternative-line-block {
        flex-basis: 31.3%;
        margin: 0.4em 1% 0.4em 0;
    }

    .survey-alternatives-container.multi-coulmn_alc3 .survey-alternative-line-block {
        flex-basis: 23%;
        margin: 0.2em 1% 0.2em 0;
    }

    .survey-alternatives-container.multi-coulmn_alc4 .survey-alternative-line-block {
        flex-basis: 19%;
        margin-right: 1%;
    }

    .survey-alternatives-container.multi-coulmn_alc5 {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .survey-alternatives-container.multi-coulmn_alc5:before,
    .survey-alternatives-container.multi-coulmn_alc5:after {
        display: none;
    }
    .survey-alternatives-container.multi-coulmn_alc5 .survey-alternative-line-block {
        margin: 0.2em 1% 0.2em 0;
    }

.choise-idx-0, .choise-idx-1 {
    cursor: pointer;
}

.implicit-instruction {
    text-align: center;
    height: 100%;
    display: block;
    color: white;
}

.survey-eyetracking-container.implicit-question {
    background: inherit;
}

.implicit-question {
    font-size: 2em;
    position: fixed !important;
}

    .implicit-question.preview {
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        -moz-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
        -o-transform-origin: 50% 0;
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    .implicit-question .survey-progress-bar {
        height: 5px;
        margin-top: 8px;
        background-color: #ffffff70;
    }

    .implicit-question .survey-progress-bar .survey-progress {
        background: #6EC700;
    }

.implicit-item {
    font-size: 4vw;
    text-align: center;
    min-height: 3em;
    position: absolute;
    width: 100%;
    top: 50%;
    display: none;
    color: white;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#implicit_test_icon path {
    fill: rgba(1, 1, 1, 0.2);
}

svg#implicit_test_icon {
    height: 17vh;
    bottom: -16vh;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
}


#implicit_test_icon .icon_q {
    opacity: 1;
}


#implicit_test_icon .icon_r, #implicit_test_icon .icon_w {
    opacity: 0;
}



#implicit_test_icon.wrong .icon_w {
    opacity: 1;
}


#implicit_test_icon.wrong .icon_r, #implicit_test_icon.wrong .icon_q {
    opacity: 0;
}


#implicit_test_icon.right .icon_r {
    opacity: 1;
}


#implicit_test_icon.right .icon_w, #implicit_test_icon.right .icon_q {
    opacity: 0;
}

.implicit-item img {
    max-height: 26vw;
    position: absolute;
    max-width: 51%;
    max-height: 50vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.implicit-item.show {
    display: block;
}

.implicit-question.fade .implicit-item {
    display: none;
}

.implicit-counter {
    min-height: 2.5em;
    text-align: center;
    font-size: 2.5em;
}

.implicit-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 6px;
}

.implicit-btn-container {
    /* padding-top: 10px; */
    /* vertical-align: bottom; */
    width: 100%;
    display: block;
    bottom: -5px;
    text-align: center;
    position: absolute;
    overflow: hidden;
}

#implicit_test_container_border path {
    fill: none;
    stroke: #6B94B3;
    stroke-width: 4;
}

svg#implicit_test_container_border {
    width: 120%;
    position: absolute;
    left: -10%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.implicit_test_container {
    position: relative;
    height: calc(100% - 32vh);
}

.implicit-question--no_priming .implicit_test_container {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.implicit-question--no_priming .implicit-item {
    position: static;
    min-height: 0;
    margin: 20px auto 0;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
     -webkit-transform: translateY(0);
     transform: translateY(0);
}

.implicit-question--no_priming .implicit-item-img {
    max-width: 90%;
    display: flex;
    width: 80%;
    height: 20vw;
    margin: 0 auto;
    max-height: 220px;
}

.implicit-question--no_priming .implicit-item img {
    position: static;
    max-width: 100%;
}

@media screen and (max-width: 800px) {
    .implicit_test_container {
        height: calc(100% - 45vh);
    }
    svg#implicit_test_container_border {
        width: 100%;
        left: 0;
    }
    .implicit-item img {
        max-height: 22vw;
        /*max-width: 35%;*/
    }
    .implicit-question--no_priming .implicit-item-img {
        height: 100%;
    }
}
@media screen and (max-width: 600px) {

    .implicit-item img {
    max-height: 84vw;
    /* max-width: 35%; */
    }

}
.implicit-btn {
    display: inline-block;
    line-height: 2em;
    cursor: pointer;
    color: white;
}

    .implicit-btn:hover {
    }

.implicit-controls_line_left {
    position: absolute;
    right: 90%;
    margin-top: -2px;
    top: 50%;
    width: 50%;
    height: 4px;
    background: #D3D3D3;
    margin-right: -4px;
}


.implicit-controls_line_right {
    position: absolute;
    left: 90%;
    margin-left: -4px;
    margin-top: -2px;
    top: 50%;
    width: 50%;
    height: 4px;
    background: #D3D3D3;
}



.implicit-btn.choise-index-0 {
    fill: url(#GRAD_BTL);
}


.implicit-btn.choise-index-1 {
    fill: url(#GRAD_BTR);
}


.implicit-btn.right {
    fill: #7CA940 !important;
}

.implicit-btn.chosen {
    fill: #d0c834 !important;
}

.implicit-btn.wrong {
    fill: #EA4724 !important;
    color: white;
}

.implicit_question_layout .survey-container {
    width: 100% !important;
    background: #2c5173; /* For browsers that do not support gradients */
    /* Safari 5.1 to 6.0 */
    background: -webkit-radial-gradient(50% 50%, closest-side, #2c5173, #22344c);
    /* For Opera 11.6 to 12.0 */
    background: -o-radial-gradient(50% 50%, closest-side, #2c5173, #22344c);
    /* For Firefox 3.6 to 15 */
    background: -moz-radial-gradient(50% 50%, closest-side, #2c5173, #22344c);
    /* Standard syntax */
    background: radial-gradient(closest-side at 50% 50%, #2c5173, #22344c);
    height: 100%;
    position: fixed;
    overflow: auto;
}

.implicit-survey-result {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10px;
    /* background-color: white; */
    margin-left: auto;
    margin-right: auto;
    display: table;
    color: #222;
}

    .implicit-survey-result table {
        width: 100%;
        background-color: white;
    }

        .implicit-survey-result table td {
            width: 33%;
        }

    .implicit-survey-result .left {
        text-align: right;
        vertical-align: top;
    }

    .implicit-survey-result .right {
        text-align: left;
        vertical-align: top;
    }

    .implicit-survey-result .center {
        text-align: center;
    }

    .implicit-survey-result .item {
        margin: 13px 0;
        height: 40px;
        z-index: 10;
        position: relative;
    }

        .implicit-survey-result .item.media {
            margin: 10px 0;
            height: 80px;
        }

            .implicit-survey-result .item.media img {
                height: 80px;
            }

    .implicit-survey-result table thead td {
        height: 100px;
        background-color: #e6e6e6;
        text-align: center;
        font-weight: bold;
    }

        .implicit-survey-result table thead td.vs {
            background-color: initial;
            font-size: 70px;
            color: #8a8a8a;
        }

    .implicit-survey-result .left .item span,
    .implicit-survey-result .right .item span {
        background-color: #959595;
        width: 50%;
        height: 100%;
        display: inline-block;
    }

    .implicit-survey-result .center .item {
        background-color: #e5e3e4;
        position: relative;
        width: 100%;
    }

        .implicit-survey-result .center .item span {
            display: inline-block;
            line-height: 40px;
            height: 80px;
        }

    .implicit-survey-result .left .item.v1 span,
    .implicit-survey-result .right .item.v5 span {
        background-color: #88b908;
        width: 90%;
    }

    .implicit-survey-result .left .item.v2 span,
    .implicit-survey-result .right .item.v4 span {
        background-color: #f8cd42;
        width: 66%;
    }

    .implicit-survey-result .left .item.v4 span,
    .implicit-survey-result .right .item.v2 span {
        width: 34%;
    }

    .implicit-survey-result .left .item.v5 span,
    .implicit-survey-result .right .item.v1 span {
        width: 10%;
    }

    .implicit-survey-result .left > div,
    .implicit-survey-result .right > div {
        position: relative;
    }


    .implicit-survey-result .left .green_indicator_line {
        position: absolute;
        width: 22%;
        height: 100%;
        background: #e7f2d2;
    }

    .implicit-survey-result .left .red_indicator_line {
        position: absolute;
        width: 22%;
        height: 100%;
        left: 22%;
        margin-left: 5px;
        background: #fcf5db;
    }



    .implicit-survey-result .right .green_indicator_line {
        position: absolute;
        width: 22%;
        right: 0;
        height: 100%;
        background: #e7f2d2;
    }

    .implicit-survey-result .right .red_indicator_line {
        position: absolute;
        width: 22%;
        height: 100%;
        right: 22%;
        margin-right: 5px;
        background: #fcf5db;
    }

    .implicit-survey-result .indicator_text {
        font-size: 10px;
        position: absolute;
        width: 100%;
        text-align: center;
        bottom: 7px;
    }

    .implicit-survey-result .center > div {
        position: relative;
    }

.implicit_survey_result_text {
    position: relative;
    height: 60px;
    /* margin-bottom: 12px; */
    text-align: center;
}

.implicit_survey_result_text_content {
    font-size: 10px;
    width: 200%;
    left: -50%;
    top: 50%;
    position: absolute;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.implicit-survey-result .rhead {
}

.implicit-survey-result .rbody {
    display: table-row;
}

    .implicit-survey-result .rbody .center {
        display: table-cell;
    }

    .implicit-survey-result .rbody .leftChart {
        display: table-cell;
    }

    .implicit-survey-result .rbody .rightChart {
        display: table-cell;
    }



.implicit-survey-result .arrow_left:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #cacaca;
    left: 10px;
    top: 50%;
    margin-top: -10px;
}


.implicit-survey-result .arrow_right:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #cacaca;
    right: 10px;
    top: 50%;
    margin-top: -10px;
}

.implicit-question foreignObject {
    width: 50%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

.implicit-question .buttonLabel {
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 9px;
}

#button_left_svg, #button_right_svg {
    position: relative;
    width: 100%;
}

.arrow_regular {
    fill: #FFFFFF !important;
}


.st31 {
    fill: none;
    stroke: #D3D3D3;
    stroke-width: 4;
}

@media all and (max-width: 960px) {
    .survey-alternatives-container.multi-coulmn_alc2 .survey-alternative-line-block {
        flex-basis: 48%;
    }

    .survey-alternatives-container.multi-coulmn_alc3 .survey-alternative-line-block {
        flex-basis: 31.3%;
    }

    .survey-alternatives-container.multi-coulmn_alc4 .survey-alternative-line-block {
        flex-basis: 23%;
    }
}


@media all and (max-width:700px) {
    .survey-alternatives-container.multi-coulmn_alc2 .survey-alternative-line-block {
        flex-basis: 100%;
    }

    .survey-alternatives-container.multi-coulmn_alc3 .survey-alternative-line-block {
        flex-basis: 48%;
    }

    .survey-alternatives-container.multi-coulmn_alc4 .survey-alternative-line-block {
        flex-basis: 48%;
    }
}

@media all and (max-width:400px) {
    .survey-alternatives-container.multi-coulmn_alc2 .survey-alternative-line-block {
        flex-basis: 100%;
    }

    .survey-alternatives-container.multi-coulmn_alc3 .survey-alternative-line-block {
        flex-basis: 100%;
    }

    .survey-alternatives-container.multi-coulmn_alc4 .survey-alternative-line-block {
        flex-basis: 100%;
    }
}


.survey-question {
    padding: 0 0 0.8em;
    clear: both;
}

    .survey-question + .survey-question {
        padding-top: 1.8em;
    }

.survey-rating-title {
    width: 100%;
}

.survey-question-name {
    font-size: 1.4em;
    position: relative;
    margin-bottom: 8px;
}

.survey-alternative-line {
    display: block;
    min-width: 10em;
    cursor: pointer;
}

.survey-alternative {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.survey-open-label {
    max-width: 30%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    -ms-word-break: break-word;
    word-break: break-word;
}

.survey-text-editor {
    max-width: 100%;
    /*width: 50%;*/
}

    .survey-text-editor.phone-number::placeholder {
        color: #ccc;
    }

    .survey-text-editor.phone-number {
        width: initial;
    }

.survey-text-esse {
    width: 100%;
    max-width: 100%;
    min-height: 7em;
    resize: none;
}

.survey-continuous-sum-container {
    display: inline-block;
}

    .survey-continuous-sum-container .survey-open-label {
        max-width: 35em;
    }

.survey-continuous-sum-value-container {
    display: inline-block;
    width: 9em;
}

    .survey-continuous-sum-value-container input {
        width: 9em;
        text-align: right;
    }

.survey-sum-total-container {
    text-align: right;
    white-space: nowrap;
    display: inline-block;
    min-width: 9em;
}

.survey-rating-slider-container {
    width: 68%;
    padding-left: 2em;
    display: inline-block;
    vertical-align: middle;
}

.survey-rating-value {
    position: absolute;
    font-size: 0.8em;
    left: 0;
    right: 0;
    display: block;
    text-align: center;
    white-space: nowrap;
}

.survey-control-icon {
    display: inline-block;
    overflow: hidden;
}

    .survey-control-icon input {
        display: none;
    }

.survey-alternative-line .survey-control-icon {
    margin-right: 0.6em;
}

.survey-matrix-question {
    border: 1px solid;
    border-collapse: collapse;
}

    .survey-matrix-question td {
        border: solid 1px #aaaaaa;
        padding: 4px;
    }

    .survey-matrix-question.measurement {
        position: relative;
        z-index: -1;
        opacity: 0;
    }

    .survey-matrix-question .survey-text-editor {
        min-width: 6em;
        width: 100%;
        margin: 0;
    }

    .survey-matrix-question .survey-text-editor-numeric {
        width: 6em;
    }

.survey-matrix-cell,
.survey-matrix-column {
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

    .survey-matrix-cell:nth-child(1) {
        text-align: left;
    }


.survey-matrix-straight tr:nth-child(2n+1) td {
    background: rgba(180,180,180,0.13);
}

.survey-matrix-transposed tr td:nth-child(2n+1) {
    background: rgba(180,180,180,0.13);
}

/*.survey-matrix-question tr:nth-child(1) td {
    background: rgba(180,180,180,0.2);
}

.survey-matrix-question tr td:nth-child(1) {
    background: rgba(180,180,180,0.2);
}*/

.survey-matrix-cell:hover {
    background: rgba(180,180,180,0.3) !important;
}

.survey-question-comments {
    font-size: 0.9em;
    padding-bottom: 1em;
}

#skip_video {
    opacity: 0;
    left: 50%;
    top: 0;
    position: absolute;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    z-index: 1;
}

.survey-media-container {
    position: relative;
    text-align: left;
    max-width: 100%;
}
.survey-alternative__with_media:not(:last-child) {
    margin-bottom: 1.3em;
}

.survey-media-container + * {
    text-align: left;
    display: block;
}

.survey-rating-slider .ui-slider-handle, .survey-rating-slider .ui-slider-handle:hover {
    color: inherit;
}

.survey-subheader {
    margin: 0.8em 0 0.1em;
    font-size: 1.1em;
}

.checked .survey-control-checkbox:after, .checked.survey-control-checkbox:after {
    content: '\f00c';
    font-family: FontAwesome;
    display: block;
    line-height: 1em;
}

.survey-rating-stars {
    letter-spacing: 0.15em;
    font-size: 2em;
    vertical-align: middle;
}

    .survey-rating-stars .starOn:after, .survey-rating-stars .starOff:after {
        font-family: 'FontAwesome';
    }

    .survey-rating-stars .starOff:after {
        content: '\f006';
    }

    .survey-rating-stars .starOn:after {
        content: '\f005';
    }

.survey-rating-smiles {
    font-size: 2em;
    vertical-align: middle;
}

    .survey-rating-smiles img {
        cursor: pointer;
        width: 20%;
        padding: 2%;
        float: left;
        /*max-width:60px;*/
    }

    .survey-rating-smiles.selected img:not(.checked) {
        opacity: 0.4;
        -webkit-filter: grayscale(1) !important;
        -moz-filter: grayscale(1) !important;
        -ms-filter: grayscale(1) !important;
        filter: grayscale(1) !important;
    }

    .survey-rating-smiles img:hover, .survey-rating-smiles img.checked {
        opacity: 1;
        padding: 0;
        margin-top: -1px;
    }

    .survey-rating-smiles img.checked {
        cursor: auto;
        border-radius: 50%;
        /*box-shadow: 0 0 .6em #656565;*/
    }


.survey-ranking-item {
    min-width: 2em;
    margin: 0.2em 0;
    overflow: hidden;
}

.survey-ranking-dest, .survey-ranking-source {
    display: inline-block;
    width: 48%;
    margin-right: 0.2em;
    padding: 0.4em;
    vertical-align: middle;
}

.thank-you-message {
    clear: both;
    font-size: 1.1em;
    text-align: center;
    margin-top: 6%;
}

.free-account .thank-you-message {
    color: #666;
    font-weight: 100;
    padding: 8px 7px 8px;
    background-color: #F8F8F8;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

/* Message for EyeTracking support in desktop browser begin */
.eyetracker-app-support-block {
    width: 80%;
    margin: 0 auto;
    margin-top: 6%;
    clear: both;
}

    .eyetracker-app-support-block p {
        font-size: 1.1em;
    }

    .eyetracker-app-support-block ul {
        list-style-type: decimal;
        padding-left: 1.5em;
    }
/* Message for EyeTracking support in desktop browser begin */

/* Eye Tracking Website begin */
.eyetracking-website-proceed__container {
    margin-top: 3em;
}

.eyetracking-website-controls {
    height: 38px; /* height of the button */
    margin: 8px 0;
}

    .eyetracking-website-controls .button {
        margin: 0;
        vertical-align: middle;
    }

.eyetracking-website-objective-compact__container {
    width: 85%;
    text-align: left;
}

.eyetracking-website-controls .eyetracking-website-objective-compact {
    width: 90%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.eyetracking-website-controls .eyetracking-website-instruction {
    font-size: 0.8em;
}

.eyetracking-website-controls .fa-question-circle {
    margin-right: 0.25em;
    font-size: 38px;
    color: #9dcb3a;
    vertical-align: middle;
    cursor: pointer;
}
/* Eye Tracking Website end */


.survey-validation-error {
    max-width: 80%;
    top: 44px;
    left: 0;
}

    .survey-validation-error .survey-validation-content {
        font-size: 0.8em;
        position: relative;
        font-weight: normal;
        color: #ee0101;
        font-family: Tahoma, Geneva, sans-serif;
    }

    .survey-validation-error .survey-validation-arrow {
        width: 0;
        height: 0;
        position: relative;
        border-style: solid;
        border-width: 0.5em 0.5em 0 0.5em;
        border-color: #ee0101 transparent transparent transparent;
        margin-left: 0.5em;
        z-index: 5006;
    }

.survey-cooltool-branding {
    text-align: center;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 0;
}

    .survey-cooltool-branding > a {
        color: inherit !important;
        font-size: 0.8em;
    }

    .survey-cooltool-branding > a:after {
        content: "|";
        display: inline-block;
        margin-left: 8px;
        margin-right: 8px;
    }
    .survey-cooltool-branding > a:last-child:after {
        display: none;
    }

.survey-language-selector-block {
    text-align: right;
}

    .survey-language-selector-block .chosen-container {
        min-width: 90px;
        background: white;
        text-align: left;
    }

    .survey-language-selector-block .chosen-container-single .chosen-single {
        background-color: transparent;
        background-image: none;
        border-color: transparent;
        text-align: right;
        color: inherit;
    }

    .survey-language-selector-block .chosen-container-active.chosen-with-drop .chosen-single {
        /*text-align: left;*/
        color: #444;
        border: 1px solid #aaa;
        background-image: -webkit-linear-gradient(top, #eeeeee 0, #ffffff 50%);
        background-image: -moz-linear-gradient(top, #eeeeee 0, #ffffff 50%);
        background-image: -o-linear-gradient(top, #eeeeee 0, #ffffff 50%);
        background-image: linear-gradient(top, #eeeeee 0, #ffffff 50%);
    }

/* Generic styles */
.survey-name-block {
    text-align: right;
    margin: 0.2em 0;
}

.survey-section {
    text-align: right;
    margin: 0.2em 0;
}

.survey-start-text {
    font-size: 1.2em;
    margin-top: 5%;
}

.survey-others-container {
    padding-left: 2em;
}

.survey-alternative-line table {
    height: 100%;
    width: 100%;
}

.survey-control-radio {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
}

.survey-company-logo {
    display: block;
    float: left;
    max-height: 7em;
    max-width: 50%;
    background-repeat: no-repeat;
    text-align: left;
    background-position: left top;
}

.semantic-differential-container .survey-rating-slider-container {
    width: 100%;
    padding-left: 0;
    padding: 0 1em;
}

.survey-semantic-left-side, .survey-semantic-right-side {
    float: left;
    padding: 0.5em;
    width: 50%;
}

.survey-semantic-right-side {
    text-align: right;
}

.survey-questions .ui-selectBox {
    min-width: 100px;
    max-width: 90%;
}

.survey-rating-slider-block {
    padding: 0 0 1.5em;
}

.stars-rating-row {
    padding: 0 0 0.5em;
}


.contact-us-btn{
    color: inherit !important;
    font-size: 0.8em;
    cursor:pointer;
}
.contact-us-btn:hover{
    text-decoration:underline;

}


.contact-us-dialog{
    position: fixed;
    background-color: #00000080;
    width: 700px;
    top: 0%;
    left: 0%;
    z-index: 100;
    width: 100%;
    height: 100%;

}
.contact-us-dialog>div{
    width:700px;
    margin-left:auto;
    margin-right:auto;
    margin-top:20px;
    background-color:white;
    padding:20px;
}
.contact-us-dialog .content{

}
.contact-us-dialog .content #message {
    width: 653px;
    height: 211px;
}

/* Eye Tracking begin */
#eyetrackerAppletContainer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* By default container is not stretchable and fit all document area */
.survey-eyetracking-container {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 100%;
    text-align: center;
    z-index: 1000;
    overflow: hidden;
    background: #fff;
}

    .survey-eyetracking-container .survey-eyetracking-image {
        margin: 0;
        padding: 0;
        max-width: 99%;
    }


    /* Allow container to be stretched by image */
    .survey-eyetracking-container.allow-stretch {
        bottom: auto;
        height: auto;
        max-height: none;
        min-height: 100%;
        overflow: visible;
    }

    .survey-eyetracking-container.resized-to-fit .survey-eyetracking-image {
        margin: 0 auto;
        max-height: 99%;
        max-width: 99%;
    }


    /* Places image in the center */
    .survey-eyetracking-container .survey-eyetracking-image.placed-in-center {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }

    /* Hide main content while eye-tracking question is shown */
    .survey-eyetracking-container:not(.hidden) + .app-main-content {
        display: none;
    }

.eyetracker-initialization-msg,
.eyetracking-resources-loading-msg,
.webeyetracking-init-msg,
.neurolab-data-syncing-msg {
    position: absolute;
    height: 2em;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-size: 1.2em;
    text-align: center;
    z-index: 1001;
}
/* Eye Tracking end */

.survey-actions > a + a {
    margin-left: 2em;
}

.app-sync-menu-item > sup {
    font-size: 0.6em;
    line-height: 1.2em;
    font-weight: bold;
    color: #333;
    background-color: darkorange;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
    border-radius: 1em;
    padding: 0.1em 0.5em;
}

@media screen and (max-width: 319px) {
    body, .app-content, input, select {
        font-size: 12px;
    }
}

/*Smartphone Portrait*/
@media screen and (min-width: 320px) {
    .app-content, input, select {
        font-size: 12px;
    }

    body {
        font-size: 1.1666666666666667em;
    }
    .web-cam-calibration-layer {
        font-size: 12px;
    }
}
/*Smartphone Landscape*/
@media screen and (min-width: 480px) {
    .app-content, input, select {
        font-size: 14px;
    }

    body {
        font-size: 1em;
    }
}
/*Tablet Portrait*/
@media screen and (min-width: 768px), screen and (min-width: 320px) and (max-device-width:480px) and (orientation : portrait), screen and (-webkit-min-device-pixel-ratio: 1.25) and (max-width: 1024px) and (min-width: 360px), screen and (min-resolution: 1.25dppx) and (max-width: 1024px) and (min-width: 360px) {
    .app-content, input, select {
        font-size: 15px;
    }

    body {
        font-size: 1.0714285714285714em;
    }
}
/*Tablet Landscape or laptops*/
@media screen and (min-width: 960px), screen and (min-width: 480px) and (max-device-width:768px) and (orientation : portrait) {
    .app-content, input, select {
        font-size: 16px;
    }

    body {
        font-size: 1.1428571428571428em;
    }
}
/*New tablets and most small desktops*/
@media screen and (min-width: 1024px) {
    .app-content, input, select {
        font-size: 17px;
    }

    body {
        font-size: 1.2142857142857142em;
    }
}
/*modern desktops*/
@media screen and (min-width: 1280px), screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 480px), screen and (min-resolution: 2dppx) and (min-width: 480px) {
    .app-content, input, select {
        font-size: 18px;
    }

    body {
        font-size: 1.2857142857142858em;
    }
}
/*wide screen desktops*/
@media screen and (min-width: 1600px), screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 480px), screen and (min-resolution: 2dppx) and (min-width: 480px) {
    .app-content, input, select {
        font-size: 20px;
    }

    body {
        font-size: 1.4285714285714286em;
    }

    .web-cam-calibration-layer {
        font-size: 13px;
    }
}
/*full-hd*/
@media screen and (min-width: 1920px), screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 960px), screen and (min-resolution: 2dppx) and (min-width: 960px) {
    .app-content, input, select {
        font-size: 22px;
    }

    body {
        font-size: 1.5714285714285714em;
    }
}
/*ultra-hd*/
@media screen and (min-width: 2560px), screen and (min-width: 768px) and (max-device-width: 1600px) and (orientation : portrait) {
    body, .app-content, input, select {
        font-size: 26px;
    }
}

/*@media screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1400px), screen and (min-resolution: 2dppx) and (min-width: 1400px) {
    body, .app-content, input, select {
        font-size: 32px;
    }
}*/

@media screen and (min-width: 1600px) and (orientation : portrait) {
    body, .app-content, input, select {
        font-size: 38px;
    }
}

@media screen and (orientation : portrait) {
    .app-main-menu > a {
        padding: 1em 0.5em;
    }

    .survey-actions > a + a {
        margin-left: 1em;
    }
}

.survey-select-container {
    margin-bottom: 0.4em;
}

/* Webcam emotions calibration begin */
.web-cam-calibration-layer, .web-cam-calibration-layer__cover {
    width: 400px;
    height: 300px;
}

.web-cam-calibration-layer {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    /*-webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;*/
    opacity: 0.0001;
    z-index: -1;
}
.web-cam-calibration-layer.show {
    opacity: 1;
    z-index: 11;
    background: rgb(51, 51, 51);
    color: rgb(255, 255, 255);
}
.web-cam-calibration-layer.face_move {
    background: rgba(51, 51, 51, .5);
    z-index: 10003;
    opacity: 1;
}
.web-cam__container {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 20px 15px;
}
.cam-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.cam-container {
    position: relative;
    width: 263px;
    height: 200px;
    margin: 0 auto;
}
.web-cam-calibration-layer .error_message {
    flex-shrink: 0;
    margin-top: 10px;
    width: 100%;
    height: 48px;
    font-size: 1.2em;
    text-align: center;
}
.cam-container.error #cam_preview {
    border: 3px solid #ff0700;
}
.cam-container.green #cam_preview {
    border: 3px solid #6ec700;
}
.cam-container__mask_block {
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 4px;
}
.cam-container__mask {
    display: block;
    width: 100%;
    height: 100%;
}

.face_check_instructions {
    display: none;
}

.show .face_check_instructions {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.face_check_instructions__title {
    margin-bottom: 20px;
    font-size: 1.4em;
    text-transform: uppercase;
}
.face_check_instructions__list {
    list-style-type: none;
    padding: 0!important;
    text-align: left;
}
.face_check_instructions.disabled {
    pointer-events: none;
}
.face_check_instructions__item {
    display: flex;
    margin-bottom: 5px;
}
.face_check_instructions__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.face_check_instructions__label {
    flex-shrink: 1;
    font-size: 1.2em;
}
.fix_btn--mobile {
    margin-top: auto;
    width: 100%;
}

.web-cam-calibration-layer__cover {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    display: none;
    z-index: 999999;
}

.web-cam-calibration-layer .survey-button.continue_survey {
    width: 100%;
    margin: 0;
    margin-top: auto;
}

    .web-cam-calibration-layer .survey-button.continue_survey:after {
        content: none;
    }

.web-cam-calibration-layer select {
    margin-bottom: 0.5em;
}

.web-cam-calibration-layer video,
#cam_preview,
#gl_preview {
    position: absolute;
    left: 0;
    width: 100%;
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    border: 3px solid transparent;
}
#gl_preview {
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    z-index: 1;
}

.web-cam-calibration-layer .web-cam-calibration__setup-manual-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1em;
}
.web-cam-calibration__setup-manual-link.mobile {
    display: none;
}

/*survey controls*/
@media screen and (max-width: 1024px) {
    .survey-container {
        width: 100%;
        min-height: 100% !important;
        -moz-box-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        margin: 0;
        border: none;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }

    .survey-question[data-code="trackInstr"] video {
        margin-top: -2.5em;
    }

    .survey-device-previews {
        display: none;
    }

    .survey-page-selector-container .chosen-container {
        width: 10em !important;
    }

    .survey-prev-button {
        display: none;
    }

    .survey-text-editor {
        width: 100%;
    }

    .survey-rating-slider-container {
        padding-left: 0em;
        width: 100%;
    }

    /*.survey-rating-stars {
        margin-left: -1em;
    }*/

    .survey-buttons-block-bottom {
        left: 2em;
        right: 2em;
        padding: 0;
    }

    .survey-button {
        width: 100%;
        position: static !important;
        height: 3em !important;
        margin: auto 0 0 !important;
    }
    .survey-button:after {
        display: none !important;
    }

    .web-cam-calibration-layer{
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 0 !important;
    }
    .cam-wrapper {
        margin-top: 10px;
    }
    .web-cam-calibration-layer video, #cam_preview, #gl_preview {
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%) scaleX(-1);
        height: 200px;
        width: auto;
    }
    #gl_preview {
        transform: translateX(-50%) translateY(-50%);
    }
    .cam-container__mask_block {
        display: none;
    }
    .face_check_instructions__title {
        font-size: 1.2em;
    }
    .web-cam-calibration-layer select
    {
        display: none !important;
    }

    .gray_calibration_bar{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: rgba(0,0,0,.8)
    }

    .error_message.out{
        opacity: 1;
        font-size: 13px;
        text-align: center;
    }


    .gray_calibration_bar .camera_help{
        background-image: url(/img/question-circle-regular.svg);
        left: 15px;
        width: 25px;
        top: 18px;
        height: 25px;
    }

    .gray_calibration_bar .retry_calibrate {
        width: 45px;
        height: 45px;
        border-radius: 100%;
        position: absolute;
        left: 50%;
        margin-left: -25px;
        margin-top: 7.5px;
    }


        .gray_calibration_bar .retry_calibrate:after {
            content: '';
            height: 0;
            width: 0;
            position: absolute;
            border-style: solid;
            border-width: 12px 0 12px 21px;
            border-color: transparent transparent transparent #ffffff;
            left: 50%;
            top: 50%;
            transform: translateX(-36%) translateY(-50%);
        }

    .survey-rating-slider-title {
        display: block;
        width: auto;
    }

    .survey-alternatives-container {
        display: block;
    }

    .survey-open-label {
        width: auto !important;
        max-width: none !important;
        display: block;
        text-align: left;
    }

    .survey-ranking-source, .survey-ranking-dest {
        width: 100%;
        float: none;
    }

    .survey-ranking-dest {
        margin-top: 2em;
        min-height: 6em !important;
    }


            .retry_calibrate.inLoading:after {
                content: none;
            }

            .retry_calibrate.inLoading {
                background-image: url(/img/loading_white.svg) !important;
                background-size: 60% auto !important;
                background-repeat: no-repeat !important;
                background-position: 50% 50% !important;
                pointer-events: none !important;
            }

}



.minWidth {
    width: 1px;
}

@media screen and (min-width: 1920px),
    screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 960px),
    screen and (min-resolution: 2dppx) and (min-width: 960px) {  /*Ipad*/
    .web-cam-calibration-layer {
        font-size: 14px;
    }
}


@media screen and (orientation: portrait) and (max-width: 400px) {
    .web-cam-calibration-layer, .web-cam-calibration-layer__cover {
        width: 100%;
        height: 300px;
    }

    .web-cam-calibration-layer {
        margin-top: -50%;
        margin-left: -50%;
    }
}

@media screen and (orientation: landscape) and (max-height: 600px) {
        .cam-container {
            height: 150px;
            width: 200px;
        }
        .web-cam-calibration-layer video, #cam_preview, #gl_preview {
            height: 150px;
        }

        .web-cam-calibration-layer select {
            margin-top: 1em;
        }

            .web-cam-calibration-layer select + video {
                height: 100%;
            }

            .gray_calibration_bar{
                width: 60px;
                height: 100%;
                right: 0;
                left: auto;
            }

            .retry_calibrate{
                top: 50%;
                margin-left: -22.5px !important;
                margin-top: -22.5px !important;
            }


            .camera_help{
                display: flex;
                height: 100%;
                justify-content: center;
                align-items: center;
            }


}

/* Webcam emotions calibration end */


/* Web eyetracker camera setup begin */
.web-eyetracker__camera-setup-layer .video-detector-container {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 1em;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #333;
    color: #FFF;
}

    .web-eyetracker__camera-setup-layer .video-detector-container video {
        width: 80vmin;
        height: 60vmin;
        max-width: 100%;
        max-height: 100%;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

    .web-eyetracker__camera-setup-layer .video-detector-container .video-wrapper {
        position: relative;
    }

.web-eyetracker__camera-setup-layer .video-source-selector {
    padding: 0.5em 0 1em;
}

    .web-eyetracker__camera-setup-layer .video-source-selector select {
        background: #333;
        color: #FFF;
        outline: none !important;
        border: 1px solid #666;
        border-radius: 2px;
        padding: 0.2em 0.4em;
        max-width: 280px;
        font-size: 1em;
    }

        .web-eyetracker__camera-setup-layer .video-source-selector select:focus {
            border-color: #999;
        }

        .web-eyetracker__camera-setup-layer .video-source-selector select option:checked {
            background: #555 !important;
        }
/* Web eyetracker camera setup end */


/* Web eyetracker calibration begin */

.web-eyetracker-calibration__layer {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    position: fixed;
    background: white;
    transition: background .5s ease-in-out;
}
.calibration_body {
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.calibration_instruction {
    max-width: 560px;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    transform: scale(0);
}
.calibration_instruction.show {
    transform: scale(1);
}
.calibration_instruction.show-pulse {
    transform: scale(1);
    transition: all 1s;
}
.calibration_instruction.hide-pulse {
    transform: scale(3);
    opacity: 0;
    transition: all 1s;
}
.calibration_face {
    display: flex;
    margin: 0 auto;
    width: 20vw;
    height: 20vh;
    transform: scale(0);
    visibility: hidden;
    /*transition: all .3s;*/
}
.calibration_face.show {
    visibility: visible;
    transform: scale(1);
}
.calibration_face.fade-out {
    animation: head_fade 1s forwards;
    animation-delay: 1.5s;
}
.calibration_face.fade-in {
    opacity: 0.1;
    animation: head_fade_in 1s forwards;
    animation-delay: 1.5s;
}
#calibration_face-src {
    position: relative;
    left: 1vmin;
    top: 2vmin;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-image:url(/img/survey/calibration/css_sprites.png);
    background-position: -660px -350px;
    opacity: .5;
}

.dot {
    display: block;
    position: absolute;
    width: 3vmin;
    height: 3vmin;
    left: 0;
    top: 0;
    opacity: 0;
    margin-top: -1.5vmin;
    margin-left: -1.5vmin;
    z-index: 2;
    /*visibility: hidden;*/
}
#calibration-view {
    position: relative;
    fill: #ed2726;
    background: #ed2726;
    border-radius: 600px;
}
.dot.moving {
    visibility: visible;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    -webkit-transition: all 1s linear;
    transition: all 1s linear;
}
.dot-source {
    position: absolute;
    top: 0;
    z-index: 1;
    /*transition: all 1s linear;*/
}
#calibration-view.blink {
    animation: blink 1.05s forwards;
    animation-iteration-count: 1, 0, infinite;
}
#calibration-view.arrow_left .arrow {
    transform: rotate(90deg);
}
#calibration-view.arrow_right .arrow {
    transform: rotate(-90deg);
}
#calibration-view.arrow_up .arrow {
    transform: rotate(180deg);
}
#calibration-view.arrow_down .arrow {
    transform: rotate(0);
}
.dot-source.check {
    opacity: 0;
}
.dot-source.arrow {
    opacity: 0;
}
/*#calibration-view.head {
    transform: scale(2);
}
#calibration-view.small {
    transform: scale(1);
}*/
#calibration-view.arrow_right,
#calibration-view.arrow_left,
#calibration-view.arrow_down,
#calibration-view.arrow_up {
    background: transparent;
}

.arrow_right:not(.pulsing) .dot-source.arrow,
.arrow_left:not(.pulsing) .dot-source.arrow,
.arrow_down:not(.pulsing) .dot-source.arrow,
.arrow_up:not(.pulsing) .dot-source.arrow {
    opacity: 1;
}
.green .dot-source.arrow {
    animation: hide_arr .1s forwards;
}
.green .dot-source.check {
    animation: show_green .1s forwards;
}
.pulsing .dot-source.check {
    opacity: 1;
}

#calibration-view.pulsing {
    animation: bg 1s;
    animation-delay: .5s;
}
#calibration-view.noPulse {
    animation: none;
}
#calibration-view.green {
    animation: red_green 1s forwards;
}
#calibration-view:before {
    content: '';
    display: block;
    border-radius: 600px;
    background: #ed0a00;
    opacity: 0;
    width: 3vmin;
    height: 3vmin;
    transform: scale(2);
}
#calibration-view.pulsing:before {
    animation: pulse .25s;
    animation-iteration-count: 2;
}

@keyframes head_fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

@keyframes head_fade_in {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hide_arr {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
@keyframes hide_red {
    0% {
        transform: scale(2);
    }

    40% {
        transform: scale(2);
    }

    50% {
        transform: scale(2);
    }

    90% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes show_green {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}
@keyframes red_green {
    0% {
        fill: #ed2726;
        background: #ed2726;
        /*transform: scale(2);*/
    }

    40% {
        fill: #6ec700;
        background: #fff;
        /*transform: scale(2);*/
    }

    50% {
        fill: #6ec700;
        background: #fff;
        /*transform: scale(2);*/
    }

    90% {
        fill: #6ec700;
        background: #fff;
        /*transform: scale(1);*/
    }

    100% {
        fill: #6ec700;
        background: #fff;
        /*transform: scale(1);*/
    }
}
@keyframes bg {
  0% {
        background: transparent;
        fill: #6ec700;
    }
  100% {
        background: transparent;
        fill: #6ec700;
    }
}
@keyframes blink {
    0% {
        opacity: 1;
    }

    20% {
        opacity: 0.8;
    }

    40% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.2;
    }

    60% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.5;
    }
}

@media screen and (max-width: 1000px) {
    .dot {
        width: 6vmin;
        height: 6vmin;
        margin-top: -3vmin;
        margin-left: -3vmin;
    }
    #calibration-view:before {
        width: 6vmin;
        height: 6vmin;
    }
    .calibration_instruction {
        max-width: 100%;
    }
}

/* Web eyetracker calibration end */


button.survey-button.continue_survey.disabled {
    filter: grayscale(1);
    opacity: 0.8;
}


.sliderPlaceHolder {
    position: absolute;
    height: 0.5em;
    margin-top: -0.8em;
    width: 1px;
    margin-left: -1px;
}



@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /*COOLTOOL-5460*/
    .secondColumn {
        max-width: 1px;
        height: 100%;
    }

    .minWidth {
        height: 100%;
    }
}



.not_used {
    display: none !important;
    visibility: hidden !important;
}

.survey-thank-you-page {
    color: inherit !important;
    font-size: 1em;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.btn-continue {
    float: none !important;
    margin-top: 20px !important;
}

.survey-language-selector-block.invisible {
    color: black !important;
}
.camera__reload,
.camera__switch {
    display: flex;
    flex: 0 0 33%;
    margin: 10px 0;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.camera__reload {
    order: -1;
}
.camera__switch {
    flex-direction: column;
}
.camera__reload .camera__reload_btn,
.switch_camera {
    margin: 0 15px;
}
.camera__reload_btn,
.switch_camera {
    width: 25px;
    height: 25px;
    border: none;
    outline: none;
    cursor: pointer;
    background-size: contain;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.camera__reload_btn {
    background: url(/img/survey/refresh.svg) no-repeat;
}
.camera__reload_btn:hover {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.switch_camera {
    width: 30px;
    height: 30px;
    background-image: url(/img/switch_camera.png);
}

.face_move .face_check_instructions {
    display: none;
}

.face_move .camera__reload,
.face_move .camera__switch,
.face_move .web-cam-calibration__setup-manual-link.mobile {
    display: none;
}

.survey-language-selector-block.invisible * {
    text-align: left !important;
}



.zero_op, .safari_browser .survey-eyetracking-container.inactive_nl_video{
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.safari_browser .survey-eyetracking-container.active_nl_video{
    opacity: 1;
}

.invalid_alternative{
    box-shadow: 0 -4px 2px -2px rgb(255, 0, 0) inset
}

.singlemultiple_input_element{
    vertical-align: top;
}

.survey-singlemultiple-container .survey-alternative-line{
    margin-bottom: 10px;
}


.selected_shelf_item img{
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
    opacity: 0.7;
}
.loadingimg__ico {
    position: relative;
    top: -1px;
    display: inline-block;
    width: 31px;
    height: 31px;
    margin-right: 8px;
    vertical-align: middle;
    background: url(/img/loading.svg) center center / 31px 31px no-repeat
}

.no_after:after{
    display: none !important;
}

.full_wrap{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100000;
}

    .full_wrap button.survey-button.btn-continue.no_after {
        position: absolute !important;
        bottom: 10px;
        left: 50%;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
.full_wrap_text {
    text-align: center;
    font-size: 1.3em;
    width: 80%;
    left: 10%;
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.survey-thank-you-page img {
    max-height: 40vh;
}

.camera_help_popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto;
    height: 100%;
    z-index: 12000;
    background: white;
}

.setup_instruction.right {
    width: 90%;
    direction: rtl;
}

.setup_instruction__device {
    display: none;
}

.setup_instruction__device.show {
    display: block
}

.setup_instruction__device > section {
    padding-bottom: 70px;
}

.camera_help_popup iframe{
    width: 100%;
    height: 100%;
}

button.survey-button.cancel_help {
    position: fixed !important;
    left: 0px;
    bottom: 0px;
}

.camera_help_popup img{
    display: block;
    margin: 10px auto;
    max-width: 100%;
}

.setup_instruction img {
    margin: 10px 0;
    text-align: right;
    margin-left: auto;
}

.camera_help_popup > section{
    width: 70%;
    margin: 0 auto;
    overflow: auto;
    padding-bottom: 70px;
}

    .camera_help_popup > section > section {
        padding-bottom: 70px;
    }

.camera_help_popup.chrome .opera,
.camera_help_popup.chrome .safari,
.camera_help_popup.chrome .mozilla{
    display: none;
}

.camera_help_popup.safari .opera,
.camera_help_popup.safari .chrome,
.camera_help_popup.safari .mozilla{
    display: none;
}

.camera_help_popup.mozilla .opera,
.camera_help_popup.mozilla .chrome,
.camera_help_popup.mozilla .safari{
    display: none;
}

.camera_help_popup.opera .mozilla,
.camera_help_popup.opera .chrome,
.camera_help_popup.opera .safari{
    display: none;
}



.connection-lost h4 {
    text-align: center;
    font-size: 3em;
    color: gray;
    font-weight: 350;
}


.connection-lost p.tac{
    font-size: 2em;
    color: red;
}


.global_loading_overlay.loading_progress {
    opacity: 1;
    width: 100%;
    height: 100%;
}
.global_loading_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    /* display: none; */
    opacity: 0;
    background-image: url(/img/loading.svg);
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.5);
    -moz-transition: opacity .9s ease-in-out;
    -o-transition: opacity .9s ease-in-out;
    -webkit-transition: opacity .9s ease-in-out;
    transition: opacity .5s ease-in-out;
    z-index: 10000000;
    background-position: 50% 50%;
    background-size: 180px auto;
}

.media_container_video {
    width: 100%;
    height: calc(100vh - 300px);
}

.no_mouse_ui, .survey-eyetracking-container.implicit-question {
    /* cursor: none !important;  */
}

span.shelf_pricing_label {
    position: absolute;
    left: 50%;
    bottom: 3%;
    font-size: 1.2vw;
    transform: translateX(-50%);
    background: white;
    border: 1px solid black;
    line-height: 114%;
    padding: 0 2%;
}



.progress-ring__circle {
  /*axis compensation*/
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 326, 326;
  stroke-dashoffset: 326.9;
}

.progress-ring__circle.full {
    transition: 30s stroke-dashoffset;
    stroke-dashoffset: 0;
}

svg.progress-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
}

.et-failed-screen{
    background: black;
}

.reload_screen_btn{
    background: transparent !important;
    border: 2px solid white !important;
    min-width: 350px;
    max-width: 350px;
    border-radius: 7px;
}

.reload_screen_header {
    color: white;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    margin-top: 10px;
}

.reload_screen_text{
    color: white;
    margin: 0 auto;
    width: auto;
    background: rgba(255,0,0,0.9);
    left: 50%;
    font-size: 18px;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 3px;
}

.reload_screen_text img {
        position: relative;
    margin-bottom: -9px;
    margin-top: -7px;
    top: -1px;
    margin-right: 10px;
}
#mobile_rotate {
    display: none;
}
@media screen and (max-width: 1366px) and (orientation: landscape) and (max-height: 768px) {
    .cam-wrapper {
        margin-top: 0;
    }
    .face_check_instructions__title {
        font-size: 1.2em;
    }
}
@media screen and (max-width: 960px) {
    svg#implicit_test_container_border {
        display: none;
    }
    .implicit-item img{
        max-width:90%;
        max-height: 35vh;
    }
}
@media screen and (max-width: 815px) {
    .cam-container {
        flex: 0 0 33%;
    }
}
@media screen and (max-width:  900px) and (orientation: landscape) and (max-height: 600px),
screen and (max-height:  900px) and (orientation: portrait) and (max-width: 450px) {
    .cam-wrapper {
        margin-top: 0;
        justify-content: center;
    }

    .web-cam-calibration-layer.face_move .cam-container {
        margin-top: 30px;
    }

    .web-cam-calibration-layer .error_message {
        margin-top: 0;
    }

    .camera__switch .web-cam-calibration__setup-manual-link {
        display: none;
    }
    .web-cam-calibration__setup-manual-link.mobile {
        margin-top: 0.83em;
        display: block;
    }
}
@media screen and (orientation: portrait) {
    .implicit-btn-container {
        bottom: 20px;
    }
    .fix_btn--mobile {
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        background: rgb(51, 51, 51);
    }
}
@media screen and (max-height:  900px) and (orientation: portrait) and (max-width: 450px) {
    .web-cam-calibration-layer:not(.face_move) .error_message {
        position: fixed;
        background: red;
        top: 0;
        vertical-align: middle;
        height: auto;
        color: #fff !important;
    }
    .web-cam-calibration-layer .error_message:not(:empty) {
        padding: 12px;
    }
    .web-cam-calibration-layer.show {
        z-index: 10003;
    }
}
@media screen and (max-width: 960px) and (orientation: landscape) and (max-height: 600px) {
    .implicit-item img {
        max-height: 20vh;
    }
    .media_container_video {
        height: 43vh;
    }
    .web-cam__container {
        display: flex;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row;
        justify-content: center;
        height: 100%;
        padding: 10px;
    }

    .cam-container {
        flex-basis: 100%;
        margin-top: 10px;
    }

    .web-cam-calibration__setup-manual-link.mobile {
        margin-top: 0;
    }

    .web-cam-calibration-layer.face_move .web-cam__container {
        align-items: flex-start;
    }

    .cam-wrapper {
        width: 40%;
    }

    .camera__reload {
        order: 0;
    }

    .show .face_check_instructions {
        display: flex;
        -ms-flex-flow: row wrap;
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;
        width: 60%;
        height: 100%;
        margin-left: 10px;
        font-size: 16px;
    }

    .face_move .face_check_instructions {
        display: none;
    }

    h2.face_check_instructions__title {
        font-size: 3.5vh;
        margin: 0;
    }

    button.survey-button.cancel_help {
        bottom: 70px;
        width: 100px;
    }

    .face_check_instructions__label {
        font-size: 0.93em;
    }

    .face_check_instructions__item {
        display: flex;
    }

    .face_check_instructions__checkbox {
        margin-bottom: 0;
        flex-shrink: 0;
        margin-right: 10px;
    }
}

@media screen and (max-width: 960px) and (orientation: landscape) and (max-height: 350px) {
    .cam-container, .web-cam-calibration-layer video, #cam_preview, #gl_preview {
        height: 135px;
    }
    .web-cam-calibration-layer .error_message {
        margin-top: 5px;
        font-size: 1em;
    }
    .face_check_instructions__label {
        font-size: 0.8em;
    }
}
@media screen and (max-width: 960px) and (orientation: portrait) and (max-height: 700px) {
    .cam-container, .web-cam-calibration-layer video, #cam_preview, #gl_preview {
        height: 150px;
    }
    .face_check_instructions__title {
        font-size: 1em;
    }
}

.detecor_status {
    opacity: 0;
    position: fixed;
    right: 0;
    top: 10%;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(205, 0, 0, 0.9);
    border-radius: 4px;
    z-index: 99999;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.detecor_status.visible {
    opacity: 1;
}
/*.detector_status__img {
    margin-right: 8px;
}*/
.detecor_status__text {
    font-size: 16px;
    color: #fff;
}

.click_timer {
    position: absolute;
    right: 60px;
    top: 10px;
    left: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    font-family: Arial;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    z-index: 99999;
}

.click_timer__text {
    margin-right: 6px;
    color: #797979;
    line-height: 27px;
}

.click_timer__count {
    border-radius: 50%;
    background: #E2E2E2;
    width: 27px;
    height: 27px;
    text-align: center;
    line-height: 27px;
}
.feedback {
    text-align: center;
    padding: 20px;
}

.feedback__title {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 15px;
}

.feedback__area {
    width: 100%;
    max-width: 50%;
    margin-bottom: 15px;
}

.feedback__send {
    display: block;
    margin: 0 auto;
    padding: 10px 40px;
}

#mobile_rotate {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    padding: 0 15%;
    background: black;
    text-align: center;
}
#mobile_rotate img {
    display: none;
    max-width: 350px;
    height: auto;
    width: 100%;
    margin: 0 auto;
}

#mobile_rotate span {
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}
#mobile_rotate span>span {
    display: none;
}
@media only screen and (orientation: portrait) {
    #mobile_rotate.horizontal {
        display: flex;
    }
    #mobile_rotate .img_wrap {
        margin: 5vh 0 12vh;
    }
    #mobile_rotate .mobile_rotate {
        display: block;
    }
    .ios #cam_preview,
    .ios #gl_preview,
    .ios .cam-container {
        height: 150px;
    }
}
@media only screen and (orientation: landscape) {
    #mobile_rotate.vertical {
        display: flex;
        justify-content: space-around;
    }
    #mobile_rotate .img_wrap {
        margin: 5vh 0;
    }
    #mobile_rotate .mobile_rotate {
        display: block;
        max-width: 250px;
    }
}

 .user_click {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    margin-left: -20px;
    margin-top: -20px;
    background: url("/img/Emotions/click.png");
    z-index: 100000000;
    background-size: 100% 100%;
}

.web-cam-calibration__setup-manual-link a.skip_neuro_question { margin-left: 10px}

    .gray_calibration_bar a.skip_neuro_question {
    position: fixed;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
}

.volume_up.survey-control-icon {
    background: none;
    border: none;
    align-self: center;
    cursor: pointer;
}

.implicit_question_rtt .implicit-instruction {
    color: inherit;
}
.progress_bar {
    width: 100%;
    max-width: 260px;
    margin: 5px auto 0;
    text-align: center;
}
.progress_bar_line {
    width: 0%;
    height: 4px;
    background: red;
}
.implicit {
  padding: 0 20px;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 100%;
  text-align: center;
  z-index: 1000;
  overflow: hidden;
}
.implicit__container {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  justify-content: flex-start;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.implicit__title {
  padding: 40px 0;
  font-weight: normal;
  font-size: 30px;
  line-height: 20px;
}
.implicit__card_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: calc(100% - 25vh);
  margin-bottom: auto;
}

.implicit-question--no_priming .implicit__card_container{
    height: calc(100vh - 210px);
}

@media only screen and (max-width: 900px) {
   .implicit-question--no_priming .implicit__card_container{
       height: calc(100% - 25vh);
   } 
}

.implicit__card {
  position: relative;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
  background: inherit;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
}
.implicit__card--next {
  position: absolute;
  height: 100%;
  z-index: -1;
}
.implicit__card.anim {
  transition: left .3s;
}
.implicit__card--next:after {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: inherit;
}
/**/
.implicit__img_wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.implicit__img_wrap--half {
  height: 50%;
  margin-bottom: 15px;
  height: calc(50% - 7px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.implicit__img_wrap--thirds {
  height: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
}
.implicit__text + .implicit__img_wrap--thirds {
  -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
}
.implicit__img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.implicit__text {
  margin: 15px;
  padding: 20px 0;
  height: 50%;
  display: flex;
  align-items: flex-end;
  overflow-wrap: anywhere; /* dummy text wrap */
}
.implicit__text+.implicit__text,
.implicit__img_wrap + .implicit__text {
    align-items: flex-start;
}
.implicit__actions {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.implicit__btn {
  width: 300px;
  height: 70px;
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
  overflow: hidden;
  padding: 0 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 24px;
  line-height: 70px;
  color: #fff;
  transition: all 0.3s;
}
.implicit__btn span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
}
.implicit__btn--positive:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("/img/survey/implicit/arrows_btn.svg");
    margin-left: 40px;
    margin-right: -40px;
}

.implicit__btn--negative:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("/img/survey/implicit/arrows_btn.svg");
    margin-left: -40px;
    margin-right: 40px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.implicit__btn.right {
    pointer-events: none;
}
.implicit__btn--negative {
  margin-right: 15px;
  background: #FF8300;
}

.implicit__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  filter: blur(44px);
  z-index: -1;
}

.no-touch .implicit__btn--negative:hover ~ .implicit__bg,
.implicit__btn--negative.chosen ~ .implicit__bg,
.drag-left .implicit__bg {
  border-left: 20px solid;
   border-color: #FF8300;
}

.implicit__btn--positive {
  background: #00BCEB;
}
.no-touch .implicit__btn--positive:hover,
.implicit__btn--positive:active,
.no-touch .implicit__btn--negative:hover,
.implicit__btn--negative:active,
.drag-left .implicit__btn--negative,
.drag-right .implicit__btn--positive {
  opacity: 0.5;
}
.no-touch .implicit__btn--positive:hover ~ .implicit__bg,
.implicit__btn--positive.chosen ~ .implicit__bg,
.drag-right .implicit__bg {
  border-right: 20px solid;
  border-color: #00BCEB;
}

.drag-right .implicit__card#draggable {
    transform: rotate(6deg);
}

.drag-left .implicit__card#draggable {
    transform: rotate(-6deg);
}

.implicit__text + .implicit__img_wrap--half,
.implicit__img_wrap--half + .implicit__text {
    height: 66%;
}


.implicit-question--assotiation_task .implicit__btn {
    margin: 0 auto;
}

.implicit-question--assotiation_task .implicit__btn::after{
    display: none;
}

.implicit-question--assotiation_task .implicit__btn.hidden {
    display: none;
}

.implicit_assotiation_instruction {
    width: 100%;
    margin: 20px 0;
    font-size: 0.6em;
}


body.implicit_question_rtt {
    box-shadow: none;
    transition: box-shadow .2s ease-in-out;
}

body.implicit_question_rtt.interacted{
    box-shadow: 0 0 200px 0px rgba(0, 255, 0, .5) inset, 0 0 10px 40px rgba(0, 255, 0, .5);
}

body.implicit_question_rtt.skipped{
    box-shadow: 0 0 200px 0px rgba(255, 0, 0, .5) inset, 0 0 10px 40px rgba(255, 0, 0, .5);
}

@media only screen and (max-width: 900px) {
  .implicit__title {
    padding: 20px 0 10px;
    font-size: 16px;
  }
  .implicit__text {
    padding: 0;
  }
  .implicit__actions {
    margin-top: auto;
    padding-top: 40px;
  }
  .implicit__btn span {
      font-size: 16px;
  }
  .drag-right .implicit__btn--negative,
  .drag-left .implicit__btn--positive {
    width: 0;
    opacity: 0;
    padding: 0;
    margin: 0;
  }

  .drag-left .implicit__btn--negative {
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(270deg, #FFFFFF 0.06%, #FF8300 99.94%);
  }

  .drag-right .implicit__btn--positive {
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(90.07deg, #FFFFFF 0.06%, #00BCEB 99.94%);
  }

  .drag-left .implicit__btn--negative:before {
    margin-left: 20px;
  }

  .drag-right .implicit__btn--positive:after {
    margin-right: 20px;
  }

  .drag-left .implicit__actions,
  .drag-right .implicit__actions {
    margin-left: -20px;
    margin-right: -20px;
  }
  .implicit__btn--negative:before {
      margin: 0 10px 0 0;
  }
  .implicit__btn--positive:after {
      margin: 0 0 0 10px;
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.implicit__text.implicit__calibration {
    font-size: 5em;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.implicit__btn--middle{
    width: 100%;
}

.implicit-question--assotiation_task .implicit__actions {
    display: block;
}


.js-image-zoom__zoomed-image {
    box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, .5);
}

.img-magnifier-container {
    position: relative;
    display: inline-block;
    height: 100%;
}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
.snackbar {
  z-index: 8;
  margin: 8px;
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /*pointer-events: none;*/
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  z-index: 999;
}

.snackbar__surface {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: flex-start;
  box-sizing: border-box;
  background-color: #333;
  box-shadow: 0 3px 5px -1px rgba(0,0,0,.2), 0 6px 10px 0 rgba(0,0,0,.14), 0 1px 18px 0 rgba(0,0,0,.12);
  border-radius: 4px;
}

.snackbar__label {
  flex-grow: 1;
  box-sizing: border-box;
  margin: 0;
  padding: 14px 16px;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: .0178571429em;
  color: hsla(0,0%,100%,.87);
}

.snackbar__actions {
  margin-left: 0;
  display: flex;
  flex-shrink: 0;
}

.snackbar__btn {
  box-sizing: border-box;
  min-width: 64px;
  border: none;
  outline: none;
  line-height: inherit;
  overflow: visible;
  vertical-align: middle;
  border-radius: 0 4px 4px 0;
  background-color: transparent;
  color: #bb86fc;
}

.snackbar__btn:active {
  background: #bb86fc;
  color: #fff;
}.custom-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10001;
  font-family: 
    'Segoe UI',
    Frutiger,
    'Frutiger Linotype',
    'Dejavu Sans',
    'Helvetica Neue',
    Arial,
    sans-serif;
}

.custom-modal__dialog {
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: flex;
  height: 100%;
}

.custom-modal__dialog {
  max-width: 540px;
  margin: 0;
  max-width: 100%;
  background: #fff;
}

.custom-modal__title {
  margin: 0;
  font-size: 1.4em;
}

.custom-modal__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
  margin: auto;
  width: 100%;
  max-width: 1100px;
  background: #fff;
  text-align: center;
}

.custom-modal__header {
  padding: 1em;
}

.custom-modal__body {
  padding: 1em;
}

.custom-modal__foter {
  padding: 1em;
}

.custom-modal__accept, .custom-modal__cancel {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 3px solid transparent;
  padding: 1.4rem 1.8rem;
  font-size: 1.5em;
  cursor: pointer;
  transition: opacity .3s;
  margin: 0 0.75rem;
  margin-bottom: 2rem;
}

.custom-modal__input {
  width: 100%;
  min-height: 130px;
  border-color: #353535;
  color: #353535;
  font-size: 1.5em;
  padding: 1rem;
}
.custom-modal__input::placeholder {
  color: #999999;
}
.custom-modal__error {
  display: none;
  font-size: 1em;
  color: #FD5B2C;
  text-align: left;
}
.error + .custom-modal__error {
  display: block;
}

.custom-modal__accept {
  background-color: #FD5B2C;
  color: #fff;
}

.custom-modal__cancel {
  border-color: #FD5B2C;
  background: none;
  color: #FD5B2C;
  margin-left: 0.75rem;
}

.custom-modal__accept:hover, .custom-modal__cancel:hover {
  opacity: .7;
}

.custom-modal__input.error {
  border-color: #FD5B2C;
}
.custom-modal__input:focus {
  color: #353535;
}

@media (max-width: 900px) {
  .custom-modal {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .custom-modal__accept, .custom-modal__cancel {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
  }
  .custom-modal__title {
    white-space: pre-line;
    font-size: 1.3em;
  }
}
@media screen and (orientation:landscape)
  and (min-device-width: 319px) 
  and (max-device-width: 767px) {
   .custom-modal {
      font-size: 10px;
    }
    .custom-modal__title {
      margin: 0;
    }
}@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-16px);
    }
    60% {
        -webkit-transform: translateY(-7px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-16px);
        transform: translateY(-16px);
    }
    60% {
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
    }
}

.ui-menu-item.ui-state-focus {
    background: #ededed;
    border: none;
    padding: 0 8px;
}

.ui-menu-item {
    width: auto !important;
}

.ui-menu {
    padding: 0.5em;
    width: auto !important;
    right: -1px;
    border: 1px solid #ccc;
    border-top: 0;
    margin-top: -3px;
    box-shadow: 1px 2px 6px #ddd;
    background: #f9f9f9;
    z-index: 1;
}

.ui-menu .ui-menu-item {
    float: none;
}

.tagInput {
    position: relative;
}

.tagInputContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.tagInput {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.tagInputContainer .survey-alternative-line-block {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
}

.tagInputContainer label {
    margin-right: 10px;
}

.tagInput_alt {
    display: none;
}

.option {
    margin-bottom: 2em;
}

.option p {
    margin-bottom: 0;
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

#forkongithub a {
    background: #990033;
    color: #fff;
}

.project_container a {
    color: #000;
}

.clearfix:before,
.clearfix:after {
    display: block;
    content: '';
    line-height: 0;
    clear: both;
}

.taggle_list {
    float: left;
    width: 100%;
    margin: 0;
    margin-bottom: -10px;
}

.survey-container .taggle_list .taggle_input[type="text"] {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
}

.taggle_list li {
    float: left;
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: 5px;
}

.taggle_list .taggle {
    margin-right: 8px;
    line-height: 1.2;
    background: #e2e1df;
    padding: 5px 10px;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.taggle_list .taggle_hot {
    background: #cac8c4;
}

.taggle_list .taggle .close {
    font-size: 1.1rem;
    position: absolute;
    top: 5px;
    right: 3px;
    text-decoration: none;
    padding-left: 2px;
    padding-top: 3px;
    line-height: 0.5;
    color: #ccc;
    color: rgba(0, 0, 0, 0.2);
    padding-bottom: 4px;
    display: none;
    border: 0;
    background: none;
    cursor: pointer;
}

.taggle_list .taggle:hover {
    padding: 5px;
    padding-right: 25px;
    background: #ccc;
    transition: all 0.3s;
}

.taggle_list .taggle:hover > .close {
    display: block;
}

.taggle_list .taggle .close:hover {
    color: #990033;
}

.taggle_placeholder {
    position: absolute;
    color: #ccc;
    top: 12px;
    left: 8px;
    transition: opacity, 0.25s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.survey-container .taggle_list .taggle_input[type="text"] {
    padding: 8px;
    padding-left: 0;
    float: left;
    margin-top: -5px;
    background: none;
    width: 100%;
    max-width: 100%;
}

.taggle_sizer {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -500px;
    z-index: -1;
    visibility: hidden;
}

@media (max-width: 600px) {
    .tagInputContainer label {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}.media_slider {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9;
    left: 0;
    padding: 10px;
}
.media_slider__hand {
    width: 50px;
    height: auto;
    margin-top: 20px;
}
.slidecontainer {
    width: 100%;
    max-width: 1000px;
    margin: 5px auto;
    background: rgba(102,102,102, .6);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgb(255 255 255 / 24%);
}
.labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 27px 0;
}
.label {
  word-wrap: break-word;
  text-align: left;
  color: #fff;
  font-size: 16px;
  width: 130px;
}

.label.label-left{
    text-align: right;
}

.slider_wrapper{
    width: 100%;
    height: 10px;
}

.slider_wrapper:after {
    content: "";
    display: block;
    position: relative;
    width: 50px;
    margin: -42px auto 0;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    z-index: 2;
    pointer-events: none;
    background-image: url(/img/survey/media_slider-hand.svg);
    background-position: 50% 78%;
    background-size: 80% auto;
    background-color: #b1b1b1;
    background-repeat: no-repeat;
}

.slider_wrapper.moved:after{
    opacity: 0;
}

.slider {
    -webkit-appearance: none;
    width: 90%;
    height: 10px;
    padding: 0;
    margin: 0;
    position: relative;
    top: -6px;
    border-radius: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #FAFAFA;
}