/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* STATES AND INPUT GROUP VARIABLES
    ------------------------------------*/
/*   TEMPORARY VARIABLES FOR OPERATIONS
    ------------------------------------*/
/*   CREATING SCSS USABLE VARIABLES FOR INTERPOLATION
    ------------------------------------*/
/*   FUNCTIONAL VARIABLES FOR INPUTS AND STATES
    ------------------------------------*/
/* COLOR AND FONT VARIABLES
TODO: SEPARATE COLOR ON FUNCTIONS
    ------------------------------------*/
/* MAIN STYLE FOR FORM
    ------------------------------------*/
/* line 95, ../../sass/components/form/_form-base.scss */
.form {
  /* TWITTER BOOTSTRAP FORM STYLE
  ------------------------------------*/
  /* STATES STYLES
      ------------------------------------*/
  /* ARROW BUTTON STYLES
     -----------------------------------*/
}
/* line 97, ../../sass/components/form/_form-base.scss */
.form .form-heading {
  display: block;
  color: #323131;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
/* line 104, ../../sass/components/form/_form-base.scss */
.form form {
  margin: 0 0 20px;
}
/* line 108, ../../sass/components/form/_form-base.scss */
.form fieldset {
  background-color: #e1e1e1;
  border: solid 2px #323131;
  padding: 13px;
  margin: 15px 0;
  min-width: 0;
}
/* line 116, ../../sass/components/form/_form-base.scss */
.form legend {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  padding: 0 5px;
}
/* line 123, ../../sass/components/form/_form-base.scss */
.form fieldset legend {
  display: table;
  white-space: normal;
  margin-right: 10px;
}
/* line 129, ../../sass/components/form/_form-base.scss */
.form label,
.form input,
.form button,
.form select,
.form textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  max-width: 100%;
}
/* line 140, ../../sass/components/form/_form-base.scss */
.form textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
  min-width: 200px;
}
/* line 146, ../../sass/components/form/_form-base.scss */
.form input,
.form button,
.form select,
.form textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 153, ../../sass/components/form/_form-base.scss */
.form label {
  display: block;
  margin-bottom: 5px;
}
/* line 158, ../../sass/components/form/_form-base.scss */
.form select,
.form textarea,
.form input[type="email"], .form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="tel"], .form input[type="text"], .form input[type="url"], .form input[type="color"], .form input[type="date"], .form input[type="datetime"], .form input[type="datetime-local"], .form input[type="month"], .form input[type="time"], .form input[type="week"],
.form .uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
/* line 173, ../../sass/components/form/_form-base.scss */
.form input,
.form textarea,
.form .uneditable-input {
  width: 206px;
}
/* line 179, ../../sass/components/form/_form-base.scss */
.form fieldset textarea {
  resize: vertical;
  width: 100%;
}
/* line 184, ../../sass/components/form/_form-base.scss */
.form textarea {
  height: auto;
}
/* line 188, ../../sass/components/form/_form-base.scss */
.form select,
.form textarea,
.form input[type="email"], .form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="tel"], .form input[type="text"], .form input[type="url"], .form input[type="color"], .form input[type="date"], .form input[type="datetime"], .form input[type="datetime-local"], .form input[type="month"], .form input[type="time"], .form input[type="week"],
.form .uneditable-input {
  background-color: white;
  border: 1px solid #CCCCCC;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border 0.2s linear, box-shadow 0.2s linear;
  -o-transition: border 0.2s linear, box-shadow 0.2s linear;
  -webkit-transition: border 0.2s linear, box-shadow 0.2s linear;
  transition: border 0.2s linear, box-shadow 0.2s linear;
}
/* line 198, ../../sass/components/form/_form-base.scss */
.form select:focus,
.form textarea:focus,
.form input[type="email"]:focus, .form input[type="number"]:focus, .form input[type="password"]:focus, .form input[type="search"]:focus, .form input[type="tel"]:focus, .form input[type="text"]:focus, .form input[type="url"]:focus, .form input[type="color"]:focus, .form input[type="date"]:focus, .form input[type="datetime"]:focus, .form input[type="datetime-local"]:focus, .form input[type="month"]:focus, .form input[type="time"]:focus, .form input[type="week"]:focus,
.form .uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
/* line 207, ../../sass/components/form/_form-base.scss */
.form input + .help-block,
.form select + .help-block,
.form textarea + .help-block,
.form .uneditable-input + .help-block {
  margin-top: 10px;
}
/* line 214, ../../sass/components/form/_form-base.scss */
.form input,
.form textarea,
.form select,
.form .help-inline,
.form .uneditable-input {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: middle;
  *zoom: 1;
}
/* line 226, ../../sass/components/form/_form-base.scss */
.form input[type="radio"],
.form input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px                  \9;
  *margin-top: 0;
  line-height: normal;
}
/* line 234, ../../sass/components/form/_form-base.scss */
.form input[type="file"],
.form input[type="image"],
.form input[type="submit"],
.form input[type="reset"],
.form input[type="button"],
.form input[type="radio"],
.form input[type="checkbox"] {
  width: auto;
}
/* line 244, ../../sass/components/form/_form-base.scss */
.form select,
.form input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px;
}
/* line 253, ../../sass/components/form/_form-base.scss */
.form select {
  width: 220px;
  background-color: white;
  border: 1px solid #CCCCCC;
}
/* line 259, ../../sass/components/form/_form-base.scss */
.form select[multiple],
.form select[size] {
  height: auto;
}
/* line 264, ../../sass/components/form/_form-base.scss */
.form .uneditable-input,
.form .uneditable-textarea {
  color: #999999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #CCCCCC;
  -moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
  -webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
}
/* line 273, ../../sass/components/form/_form-base.scss */
.form .uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
/* line 278, ../../sass/components/form/_form-base.scss */
.form .uneditable-textarea {
  width: auto;
  height: auto;
}
/* line 283, ../../sass/components/form/_form-base.scss */
.form input:-moz-placeholder,
.form textarea:-moz-placeholder,
.form input:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
.form input::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder {
  color: #999999;
}
/* line 292, ../../sass/components/form/_form-base.scss */
.form .form-actions {
  padding-left: 180px;
}
/* line 296, ../../sass/components/form/_form-base.scss */
.form .hide {
  display: none;
}
/* line 300, ../../sass/components/form/_form-base.scss */
.form .radio,
.form .checkbox {
  min-height: 20px;
  padding-left: 20px;
}
/* line 306, ../../sass/components/form/_form-base.scss */
.form .radio input[type="radio"],
.form .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -22px;
}
/* line 312, ../../sass/components/form/_form-base.scss */
.form .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
/* line 318, ../../sass/components/form/_form-base.scss */
.form .controls:first-child {
  *padding-left: 180px;
}
/* line 323, ../../sass/components/form/_form-base.scss */
.form .controls > .radio:first-child,
.form .controls > .checkbox:first-child {
  padding-top: 5px;
}
/* line 328, ../../sass/components/form/_form-base.scss */
.form .radio.inline,
.form .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
/* line 336, ../../sass/components/form/_form-base.scss */
.form .radio.inline + .radio.inline,
.form .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
/* line 341, ../../sass/components/form/_form-base.scss */
.form input,
.form textarea,
.form .uneditable-input {
  margin-left: 0;
}
/* line 347, ../../sass/components/form/_form-base.scss */
.form .controls-row {
  *zoom: 1;
}
/* line 349, ../../sass/components/form/_form-base.scss */
.form .controls-row:before, .form .controls-row:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 355, ../../sass/components/form/_form-base.scss */
.form .controls-row:after {
  clear: both;
}
/* line 360, ../../sass/components/form/_form-base.scss */
.form input[disabled],
.form select[disabled],
.form textarea[disabled],
.form input[readonly],
.form select[readonly],
.form textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
/* line 370, ../../sass/components/form/_form-base.scss */
.form input[type="radio"][disabled],
.form input[type="checkbox"][disabled],
.form input[type="radio"][readonly],
.form input[type="checkbox"][readonly] {
  background-color: transparent;
}
/* line 380, ../../sass/components/form/_form-base.scss */
.form .control-label {
  word-break: break-all;
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
  line-height: normal;
}
/* line 391, ../../sass/components/form/_form-base.scss */
.form .control-group.warning input, .form .control-group.warning select, .form .control-group.warning textarea, .form .control-group.warning .control-label, .form .control-group.warning .help-block, .form .control-group.warning .help-inline, .form .control-group.warning .checkbox, .form .control-group.warning .radio {
  color: #c09853;
}
/* line 395, ../../sass/components/form/_form-base.scss */
.form .control-group.warning input, .form .control-group.warning select, .form .control-group.warning textarea {
  border-color: #c09853;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 400, ../../sass/components/form/_form-base.scss */
.form .control-group.warning input:focus, .form .control-group.warning select:focus, .form .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}
/* line 409, ../../sass/components/form/_form-base.scss */
.form .control-group.error input, .form .control-group.error select, .form .control-group.error textarea, .form .control-group.error .control-label, .form .control-group.error .help-block, .form .control-group.error .help-inline, .form .control-group.error .checkbox, .form .control-group.error .radio {
  color: #b94a48;
}
/* line 413, ../../sass/components/form/_form-base.scss */
.form .control-group.error input, .form .control-group.error select, .form .control-group.error textarea {
  border-color: #b94a48;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 418, ../../sass/components/form/_form-base.scss */
.form .control-group.error input:focus, .form .control-group.error select:focus, .form .control-group.error textarea:focus {
  border-color: #953b39;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}
/* line 427, ../../sass/components/form/_form-base.scss */
.form .control-group.success input, .form .control-group.success select, .form .control-group.success textarea, .form .control-group.success .control-label, .form .control-group.success .help-block, .form .control-group.success .help-inline, .form .control-group.success .checkbox, .form .control-group.success .radio {
  color: #468847;
}
/* line 431, ../../sass/components/form/_form-base.scss */
.form .control-group.success input, .form .control-group.success select, .form .control-group.success textarea {
  border-color: #468847;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 436, ../../sass/components/form/_form-base.scss */
.form .control-group.success input:focus, .form .control-group.success select:focus, .form .control-group.success textarea:focus {
  border-color: #356635;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}
/* line 445, ../../sass/components/form/_form-base.scss */
.form .control-group.info input, .form .control-group.info select, .form .control-group.info textarea, .form .control-group.info .control-label, .form .control-group.info .help-block, .form .control-group.info .help-inline, .form .control-group.info .checkbox, .form .control-group.info .radio {
  color: #3a87ad;
}
/* line 449, ../../sass/components/form/_form-base.scss */
.form .control-group.info input, .form .control-group.info select, .form .control-group.info textarea {
  border-color: #3a87ad;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* line 454, ../../sass/components/form/_form-base.scss */
.form .control-group.info input:focus, .form .control-group.info select:focus, .form .control-group.info textarea:focus {
  border-color: #2d6987;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}
/* line 466, ../../sass/components/form/_form-base.scss */
.form .control-group.warning input[type="radio"],
.form .control-group.error input[type="radio"],
.form .control-group.success input[type="radio"],
.form .control-group.info input[type="radio"] {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 472, ../../sass/components/form/_form-base.scss */
.form input:focus:invalid,
.form textarea:focus:invalid,
.form select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}
/* line 479, ../../sass/components/form/_form-base.scss */
.form input:focus:invalid:focus,
.form textarea:focus:invalid:focus,
.form select:focus:invalid:focus {
  border-color: #e9322d;
  -moz-box-shadow: 0 0 6px #d59392;
  -webkit-box-shadow: 0 0 6px #d59392;
  box-shadow: 0 0 6px #d59392;
}
/* line 486, ../../sass/components/form/_form-base.scss */
.form .help-block,
.form .help-inline {
  color: #595959;
}
/* line 491, ../../sass/components/form/_form-base.scss */
.form .help-block {
  display: block;
  margin-bottom: 0;
}
/* line 496, ../../sass/components/form/_form-base.scss */
.form .help-inline {
  display: inline-block;
  *display: inline;
  padding-left: 5px;
  vertical-align: middle;
  *zoom: 1;
}
/* line 504, ../../sass/components/form/_form-base.scss */
.form .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}
/* line 508, ../../sass/components/form/_form-base.scss */
.form .control-group:before, .form .control-group:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 514, ../../sass/components/form/_form-base.scss */
.form .control-group:after {
  clear: both;
}
/* line 520, ../../sass/components/form/_form-base.scss */
.form legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}
/* line 525, ../../sass/components/form/_form-base.scss */
.form .radio input[type="radio"] {
  width: 20px;
  float: none;
  vertical-align: baseline;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 533, ../../sass/components/form/_form-base.scss */
.form .radio .radio-label-text {
  line-height: 13px;
  vertical-align: baseline;
}
/* line 541, ../../sass/components/form/_form-base.scss */
.form .button-arrow-left button,
.form .button-arrow-right button {
  position: relative;
  box-shadow: none;
  height: 28px;
  overflow: visible;
}
/* line 549, ../../sass/components/form/_form-base.scss */
.form .button-arrow-left button {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 20px;
}
/* line 556, ../../sass/components/form/_form-base.scss */
.form .button-arrow-right button {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 20px;
}
/* line 563, ../../sass/components/form/_form-base.scss */
.form .button-arrow-left button:after,
.form .button-arrow-right button:after {
  content: ' ';
  width: 19px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: 3px;
  background-color: #e1e1e1;
  border: 2px solid #656363;
  box-shadow: none;
}
/* line 576, ../../sass/components/form/_form-base.scss */
.form .button-arrow-left button:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  left: -10px;
  border-width: 0px 1px 1px 0px;
  border-bottom-right-radius: 5px;
}
/* line 587, ../../sass/components/form/_form-base.scss */
.form .button-arrow-right button:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -10px;
  border-width: 1px 1px 0px 0px;
  border-top-right-radius: 5px;
}
/* line 598, ../../sass/components/form/_form-base.scss */
.form .button-arrow-left button:hover:after,
.form .button-arrow-right button:hover:after {
  background-color: #939191;
}

/* line 606, ../../sass/components/form/_form-base.scss */
.form > .component-content,
.form-element > .component-content {
  overflow: hidden;
}

/* FORM HORIZONTAL STYLES
   ------------------------------------*/
/* line 616, ../../sass/components/form/_form-base.scss */
.form-horizontal .radio {
  display: inline-block;
  margin-right: 10px;
}

/* IE STYLES
    ------------------------------------*/
/* line 630, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form fieldset {
  position: relative;
  margin: 10px;
}
/* line 635, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form fieldset legend {
  position: relative;
  top: -0.7em;
  left: 0.5em;
  margin-right: 20px;
}
/* line 642, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form fieldset legend span {
  display: block;
  width: 100%;
}
/* line 647, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form .input-focus-border-fix {
  border-color: #52A8EC;
}
/* line 651, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form .button {
  border: 1px solid #656363;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}
/* line 658, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form .button-arrow-left button:after,
.lt-ie9 .form .button-arrow-right button:after {
  position: static;
  border: none;
  display: inline;
}
/* line 665, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form .button-arrow-left button:before {
  content: "<<";
  padding-right: 5px;
}
/* line 670, ../../sass/components/form/_form-base.scss */
.lt-ie9 .form .button-arrow-right button:after {
  content: ">>";
  padding-left: 5px;
}

/* line 682, ../../sass/components/form/_form-base.scss */
.lt-ie8 .form fieldset legend {
  top: -0.5em;
}
/* line 686, ../../sass/components/form/_form-base.scss */
.lt-ie8 .form .button {
  display: inline;
}
/* line 690, ../../sass/components/form/_form-base.scss */
.lt-ie8 .form .button-arrow-left button,
.lt-ie8 .form .button-arrow-right button {
  position: static;
}

	.newsletter-box .subscription-box .bottom-paragraph-text .white-text .orange-paragraph-text{ 
		color: #666666; /*Pooja 22-09-2016*/
	}
/* MEDIA QUERIES
    ------------------------------------*/
@media only screen and (max-width: 767px) {
  /* line 705, ../../sass/components/form/_form-base.scss */
  .form .radio input[type="radio"] {
    height: 14px;
  }
  /* line 709, ../../sass/components/form/_form-base.scss */
  .form .control-group {
    margin-bottom: 10px;
  }
  /* line 713, ../../sass/components/form/_form-base.scss */
  .form .checkboxField .control-label {
    float: left;
  }
  /* line 717, ../../sass/components/form/_form-base.scss */
  .form .control-label {
    float: none;
    width: 160px;
    padding-top: 5px;
    text-align: left;
  }
  /* line 724, ../../sass/components/form/_form-base.scss */
  .form .controls {
    margin-left: 0;
  }
  /* line 728, ../../sass/components/form/_form-base.scss */
  .form .help-block {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 239px) {
  /* line 739, ../../sass/components/form/_form-base.scss */
  .form input,
  .form textarea,
  .form .uneditable-input {
    width: 200px;
  }
  /* line 745, ../../sass/components/form/_form-base.scss */
  .form select {
    width: 200px;
  }
}
/* NO JS STYLES
    ------------------------------------*/
/* line 758, ../../sass/components/form/_form-base.scss */
.no-js .clearButton {
  display: none;
}
/*----------Zovirax contact us  Page CSS start-----------*/
.contact-us-box,
.newsletter-box {
	background: rgba(248,248,248,1);
	background: -moz-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(248,248,248,1) 42%, rgba(254,254,254,1) 50%, rgba(254,254,254,1) 72%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(248,248,248,1)), color-stop(42%, rgba(248,248,248,1)), color-stop(50%, rgba(254,254,254,1)), color-stop(72%, rgba(254,254,254,1)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(248,248,248,1) 42%, rgba(254,254,254,1) 50%, rgba(254,254,254,1) 72%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(248,248,248,1) 42%, rgba(254,254,254,1) 50%, rgba(254,254,254,1) 72%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(248,248,248,1) 0%, rgba(248,248,248,1) 42%, rgba(254,254,254,1) 50%, rgba(254,254,254,1) 72%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(248,248,248,1) 0%, rgba(248,248,248,1) 42%, rgba(254,254,254,1) 50%, rgba(254,254,254,1) 72%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#ffffff', GradientType=0 );
}

.newsletter-box .header-paragraph-text{ /*Pooja 15-09-2016*/
	padding: 4em 8.2% 9.3em;
}

.contact-us-box .header-paragraph-text{ /*Added pooja 22-07-2016 */
	padding: 4em 8.2% 4.3em;
}

.contact-us-box .header-paragraph-text h1,
.newsletter-box .header-paragraph-text h1{
	font-size: 3em;
	margin-bottom: 0.15em;/*pooja 21-09-2016 */
}
.contact-us-box .header-paragraph-text h1{ /*Modified pooja 18-05-2016 UT*/
	padding-bottom: 0.1em;
}

.wsform .wsform-item { /*Added pooja 18-05-2016 UT*/
    margin-bottom: 2em !important;
}
.contact-us-box .header-paragraph-text p,
.newsletter-box .header-paragraph-text p{
	font-size: 1.125em;
	width: 100%;
	margin:0;
	color:#333333;
	font-family: "Proxima Nova W08 Reg";
}

.contact-us-box .header-paragraph-text p{ /*Added pooja 22-07-2016 */
	width: 67%;
    line-height: 1.2em;
	padding-left:0.5%;
	margin:0;
}

.contact-us-box .header-paragraph-text p .subhead{ /*Added Pooja 22-07-2016*/
	padding-bottom: 1.1em;
    display: block;
}

.contact-us-box > .component-content,
.newsletter-box > .component-content{
	padding: 0 3.33%;
}
.contact-us-form-box, 
.subscription-box {
	background-color : #fff;
}
.contact-us-form-box .wsform .component-content,
.newsletter-box .wsform .component-content {
	background-color: #fff;
	padding: 0;
	margin:0;
}
.newsletter-form .wsform .component-content {
    background-color: #fff!important;
}
.contact-us-form-box .top-form-text p{ /*Added pooja 18-05-2016 UT*/
	font-size:1.125em;
}
.contact-us-form-box .form input[type="text"]
{ /*Modified Pooja 22-07-2016*/
	border: 2px solid #c8c8c8;
    color: #006999;
    font-family: "Proxima Nova W08 Reg";
    font-size : 1.125em;
    width: 90%; /*Pooja 15-09-2016*/
    padding: 0.35em 4% 0.35em 4.5%;  /*Pooja 15-09-2016*/
}

.contact-us-box .contact-us-form.grid_8{ /*Added Pooja 22-07-2016*/
width: 65.5%;
}

.newsletter-form .form input[type="text"] /*added sonal 19/5/16*/
{
	border: 2px solid #c8c8c8;
    color: #333333;
    font-family: "Proxima Nova W08 Reg";
    font-size : 1.125em;
    width: 83.5%; /*Modified Pooja 22-07-2016*/
	padding: 0.3em 7.2%; /*Added Pooja 22-07-2016*/
}
.contact-us-form-box .form textarea{/*sonal added 12/5/2016*/
  border: 2px solid #c8c8c8;
  color: #006999;
  font-family: "Proxima Nova W08 Reg";
  font-size: 1.125em;
  width: 100%; /*Pooja 15-09-2016*/
  height: 10.7em;
  border-radius: 5px;
  resize:none;
  padding: 0.9em 0 8.4em 1em;  /*Pooja 15-09-2016*/
}
.contact-us-form-box .form textarea:focus{ /*Pooja 27-09-2016*/
	color: #006999; 
	border: 2px solid #c8c8c8;
	box-shadow:none;
}
.form-divider
{
	  border-top: 1px solid #CCCDD0;
	  width: 955px;
}
.contact-us-form-box .wsform .wsform-label,
.newsletter-form .wsform-item .wsform-label  {
	font-size : 1.125em;
	font-weight : normal;
	pointer-events: none; /*modified sonal 12/5/2016*/
	color: #333333;
    font-family: "Proxima Nova W08 Reg";
}


.newsletter-box .wsform >.component-content {
	padding: 3.4em 13% 0; /*pooja 21-09-2016 */
}

.contact-us-form-box .wsform > .component-content {
	padding: 2.8em 13% 0; /*Added Pooja 22-07-2016*/
}
.contact-us-box .bottom-paragraph-text .component-content {
	padding : 0!important;
}
.contact-us-form h2,
.newsletter-form  h2{
	display : none;
}

.subscription-box .paragraph-text {
	padding-top : 0.7em;
	padding-right : 3%;/*Modified Pooja 22-07-2016*/
	margin : 0 !important;
}

.contact-us-box .paragraph-text.info-text{ /*Pooja 17-09-2016*/
	padding-top : 2.7em;
	padding-right : 3%;/*Modified Pooja 22-07-2016*/
	margin : 0 !important;
}

.contact-us-box .paragraph-text h2 { /*Pooja 15-09-2016*/
	font-size : 2em;
	font-family: "Proxima Nova W08 Reg"; 
	color:#333333;
}
.contact-us-form .A_MSG  input[type="text"] {
	height : 186px;
	font-size: 1.125em;
}
.contact-us-form{
	width: 65.9%;
}
.contact-us-form-box .paragraph-text p,
.subscription-box .paragraph-text p{ /*Modified Pooja 22-07-2016*/
	font-size : 1.125em;
	font-family: "Proxima Nova W08 Reg";
	margin:0;
	color:#333333;
}
.contact-us-form-box .paragraph-text p .attention-txt { /*Pooja 21-09-2016*/
	padding-bottom:2.7em;
	display: block;
}
.contact-us-form  .bottom-paragraph-text { /*Pooja 15-09-2016*/
	font-size : 1.125em;
    font-family: "Proxima Nova W08 Reg";
    line-height: 1.2em;
    display: block;
    color: #333333; 
    padding-top: 2.3em
}
.contact-us-form  .bottom-paragraph-text p{ margin:0;}  /*Pooja 15-09-2016*/
.contact-us-form  .bottom-paragraph-text .orange-paragraph-text { color:#333333;} /*Pooja 29-09-2016*/

.contact-us-form  .bottom-paragraph-text a {
	text-decoration: none;
}
.newsletter-form .bottom-paragraph-text a {/*added sonal 19/5/16*/
	text-decoration: none;
}
.wsform .custom-select1 {
    border: 2px solid #c8c8c8;
    color: #006999;
    font-family: "Proxima Nova W08 Reg";
    font-size: 1.125em;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    outline: 0;
    line-height: 1em;
    background: url(../../img/select-arrow.gif) 100% 50% no-repeat;
    width: 72%; /*modified pooja 22-07-2016*/
    height: 2.8em; /*modified pooja 22-07-2016*/
	padding: 0em 1.3em; /*Added pooja 22-07-2016*/
}
.wsform select:focus,.wsform input[type="text"],.wsform nput[type="textarea"] {
    border-color: #c8c8c8 !important;
	color: #006999!important;
	box-shadow: none!important;
}
.contact-us-form-box .contact-us-form form .wsform-item .wsform-controls input[type="text"]/* added sonal 13/5/16 */
{
	margin-bottom:0px;
	color: #333333;/*modified sonal 19/5/16*/
}

.contact-us-form-box .contact-us-form form .wsform-item .wsform-controls input[type="textarea"]/* added sonal 19/5/16 */
{
	color: #333333;
}
.contact-us-form-box .contact-us-form .wsform-controls .custom-select1, input[type="text"]/*added sonal 19/5/16*/
{
		color: #333333;
}
.title-dropdown-text{
	display : none;
}
.contact-us-form .A_PRVACY_POLCY,
.newsletter-form .A_PRVACY_POLCY{  /* Nilima 06-oct SIT */
	position: relative;
	padding-top: 0.5em; /*pooja 27-09-2016*/
}
.newsletter-form .A_PRVACY_POLCY {  /* Nilima 06-oct SIT */
	margin-bottom: 5em !important;
}
.newsletter-form .A_INSCID{
display: none;
}
.newsletter-form .bottom-paragraph-text p{
	font-size : 1.125em;
}
.contact-us-form .A_PRVACY_POLCY .wsform-label,
.newsletter-form .A_PRVACY_POLCY .wsform-label { /* Nilima 06-oct SIT */
    position: absolute;
	left: 2.3em;
    bottom: -2.2em;
}
.contact-us-form .A_PRVACY_POLCY .wsform-controls,  /* Nilima 06-oct SIT */
.newsletter-form .A_PRVACY_POLCY .wsform-controls {
    margin-left: 0!important;
    float: none!important;
    position: absolute;
    bottom: -36px;
    left: 0px;
    height: 25px !important;
    width: 100%;/*Sujeet 28-Sep*/
    vertical-align: middle;
}


.subscription-box .top-form-text {
    padding: 3.2em 8.5% 0; 
}

.contact-us-form-box .top-form-text {
    padding: 3em 8.5% 0;
}

.newsletter-box .subscription-box .bottom-paragraph-text { 
	padding: 4.8em 8.6% 0em; /*pooja 17-09-2016*/
}
.newsletter-box .subscription-box .bottom-paragraph-text p {margin:0;}

.newsletter-box .subscription-box .bottom-paragraph-text .white-text{
    font-size: 0.875em;
    font-family: "Proxima Nova W08 Reg";
	line-height: 1.2em;
    display: block;
    color: #666666;
}
.newsletter-box .subscription-box .bottom-paragraph-text .white-text a{
	text-decoration:none;
}
.contact-us-form-box .top-form-text p,
.subscription-box .top-form-text p { 
	font-size: 1.125em;
	color: #333333;
	margin:0;
    font-family: "Proxima Nova W08 Reg";
}
.contact-us-form .A_PRVACY_POLCY .wsform-controls input,
.newsletter-form .A_PRVACY_POLCY .wsform-controls input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity:0; /*Pooja 17-09-2016*/
}
.newsletter-form .ccparsys_item_2 > div.richText span.orange-paragraph-text > a{
	text-decoration:none;
}
.policy-label {   /*Pooja 21-09-2016*/
    border: 2px solid #E2E2E2 !important;
    box-shadow: none;
    border-radius: 0px;
    height: 23px !important;
    width: 23px;
    vertical-align: middle;
	position: absolute;
	bottom: -6px;
    left: 0px;
}
.ticked {
    background: url("../../img/checked.jpg") no-repeat ; /*Pooja 1-10-2016*/
    border: 1px solid #E2E2E2 !important;
	background-size:1.8em;
}
.wsform .controls{
	margin-left : 0!important;
}
.wsform button ,.wsform button:hover  { 
	background-color: #006999;
	color: white;
	font-size: 1.125em!important;
	border-radius : 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius : 4px;
	padding: 0.8em 12%;
	font-family: "Proxima Nova bold" !important;
	border:none;
}
.subscription-box  .wsform button ,.subscription-box .wsform button:hover {
	padding: 0.8em 9.5%;
}

.contact-us-form .control-group { /*Modified pooja 18-05-2016 UT*/
	margin-top: 3.5em;
	margin-bottom:5em;
}
.newsletter-form .control-group { /*Modified pooja 18-05-2016 UT*/
	margin-top: 2.7em;
}
.contact-us-form-box .validation-text p{
	margin: 0;
    padding: 2em 0 0 8.6%;
    font-size: 1.125em;
}
/*Pooja 17-09-2016 start*/
::-webkit-input-placeholder { /* Chrome, Safari, Opera */
    color: #333333;
}

::-moz-placeholder {  /* Firefox */
    color: #333333;
}

:-ms-input-placeholder { /* IE10 and 11 */
    color: #333333 !important;
}

::-ms-input-placeholder { /* Edge */
    color: #333333;
}

::placeholder { 
    color: #333333;
}
/*Pooja 17-09-2016 end*/


.newsletter-box .validation-text p{ /*Pooja 30-09-2016*/
		font-size: 1em;
		color: #c6080e;
		padding: 1em 8.5% 0;
	}
	
/*----------Zovirax contact us  Page CSS Ends-----------*/
@media screen and (max-width: 1024px) and (min-width: 768px){
.contact-us-box > .component-content, .newsletter-box > .component-content {
    padding: 0 2.5%;
}
.contact-us-box .header-paragraph-text,
.newsletter-box .header-paragraph-text {
    padding: 2.3em 8.2% 4.8em;
}
.contact-us-box .header-paragraph-text h1 {
    font-size: 2em;
	padding-bottom: 0.6em;
}
.contact-us-box .header-paragraph-text p {
    font-size: 0.75em;
}
.contact-us-box .header-paragraph-text {
    padding: 2.3em 8.33% 2.1em;
}
.contact-us-form-box .top-form-text {
    padding: 2em 8.5% 0;
}

.contact-us-form-box .top-form-text p {
	font-size: 0.75em;
	font-weight:bold;
}
.contact-us-form-box .wsform .wsform-label {
    font-size: 0.75em;
	font-weight: bold;
    width: 25%;
	padding-top: 1em; /*Pooja 24-09-2016*/
}
.contact-us-form-box .form input[type="text"]{
	border: 1px solid #c8c8c8;
    width: 92.5%; /*Pooja 22-09-2016*/
    padding: 0em 0% 0 6%;
    margin: 0;
    font-size: 0.75em;
}
.contact-us-form-box .paragraph-text p{
	font-size : 0.75em;
}
.contact-us-form-box .wsform > .component-content {
    padding: 1.1em 13% 0;
}

.contact-us-form-box .paragraph-text {
	padding:0.9em 6.5% 0 2%;
}

.contact-us-box .contact-us-form .paragraph-text 
{
	padding: 0.5em 0% 0 35%;
}
.contact-us-form-box .wsform .wsform-item {
    margin-bottom: 1.25em !important;
}
.contact-us-box .paragraph-text h2 { 
    font-size: 1.3125em;
	text-decoration:none; /*Pooja 22-09-2016*/
}
.contact-us-form  .bottom-paragraph-text {
	font-size : 0.75em;
	padding-left: 35%;
	padding-top: 2.3em;
}


.contact-us-form-box .A_PRVACY_POLCY{
	margin-left: 34%;
	padding-top: 1.1em;
}
.contact-us-form .control-group {
    margin-top: 1.6em;
    margin-bottom: 2.5em;
}

.contact-us-form-box .form textarea{ /*Pooja 22-09-2016*/
	font-size: 0.75em;
	border: 1px solid #c8c8c8;
	width: 100%;
	margin:0;
	height: 12.5em;
	border: 1px solid #c8c8c8;
}


.contact-us-box .contact-us-form.grid_8{ /*Added Pooja 22-09-2016*/
	width: 67%;
}


.policy-label {
	border: 1px solid #E2E2E2 !important;
	height: 0.8em !important;
    width: 13px;/*Pooja 1-10-2016*/
	bottom: 0.8em; /*Pooja 22-09-2016*/
    left: 4px;
}
.contact-us-form-box .validation-text p,
.wsform .wsform-hint, .wsform .mandatory-marker{
	font-size:0.75em;
}
.newsletter-box .wsform >.component-content {
    padding: 1.1em 13% 0;
}

.newsletter-box .wsform .wsform-item {
    margin-bottom: 1.25em !important;
}
.newsletter-box .wsform .custom-select1{
	border: 1px solid #c8c8c8;
	width: 80%;
    height: 3.1em;
	padding: 0em 0% 0 5%;
	font-size: 0.75em;
	background: url(../../img/select-arrow.gif) 100% -6px no-repeat!important;
}
.newsletter-form .form input[type="text"] {
    border: 1px solid #c8c8c8;
    width: 95%;
    padding: 0em 0% 0 6%;
	margin:0;
	font-size: 0.75em;
}
.wsform button,
 .wsform button:hover{
	font-size: 0.938em !important;
	padding: 0.6em 18%;
}
.subscription-box  .wsform button, .subscription-box .wsform button:hover{
	padding: 0.6em 13%;
}
.newsletter-form .control-group {
    margin-top: 1em;
}
.newsletter-box .subscription-box .bottom-paragraph-text { /*Pooja 23-09-2016*/
    padding: 1.8em 11% 3.5em 25.5%;
}
.newsletter-box .subscription-box .bottom-paragraph-text .white-text {
    font-size: 0.563em;
}
.newsletter-form .wsform-item .wsform-label { /*pooja 17-09-2016*/
    font-size: 0.75em;
	width: 25%;
}
.wsform .wsform-controls, .wsform .controls {
    margin-left: 35% !important;
}
.newsletter-box .header-paragraph-text h1
{
	font-size: 2em;
	margin-bottom: 0.7em;
}
.newsletter-box .header-paragraph-text p
{
	font-size: 0.75em;
	width: 65%;
    display: block;
}	
.subscription-box .top-form-text {
    padding: 1.9em 8.4% 0;
}
.subscription-box .paragraph-text p{
	font-size: 0.75em;
}

.newsletter-form .bottom-paragraph-text p {
    font-size: 0.75em;
}
.form-divider {
	width: 604px !important;
}
.subscription-box .top-form-text p { /*pooja 17-09-2016*/
    font-size: 0.75em;
}

.newsletter-box .validation-text p{ /*Pooja 30-09-2016*/
		font-size: 0.75em;
		padding: 1em 8% 0;
	}
	
	.ticked { /*Pooja 1-10-2016*/
		background-size:0.9em;
	}

}


/* MEDIA QUERIES
    ------------------------------------*/
@media only screen and (max-width: 767px) {
  /* line 705, ../../sass/components/form/_form-base.scss */
  .form .radio input[type="radio"] {
    height: 14px;
  }
  /* line 709, ../../sass/components/form/_form-base.scss */
  .form .control-group {
    margin-bottom: 10px;
  }
  /* line 713, ../../sass/components/form/_form-base.scss */
  .form .checkboxField .control-label {
    float: left;
  }
  /* line 717, ../../sass/components/form/_form-base.scss */
  .form .control-label {
    float: none;
    width: 160px;
    padding-top: 5px;
    text-align: left;
  }
  /* line 724, ../../sass/components/form/_form-base.scss */
  .form .controls {
    margin-left: 0;
  }
  /* line 728, ../../sass/components/form/_form-base.scss */
  .form .help-block {
    margin-bottom: 10px;
  }
  .policy-label {
    border: 1px solid #E2E2E2 !important;
    box-shadow: none;
    border-radius: 0px;
    height: 18px !important;
    width: 18px;
	}
	.contact-us-form .A_PRVACY_POLCY .wsform-controls,
	.newsletter-form .A_PRVACY_POLCY .wsform-controls{
		bottom:-18px;
	}
	.newsletter-form .richText p {
		font-size: 0.75em;
		text-decoration: none;
	}
	.wsform button, .wsform button:hover{
		font-size: 0.938em!important;
		padding: 0.9em 0%;
		border-radius: 2px;
		width:100%;
	}
	.contact-us-form .A_PRVACY_POLCY {
		padding-top: 0; /*Pooja 20-09-2016*/
	}
	.wsform .wsform-hint, .wsform .mandatory-marker {
		color: #c6080e;
		FONT-SIZE: 0.75EM;
	}
	
	.newsletter-box .validation-text p{ /*Pooja 30-09-2016*/
		font-size: 0.75em;
		padding: 1em 10.5% 0;
	}
	 .wsform .custom-select1 {
        width: 79%!important;
		border: 1px solid #C8C8C7;
		height: 3em;
		font-size: 0.75em;
		padding: 0em 4%; /*Pooja 23-09-2016*/
		background: url(../../img/select-arrow.gif) 100% 50% no-repeat;
		background-size: 18%;
    }
	
	.newsletter-box .wsform .custom-select1 option{ padding-left:6%;}/*Pooja 23-09-2016*/
	.newsletter-box .subscription-box .bottom-paragraph-text {
		padding: 0em 11% 0em; /*Pooja 17-09-2016*/
	}
	.newsletter-box .subscription-box .bottom-paragraph-text .white-text {
		font-size: 0.75em;
	}
	
	.newsletter-form .control-group {
		margin-top: 2.5em;
	}
	.validation-text p{
		padding: 2.2em 10.6% 0;
		font-size:0.75em;
	}
	.subscription-box .wsform button, .subscription-box .wsform button:hover {
		padding: 0.6em 0%;
	}
	.ticked {
		background: transparent url("../../img/checked.jpg") no-repeat scroll 0px 0px / 18px auto;
	}
	
	.contact-us-form-box .validation-text p{ /*Pooja 20-09-2016*/
		font-size:0.75em;
		padding: 2em 7% 0 10%;
	} 
	
	.newsletter-box {background: rgba(245,245,245,1);} /*Pooja 22-09-2016*/
	
	.ticked { /*Pooja 1-10-2016*/
		background-size:1.5em;
	}
}
@media only screen and (max-device-width: 767px)and (orientation:landscape) {
	.wsform .custom-select1{
		background: url(../../img/select-arrow.gif) 100% 50% no-repeat;
		background-size: 10%;
	}
	.parametrizedhtml .product-list-drop,
	.buy-online-box .location-main-box .locationFinder .locationFinder-selectOption{
		background-size:10%!important;
	}
}
@media only screen and (max-width: 239px) {
  /* line 739, ../../sass/components/form/_form-base.scss */
  .form input,
  .form textarea,
  .form .uneditable-input {
    width: 200px;
  }
  /* line 745, ../../sass/components/form/_form-base.scss */
  .form select {
    width: 200px;
  }
}
@media screen and (max-width: 601px) and (min-width: 601px)  { 
.wsform .custom-select1{background-size: auto;}
}
.hospitalSearch .hospitalSearch-province ul li, .hospitalSearch-city ul li{list-style-type: none;display:inline-block;}
.hospitalSearch .hospitalSearch-province ul li button, .hospitalSearch-city ul li button, .hospitalSearch button.hospitalSearch-submit{
    background-color: #f36633; 
    border: 1px solid #d5d1ce;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    padding: 5px 20px;
}
.hospitalSearch-city ul li button{display: none;}
.hospitalSearch .hospitalSearch-province ul li button.active, .hospitalSearch-city ul li button.active{
     background-color: #115A64; 
}
.hospitalSearch .hospitalSearch-type label{margin-right: 20px;vertical-align: middle;}
.hospitalSearch .hospitalSearch-result-list ul li{list-style-type: none;display:inline-block;margin-right:20px;vertical-align: top;}
.hospitalSearch .hospitalSearch-result-list ul li p{margin:2px 0;}
.hospitalSearch .hospitalSearch-result-list ul li p a{font-weight: 700;}
.hospitalSearch .hospitalSearch-pagination {
    cursor: default;
    margin-bottom: 10px;
    margin-top: 10px;
    overflow: hidden;
    padding: 0;
    text-align: center;
}
.hospitalSearch .hospitalSearch-result-list{ 
    margin-top: 10px;
}
.hospitalSearch .hospitalSearch-pagination-item {
    cursor: default;
    display: inline-block;
    margin: 1px;
    border:solid 1px #e0e0e0;
    padding:5px 10px;
}
.hospitalSearch .hospitalSearch-results .hospitalSearch-input{
    padding:4px 5px;
    width:200px;
}
.hospitalSearch .hospitalSearch-province, .hospitalSearch .hospitalSearch-city, .hospitalSearch .hospitalSearch-results{display:none;}
/*.hospitalSearch .hospitalSearch-result-list{display: none;}
.hospitalSearch .hospitalSearch-list-active{background:#F36633;}
.hospitalSearch .hospitalSearch-list-active a{color:#fff;}
.hospitalSearch .no-item{background:#e0e0e0;}*//* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/html/_html-base.scss */
.html .hints a {
  float: left;
  margin-right: 5px;
}
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/image/_image-base.scss */
#content .duopage-banner-image1.desk-img {  display:block;}
#content .duopage-banner-image1.mob-img {display:none;}
.image .right {
    text-align: right;
}
/* line 7, ../../sass/components/image/_image-base.scss */

.image .left {
    text-align: left;
}
/* line 11, ../../sass/components/image/_image-base.scss */

.image .middle {
    text-align: center;
}
.footer-followus-box .Twitter-logo.component {
    width: 13%;
    margin-left: 0%;
}
.footer-followus-box .facebook-logo.component {
    width: 9%;
}
.product-box > .component-content > div > .product-image {
    padding-top: 56px;
}
.fighting-back-article-box .fighting-back-article-image1 {
    padding-left: 10.4%;
    padding-bottom: 2.8em;
}
.fighting-back-article-box .fighting-back-article-image2 {
    padding-left: 10.4%;
    padding-top: 3.8em;
}
.fighting-back-main-box .fighting-back-sub-image1 {
    line-height: 0px;
}
.footer-logo-box .gsk-logo {
    margin-top: 1.25em; /* amar 16 sept */
}
.doctor-mobile-image ,
.zovirax-duo-main-box .duo-mobile-image ,
.zovirax-cream-main-box .duo-mobile-image,
.zovirax-defence-main-box  .product-lower-sub-box-mob,
.zovirax-defence-faq-main-box  .product-lower-sub-box-mob
 {
    display: none;
}

.fight-back-mob-banner,
.fight-back-mob-carousel,
.mob-footer-box{/*Prashant-Added-06-09-16*/
	display: none;
}

@-moz-document url-prefix() { 
 .image .left {
    line-height: 0;
}
}
@media screen and (min-width: 1025px){
	.how-to-use-conceal-main-box .how-to-use-content-box .conceal-carousel-box .conceal-carousel-img img{
		min-height:32.500em;
	}
}
/* G2 08-04-2016 modify below css*/

#footer .gsk-mobile-logo {
    display: none;
}
.buy-online-box  .product-logo-right-box .product4-image{
	margin-left:30%;
}
.zovirax-duo-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box2 .product-mob-img2	 { /* amar-24-sept */
display:none;
}

/*****************TABLET CSS STARTS *******************/
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .product-box > .component-content > div > .product-image {
		padding-top: 3.2em;
		margin-left: 1.3em;
    }
    .product-box > .component-content > div > .product-image.component {
        width: 22%;
    }
    .duopage-banner-box1 > .component-content > div > .duopage-banner-image1,
    .duopage-banner-box2 > .component-content > div > .duopage-banner-image2 { /*Modified Pooja 26-07-2016*/
        width: 40%
    }
	.zovirax-cream-main-box .duopage-banner-box1 > .component-content > div > .duopage-banner-image1{
		width:34%; /*Pooja 21-09-2016*/
	}
	
	.zovirax-defence-main-box .duopage-banner-box1 > .component-content > div > .duopage-banner-image1 {  /*Added Pooja 27-07-2016*/
		padding-top: 5.7em;
		width:22.5%;
	}
    .footer-followus-box .facebook-logo.component {
        margin-left: 8%
    }
    .footer-followus-box .youtube-logo.component {
       margin-left: 8%
    }
	    .footer-followus-box .facebook-logo.component {
        margin-left: 13%
    }
    .footer-followus-box .youtube-logo.component {
        margin-left: 11%
    }
    .footer-logo-box .gsk-logo { /* amar 17 sept */
        margin-top: 0.6em;
		width: 2.5em; /*Pooja 28-09-2016*/
    }
}
/*****************TABLEL CSS END *******************/
/*****************MOBILE CSS STARTS ****************/
@media only screen and (max-width: 767px) {
	.zovirax-duo-main-box .where-to-buy-img ,
	.zovirax-cream-main-box .where-to-buy-img,
	.zovirax-conceal-main-box  .where-to-buy-img{
		display:none;
	}
	#content .duopage-banner-image1.desk-img { display:none;}
	#content .duopage-banner-image1.mob-img {     
		display: block;
		width: 37%;
		float: left;
	}
	.product-box  img {
	 padding:0;
	 margin:0 auto; 
	 float:none;
	 display:block;
	 clear:both;
	 width:90%;
	}
	.product-box.item-box-1  { 
		border-bottom:1px solid #ebebeb; 
		margin-bottom: 2em;
			
	}
	.product-box.item-box-1 img {
	    margin-bottom: 0.5em;
		margin-left: 22%;
		width:36%;
	}
	.product-box.item-box-2 img {
		margin-bottom: 0.5em;
		margin-left: 0%;
		width: 73%;
	}
	
	.product-type-box.pro-box-3 .product-box img { 
		margin-bottom: 1.1em;
		margin-left: 7%;
		width:53%;
	}
	
 #wrapper #footer .footer-logo-box .gsk-mobile-logo {
	width: 132px;
    display: block;
	margin:0 auto !important;
	float:none;
	clear:none;
	padding-top: 17%;
} 
    .image .component-content {
        text-align: center;
    }
    #header .mobile-nav-box .zovirax-logo {
        width: 25%;
        top: 0.6em;
    }
	/* G2 remove below Class*/
  /*   .image.section.youtube-logo.grid_1.component.even.last {
        width: 20%;
        display: inline-block;
    } */
   /*  .image.section.facebook-logo.grid_1.component.odd {
        display: inline-block;
    } */
	
    /* .image.section.Twitter-logo.grid_1.component.even {
        display: inline-block;
        width: 25%;
    } */
    /* .richText.section.follow-us-text.component.first.odd {
        display: inline-block;
        width: 24%;
    } */
    .gsk-mobile-logo {
        display: block;
    }
	.footer-logo-text  {
	
	}
	.zovirax-duo-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image1 img,
	.zovirax-duo-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image2 img,
	.zovirax-cream-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image1 img, 
	.zovirax-cream-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image2 img,
	.zovirax-conceal-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image1 img, 
	.zovirax-conceal-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box-image2 img 	
	{
		width:100%
	}
	
	.zovirax-defence-main-box .duopage-banner-image1 img{
		max-width: 50%;
		float: right;
		margin-top: 6em;
		margin-right: 13%;
	}
	.zovirax-defence-main-box  .product-lower-sub-box-image1,
	.zovirax-defence-faq-main-box  .product-lower-sub-box-image1
	{
		display:none;
	}
	.zovirax-defence-main-box  .product-lower-sub-box-mob,
	.zovirax-defence-faq-main-box  .product-lower-sub-box-mob
	 {
		display: block;
	}
	
	.fighting-back-banner-image,
	.cta-main-box{/*Prashant-Added-06-09-16*/
		display:none;
	}
	
	.fight-back-mob-banner,
	.fight-back-mob-carousel,
	.mob-footer-box{/*Prashant-Added-06-09-16*/
		display: block;
	}
	
	.zovirax-duo-main-box .duo-mobile-image{ /*Pooja 20-09-2016*/
		width: 32%!important;    
		float: right !important;
		position: absolute;  /* NR 29-sept SIT */
		top: 1em;
		right: 0;
	}
.zovirax-duo-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box2 .product-mob-img2	 {/*amar 24*/
display:block;
}	
	
.zovirax-duo-main-box .product-lower-sub-boxes-main-box .product-lower-sub-box2 .product-lower-sub-box-image2{ /*amar 24*/
display:none;
}	
	.how-to-use-conceal-main-box .conceal-carousel-img  img{ min-height: 6em; float:left;} /*Pooja 24-09-2016*/

}
/*****************MOBILE CSS END ****************//* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery {
  border: solid 2px #323131;
  padding: 13px;
  background-color: #e1e1e1;
}

/* line 9, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-heading {
  display: block;
  color: #323131;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}

/* line 13, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view {
  border: solid 2px #323131;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: white;
}

/* line 22, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view img {
  max-height: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* line 29, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-description {
  margin: 10px 0;
}

/* line 33, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnails {
  position: relative;
  margin: 20px 0;
}

/* line 38, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-list {
  overflow: hidden;
  margin: 0 50px;
  position: relative;
}

/* line 44, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow,
.imageGallery-arrow.is-disabled:hover {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  cursor: pointer;
  width: 35px;
  height: 60px;
  font: 0/0 serif;
  color: transparent;
}
/* line 56, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow:before,
.imageGallery-arrow.is-disabled:hover:before {
  position: absolute;
  top: 50%;
  color: #AAA;
}

/* line 63, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow:hover:before {
  color: #888;
}

/* line 67, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-description {
  margin: 15px 0;
}

/* line 71, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow.is-disabled {
  opacity: 0.5;
}

/* line 75, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow {
  text-align: center;
}

/* line 79, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow-left,
.imageGallery-arrow-left.is-disabled:hover {
  left: 0;
}
/* line 82, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow-left:before,
.imageGallery-arrow-left.is-disabled:hover:before {
  content: "\f053";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
}

/* line 88, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow-right,
.imageGallery-arrow-right.is-disabled:hover {
  right: 0;
}
/* line 91, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-arrow-right:before,
.imageGallery-arrow-right.is-disabled:hover:before {
  content: "\f054";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
}

/* line 97, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-list-inner {
  overflow: hidden;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 4000px;
}

/* line 109, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 0 9px;
  cursor: pointer;
  text-align: center;
  position: relative;
  display: block;
  border: solid 4px #323131;
  opacity: .7;
  filter: alpha(opacity=70);
  -moz-transition: opacity .2s;
  -webkit-transition: opacity .2s;
  -o-transition: opacity .2s;
  -ms-transition: opacity .2s;
  transition: opacity .2s;
}

/* line 128, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail:hover,
.imageGallery-thumbnail.is-active {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 134, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-cover {
  display: block;
  max-width: none;
}

/* line 139, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-title {
  display: block;
  margin: 10px auto 0 auto;
  font-size: 11px;
  width: 71px;
}

/* line 146, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery .thumbnails-list li:hover .image,
.imageGallery .thumbnails-list li.active .image {
  border: solid 4px #323131;
  margin: 0;
}

/* line 152, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-image {
  margin: 2px;
  border: solid 2px #323131;
  position: relative;
}

/* line 158, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-overlay {
  opacity: 0.7;
  height: 28px;
  left: 50%;
  margin: -14px 0 0 -15px;
  position: absolute;
  top: 50%;
  width: 30px;
  cursor: pointer;
}
/* line 167, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-overlay:before {
  content: "\f04b";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-size: 15px;
  width: 100%;
  height: 100%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 3px solid #3e3e3e;
  text-indent: 7px;
  background: #fff;
  text-align: center;
  line-height: 24px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 186, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail.is-active .imageGallery-thumbnail-overlay {
  opacity: 0;
  -moz-transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
}

/* line 195, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail a {
  display: block;
}

/* line 199, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-thumbnail-image img {
  display: block;
  width: 63px;
  height: 52px;
  margin: 0 auto;
}

/* line 206, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view {
  cursor: pointer;
}

/* line 210, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view-overlay {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73px;
  height: 69px;
  margin: -34px 0 0 -36px;
  cursor: pointer;
  -moz-transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
}
/* line 224, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view-overlay:before {
  content: "\f04b";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  font-size: 30px;
  width: 100%;
  height: 100%;
  border: 3px solid #3e3e3e;
  text-indent: 5px;
  background: #fff;
  text-align: center;
  line-height: 65px;
}

/* line 241, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery.is-playing .imageGallery-view-overlay:before {
  content: "\f04c";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  position: relative;
  font-weight: normal;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-indent: 0px;
}

/* line 247, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery .gallery-play {
  color: #323131;
}

/* line 251, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view:hover .imageGallery-view-overlay {
  opacity: 0.7;
}

/* line 255, ../../sass/components/imageGallery/_imageGallery-base.scss */
.imageGallery-view .imageGallery-view-overlay:hover {
  opacity: 1;
  text-decoration: none;
}

/* line 261, ../../sass/components/imageGallery/_imageGallery-base.scss */
.mod-js .imageGallery-thumbnail {
  padding: 0;
}
/* line 265, ../../sass/components/imageGallery/_imageGallery-base.scss */
.mod-js .imageGallery-thumbnails {
  position: relative;
}

/*no js view*/
/* line 271, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-view {
  display: none;
}

/* line 275, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-list {
  margin: 0;
}

/* line 279, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-thumbnail img {
  width: auto;
  height: auto;
}

/* line 284, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-thumbnail {
  border: 0;
  opacity: 1;
  float: none;
  overflow: hidden;
}

/* line 291, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-thumbnail a:after {
  content: attr(data-description);
  display: block;
  padding: 10px 0 30px;
  text-align: left;
}

/* line 298, ../../sass/components/imageGallery/_imageGallery-base.scss */
.no-js .imageGallery-arrow {
  display: none;
}
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/search.box.scss */
.locationFinder .form .form-content .textField {
  display: inline;
  float: left;
  margin-right: 15px;
}

/* line 9, ../../sass/components/search.box.scss */
.locationFinder .form .form-content .formButton {
  display: inline;
  float: left;
}

/* line 14, ../../sass/components/search.box.scss */
.no-box.locationFinder .form .form-content .section {
  margin: 0 15px 0 0;
}

/* line 18, ../../sass/components/search.box.scss */
.no-box.locationFinder .form .form-content .formButton.section {
  margin: -1px 0 0;
}

/* line 22, ../../sass/components/search.box.scss */
.locationFinder input[type=text] {
font-family:arial;font-size:12px;border: 1px solid #D5D1CE;
display: inline;
float: left;
height: 12px;
padding:8px;
width: 252px;
}

/* line 26, ../../sass/components/search.box.scss */
.locationFinder-title {
  cursor: default;
}

/* line 31, ../../sass/components/search.box.scss */
.form-search.no-box,
.form-search.no-box .section {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 36, ../../sass/components/search.box.scss */
.lt-ie8 .locationFinder .button {
  margin-left: 4px;
}
.locationFinder .button {padding: 8px;
background-image: url(../../img/Search-icon.png);
background-repeat: no-repeat;
text-indent: -9999px;
border: none;
border-radius: 0px;
width: 30px;
height: 30px;
}
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/results.list.scss */
 

/* line 9, ../../sass/components/results.list.scss */
.locationFinder-heading {
  display: block;
  color: #635A54;
  font-size: 24px;
  font-weight:normal;
  padding-bottom: 10px;
  border-bottom:solid 4px #D5D1CE;
}

/* line 13, ../../sass/components/results.list.scss */
.locationFinder-date {
  margin-bottom: 10px;
  color: #868484;
}

/* line 18, ../../sass/components/results.list.scss */
.locationFinder-results {
  margin:10px 0 16px 0;
  overflow: hidden;
  border-bottom:solid 1px #D5D1CE;
  padding-bottom:16px;
}
.locationFinder-selectOption{
width: 50px; 
font-Size: 12px; 
color: #635A54;
padding:5px 1px 2px 1px;
Border:1px solid #D5D1CE;
height:30px;
margin-left:10px;
}

/* line 23, ../../sass/components/results.list.scss */
.locationFinder-description {
  float:left;
  max-width:800px;
}

/* line 27, ../../sass/components/results.list.scss */
.locationFinder-title {
  display: block;
  color: #323131;
  font-size: 20px;
  font-weight: normal;
}

/* line 31, ../../sass/components/results.list.scss */
.locationFinder-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 37, ../../sass/components/results.list.scss */
.locationFinder-thumbnail {
  max-width: 100px;
  float: left;
  margin-right: 15px;
}

/* line 43, ../../sass/components/results.list.scss */
.locationFinder-more {
  float: right;
}
/* line 45, ../../sass/components/results.list.scss */
.locationFinder-more:after {
 
  display: inline;
}

 
/* line 53, ../../sass/components/results.list.scss */
.no-generatedcontent .locationFinder-more-arrow {
  display: inline;
}

/* line 59, ../../sass/components/results.list.scss */
.locationFinder-results-wrapper {
  margin: 0;
  padding: 0;
}

/* line 65, ../../sass/components/results.list.scss */
.locationFinder-horizontal-2-columns .locationFinder-results,
.locationFinder-horizontal-3-columns .locationFinder-results {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
}

/* line 73, ../../sass/components/results.list.scss */
.locationFinder-horizontal-2-columns .locationFinder-results {
  padding: 0;
  margin: 0;
  margin-right: 1.2%;
  width: 48%;
}

/* line 80, ../../sass/components/results.list.scss */
.locationFinder-horizontal-3-columns .locationFinder-results {
  padding: 0;
  margin: 0;
  margin-right: 1.5%;
  width: 31%;
}

 
.map-find-store img{max-width:none;}
 
.locationFinder-pagination .next{float:right;}
.locationFinder-pagination .next, .locationFinder-pagination .prev, .locationFinder-loadMore .loadMore{background-color:#F36633;padding:7px 10px;text-decoration:none;font-weight:bold;color:#fff;border:solid 1px #F36633;display:none;}

.locationFinder-pagination .next.no-next, .locationFinder-pagination .prev.no-prev {background-color:#E0E0E0;padding:10px;text-decoration:none;font-weight:bold;color:#fff;}
.locationFinder-pagination .page_result{margin-left:300px;font-weight:bold;display:none;}

.locationFinder-description img{float:left;}

@media only screen and (max-width: 767px) {
  /* line 88, ../../sass/components/results.list.scss */
  .locationFinder-thumbnail {
    float: none;
    margin: auto;
    display: block;
  }

  /* line 96, ../../sass/components/results.list.scss */
  .locationFinder-horizontal-2-columns .locationFinder-results,
  .locationFinder-horizontal-3-columns .locationFinder-results {
    display: block;
    width: 100%;
  }
}
/* line 103, ../../sass/components/results.list.scss */
.locationFinder-tags {
  list-style-type: none;
  padding: 0;
  margin: -20px 0 0 0;
}

/* line 109, ../../sass/components/results.list.scss */
.locationFinder-tags-item {
  display: inline-block;
  margin: 0 2px;
}

/* line 114, ../../sass/components/results.list.scss */
.locationFinder-tags-item-link {
  background: #b9b8b8;
  color: black;
  border: 1px solid #939191;
  padding: 1px;
  display: block;
  font-size: 0.85em;
}

.locationFinder h3 {
  color: #635A54;
  font-size: 18px;
  font-family: Georgia; 
  margin-bottom:5px;
}

.locationFinder img { 
  width: 110px;
  height: 62px;
  float:left;
  display:inline;
}

.locationFinder .locationFinder-description-content { 
 font-size: 12px;
 font-family: arial;
 color: #635A54;
 line-height: 14px;
 display:inline;
 float:left;
 width:500px;
}

.locationFinder .locationFinder-more:after
{
  display: none;
}

.locationFinder .locationFinder-more
{
background:url("../../img/arrows/carousel-arrow.png") no-repeat left center; height:20px; padding:6px 8px 6px 30px;font-family:Arial; font-size:12px; 
margin-bottom:10px;
color:#1A768D; 
float: right;
}

.locationFinder .locationFinder-more span
{
 font-size: 12px;
 font-family: arial;
 color: #1A768D;
}

.locationFinder .locationFinder-more span:hover
{
 color: #F36633; 
} 

.locationFinder-results .hidethumbnail{display:none;}
.locationFinder ul.locationFinder-tagSelectOption{padding-left:0;}
.locationFinder .locationFinder-tagSelectOption li{
    list-style-type:none;
    cursor:pointer;
    font-size:12px;
	background: url("../../img/boxlink-arrow.png") no-repeat scroll 0 2px rgba(0, 0, 0, 0);
    color: #1a768d;
    padding: 5px 0 6px 30px; 
}

@media only screen and (max-width: 420px) {

.locationFinder img{
float: left;
margin-right:10px;
}
}

@media only screen and (max-width: 767px) {

.locationFinder img{
float: left;
margin-right:10px;
}
} 




@media only screen and (max-width: 767px) {
.locationFinder input[type=text] {
height: 12px;
padding:8px;
width: 172px;
}
.locationFinder .locationFinder-description-content, .locationFinder .locationFinder-more {display:block;}
.locationFinder .locationFinder-more{float:left;margin-top:10px;}
}
@media only screen and (max-width: 480px) {
.locationFinder input[type=text] {
height: 18px;
padding: 5px;
width: 86px;
}
.locationFinder .locationFinder-description-content, .locationFinder .locationFinder-more {display:block;}
.locationFinder .locationFinder-more{float:left;margin-top:10px;}

}/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/* STATES AND INPUT GROUP VARIABLES
    ------------------------------------*/
/*   TEMPORARY VARIABLES FOR OPERATIONS
    ------------------------------------*/
/*   CREATING SCSS USABLE VARIABLES FOR INTERPOLATION
    ------------------------------------*/
/*   FUNCTIONAL VARIABLES FOR INPUTS AND STATES
    ------------------------------------*/
/* COLOR AND FONT VARIABLES
TODO: SEPARATE COLOR ON FUNCTIONS
    ------------------------------------*/
/*$errorMainColor: #b94a48;*/
/*$errorBorderColor: #953b39;*/
/* MAIN STYLE FOR FORM
    ------------------------------------*/
/* line 99, ../../sass/components/login.scss */
.login {
  /* TWITTER BOOTSTRAP FORM STYLE
    ------------------------------------*/
  /* STATES STYLES
      ------------------------------------*/
  /* Messages
     ------------------------------------*/
  /* ARROW BUTTON STYLES
     -----------------------------------*/
}
/* line 101, ../../sass/components/login.scss */
.login .component-content {
  background-color: #EEECE4;
  padding: 0 1em;
}
/* line 109, ../../sass/components/login.scss */
.login form {
  margin: 0 0 20px;
}
/* line 113, ../../sass/components/login.scss */
.login fieldset {
  border: 0;
  margin: 15px 0;
  min-width: 0;
}
/* line 120, ../../sass/components/login.scss */
.login legend,
.login h2 {
  border-bottom: 1px solid #998A7C;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 10px 0;
  width: 100%;
}
/* line 129, ../../sass/components/login.scss */
.login fieldset legend {
  display: table;
  white-space: normal;
  margin-right: 10px;
}
/* line 139, ../../sass/components/login.scss */
.login label,
.login input,
.login button,
.login select,
.login textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  max-width: 100%;
}
/* line 146, ../../sass/components/login.scss */
.login textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
  min-width: 200px;
}
/* line 155, ../../sass/components/login.scss */
.login input,
.login button,
.login select,
.login textarea {
  font-family: Arial, sans-serif;
}
/* line 159, ../../sass/components/login.scss */
.login label {
  display: block;
  margin-bottom: 5px;
}
/* line 167, ../../sass/components/login.scss */
.login select,
.login textarea,
.login input[type="email"], .login input[type="number"], .login input[type="password"], .login input[type="search"], .login input[type="tel"], .login input[type="text"], .login input[type="url"], .login input[type="color"], .login input[type="date"], .login input[type="DATEPICKER"], .login input[type="datetime"], .login input[type="datetime-local"], .login input[type="month"], .login input[type="time"], .login input[type="week"],
.login .uneditable-input {
  display: inline-block;
  height: 35px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 20px;
  color: #c9bfb8;
  vertical-align: middle;
}
/* line 180, ../../sass/components/login.scss */
.login input,
.login textarea,
.login .uneditable-input {
  width: 206px;
}
/* line 184, ../../sass/components/login.scss */
.login fieldset textarea {
  resize: vertical;
  width: 100%;
}
/* line 189, ../../sass/components/login.scss */
.login textarea {
  height: auto;
}
/* line 196, ../../sass/components/login.scss */
.login select,
.login textarea,
.login input[type="email"], .login input[type="number"], .login input[type="password"], .login input[type="search"], .login input[type="tel"], .login input[type="text"], .login input[type="url"], .login input[type="color"], .login input[type="date"], .login input[type="DATEPICKER"], .login input[type="datetime"], .login input[type="datetime-local"], .login input[type="month"], .login input[type="time"], .login input[type="week"],
.login .uneditable-input {
  background-color: white;
  border: 1px solid transparent;
  -webkit-transition: border linear, box-shadow linear;
  -webkit-transition-delay: 0.2s, 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
/* line 205, ../../sass/components/login.scss */
.login select:focus,
.login textarea:focus,
.login input[type="email"]:focus, .login input[type="number"]:focus, .login input[type="password"]:focus, .login input[type="search"]:focus, .login input[type="tel"]:focus, .login input[type="text"]:focus, .login input[type="url"]:focus, .login input[type="color"]:focus, .login input[type="date"]:focus, .login input[type="DATEPICKER"]:focus, .login input[type="datetime"]:focus, .login input[type="datetime-local"]:focus, .login input[type="month"]:focus, .login input[type="time"]:focus, .login input[type="week"]:focus,
.login .uneditable-input:focus {
  border-color: rgba(255, 102, 0, 0.8);
  color: #323131;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 102, 0, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 102, 0, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 102, 0, 0.6);
}
/* line 215, ../../sass/components/login.scss */
.login input + .help-block,
.login select + .help-block,
.login textarea + .help-block,
.login .uneditable-input + .help-block {
  margin-top: 10px;
}
/* line 223, ../../sass/components/login.scss */
.login input,
.login textarea,
.login select,
.login .help-inline,
.login .uneditable-input {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: middle;
  *zoom: 1;
}
/* line 232, ../../sass/components/login.scss */
.login input[type="radio"],
.login input[type="checkbox"] {
  margin: 0;
  margin-top: 1px                  \9;
  *margin-top: 0;
  line-height: normal;
}
/* line 245, ../../sass/components/login.scss */
.login input[type="file"],
.login input[type="image"],
.login input[type="submit"],
.login input[type="reset"],
.login input[type="button"],
.login input[type="radio"],
.login input[type="checkbox"] {
  width: auto;
}
/* line 250, ../../sass/components/login.scss */
.login select,
.login input[type="file"] {
  height: 43px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 43px;
  padding: 12px 10px;
}
/* line 259, ../../sass/components/login.scss */
.login select {
  width: 220px;
  background-color: white;
  border: 1px solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("../../img/arrow-down-select.png") right center no-repeat;
  text-indent: 0.01px;
  text-overflow: "";
  outline: 0;
  line-height: 1em;
}
/* line 272, ../../sass/components/login.scss */
.login select::-ms-expand {
  display: none;
}
/* line 277, ../../sass/components/login.scss */
.login select[multiple],
.login select[size] {
  height: auto;
}
/* line 282, ../../sass/components/login.scss */
.login .uneditable-input,
.login .uneditable-textarea {
  color: #999999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.025);
}
/* line 290, ../../sass/components/login.scss */
.login .uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
/* line 295, ../../sass/components/login.scss */
.login .uneditable-textarea {
  width: auto;
  height: auto;
}
/* line 305, ../../sass/components/login.scss */
.login input:-moz-placeholder,
.login textarea:-moz-placeholder,
.login input:-ms-input-placeholder,
.login textarea:-ms-input-placeholder,
.login input::-webkit-input-placeholder,
.login textarea::-webkit-input-placeholder {
  color: #999999;
}
/* line 309, ../../sass/components/login.scss */
.login .form-actions {
  padding-left: 180px;
}
/* line 313, ../../sass/components/login.scss */
.login .hide {
  display: none;
}
/* line 318, ../../sass/components/login.scss */
.login .radio,
.login .checkbox {
  min-height: 20px;
  padding-left: 20px;
}
/* line 324, ../../sass/components/login.scss */
.login .radio input[type="radio"],
.login .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -22px;
}
/* line 331, ../../sass/components/login.scss */
.login .wsform-controls,
.login .controls,
.login .login-links {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
/* line 337, ../../sass/components/login.scss */
.login .wsform-controls:first-child,
.login .controls:first-child,
.login .login-links:first-child {
  *padding-left: 180px;
}
/* line 342, ../../sass/components/login.scss */
.login .login-links {
  padding: 15px 0;
}
/* line 345, ../../sass/components/login.scss */
.login .login-links a {
  font-size: 14px;
  line-height: 1.5;
  margin-right: 15px;
  padding-left: 10px;
  position: relative;
}
/* line 350, ../../sass/components/login.scss */
.login .login-links a:after {
  content: ">";
  display: block;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
}
/* line 362, ../../sass/components/login.scss */
.login .wsform-controls > .radio:first-child,
.login .wsform-controls > .checkbox:first-child {
  padding-top: 5px;
}
/* line 367, ../../sass/components/login.scss */
.login .radio.inline,
.login .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
/* line 375, ../../sass/components/login.scss */
.login .radio.inline + .radio.inline,
.login .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
/* line 381, ../../sass/components/login.scss */
.login input,
.login textarea,
.login .uneditable-input {
  margin-left: 0;
}
/* line 385, ../../sass/components/login.scss */
.login .wsform-controls-row {
  *zoom: 1;
}
/* line 388, ../../sass/components/login.scss */
.login .wsform-controls-row:before, .login .wsform-controls-row:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 393, ../../sass/components/login.scss */
.login .wsform-controls-row:after {
  clear: both;
}
/* line 403, ../../sass/components/login.scss */
.login input[disabled],
.login select[disabled],
.login textarea[disabled],
.login input[readonly],
.login select[readonly],
.login textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
/* line 408, ../../sass/components/login.scss */
.login input[readonly].hasDatepicker {
  cursor: pointer;
  background-color: #fff;
}
/* line 416, ../../sass/components/login.scss */
.login input[type="radio"][disabled],
.login input[type="checkbox"][disabled],
.login input[type="radio"][readonly],
.login input[type="checkbox"][readonly] {
  background-color: transparent;
}
/* line 423, ../../sass/components/login.scss */
.login .wsform-label {
  float: left;
  width: 160px;
  padding-top: 15px;
  text-align: left;
  font-weight: bold;
  line-height: normal;
}
/* line 434, ../../sass/components/login.scss */
.login .wsform-message {
  display: none;
  margin: 10px 0;
  padding: 0 10px;
}
/* line 439, ../../sass/components/login.scss */
.login .wsform-message a {
  color: #333;
}
/* line 442, ../../sass/components/login.scss */
.login .wsform-message a:hover {
  color: #000;
}
/* line 447, ../../sass/components/login.scss */
.login .wsform-message.wsform-success {
  background-color: #dff2bf;
  border: 1px solid #89b15f;
  color: #468847;
}
/* line 453, ../../sass/components/login.scss */
.login .wsform-message.wsform-failure {
  background-color: #FEEFB3;
  border: 1px solid #BF9555;
  color: #996A25;
}
/* line 459, ../../sass/components/login.scss */
.login .wsform-message.wsform-error {
  background-color: #ffbaba;
  border: 1px solid #e53e46;
  color: #c6080e;
}
/* line 465, ../../sass/components/login.scss */
.login .wsform-message.wsform-info {
  background-color: #bde5f8;
  border: 1px solid #3f83ba;
  color: #0F62A6;
}
/* line 473, ../../sass/components/login.scss */
.login .wsform-hint,
.login .mandatory-marker {
  color: #c6080e;
}
/* line 477, ../../sass/components/login.scss */
.login .wsform-hint-server {
  display: none;
}
/* line 483, ../../sass/components/login.scss */
.login input:focus:invalid,
.login textarea:focus:invalid,
.login select:focus:invalid {
  color: #c6080e;
  border-color: #ee5f5b;
}
/* line 490, ../../sass/components/login.scss */
.login input:focus:invalid:focus,
.login textarea:focus:invalid:focus,
.login select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #d59392;
  -moz-box-shadow: 0 0 6px #d59392;
  box-shadow: 0 0 6px #d59392;
}
/* line 496, ../../sass/components/login.scss */
.login .help-block,
.login .help-inline {
  color: #595959;
}
/* line 500, ../../sass/components/login.scss */
.login .help-block {
  display: block;
  margin-bottom: 0;
}
/* line 505, ../../sass/components/login.scss */
.login .help-inline {
  display: inline-block;
  *display: inline;
  padding-left: 5px;
  vertical-align: middle;
  *zoom: 1;
}
/* line 513, ../../sass/components/login.scss */
.login .wsform-item {
  margin: 0;
  *zoom: 1;
}
/* line 518, ../../sass/components/login.scss */
.login .wsform-item:before, .login .wsform-item:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 523, ../../sass/components/login.scss */
.login .wsform-item:after {
  clear: both;
}
/* line 529, ../../sass/components/login.scss */
.login .wsform-item .wsform-controls a {
  margin-right: 15px;
  padding-left: 10px;
  position: relative;
}
/* line 534, ../../sass/components/login.scss */
.login .wsform-item .wsform-controls a:after {
  content: '>';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
/* line 549, ../../sass/components/login.scss */
.login legend + .wsform-item,
.login h2 + .wsform-item,
.login h2 + .wsform-result + .wsform-item {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}
/* line 554, ../../sass/components/login.scss */
.login .radio input[type="radio"] {
  width: 20px;
  float: none;
  vertical-align: baseline;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 562, ../../sass/components/login.scss */
.login .radio .radio-label-text {
  line-height: 13px;
  vertical-align: baseline;
}
/* line 571, ../../sass/components/login.scss */
.login .button-arrow-left button,
.login .button-arrow-right button {
  position: relative;
  box-shadow: none;
  height: 28px;
  overflow: visible;
}
/* line 578, ../../sass/components/login.scss */
.login .button-arrow-left button {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 20px;
}
/* line 585, ../../sass/components/login.scss */
.login .button-arrow-right button {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 20px;
}
/* line 593, ../../sass/components/login.scss */
.login .button-arrow-left button:after,
.login .button-arrow-right button:after {
  content: ' ';
  width: 19px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: 3px;
  background-color: #e1e1e1;
  border: 2px solid #656363;
  box-shadow: none;
}
/* line 605, ../../sass/components/login.scss */
.login .button-arrow-left button:after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  left: -10px;
  border-width: 0px 1px 1px 0px;
  border-bottom-right-radius: 5px;
}
/* line 616, ../../sass/components/login.scss */
.login .button-arrow-right button:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -10px;
  border-width: 1px 1px 0px 0px;
  border-top-right-radius: 5px;
}
/* line 628, ../../sass/components/login.scss */
.login .button-arrow-left button:hover:after,
.login .button-arrow-right button:hover:after {
  background-color: #939191;
}

/* IE STYLES
    ------------------------------------*/
/* line 640, ../../sass/components/login.scss */
.lt-ie9 .login fieldset {
  position: relative;
  margin: 10px;
}
/* line 645, ../../sass/components/login.scss */
.lt-ie9 .login fieldset legend {
  position: relative;
  top: -0.7em;
  left: 0.5em;
  margin-right: 20px;
}
/* line 652, ../../sass/components/login.scss */
.lt-ie9 .login fieldset legend span {
  display: block;
  width: 100%;
}
/* line 657, ../../sass/components/login.scss */
.lt-ie9 .login .input-focus-border-fix {
  border-color: #ff6600;
}
/* line 661, ../../sass/components/login.scss */
.lt-ie9 .login .button {
  border: 1px solid #656363;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}
/* line 669, ../../sass/components/login.scss */
.lt-ie9 .login .button-arrow-left button:after,
.lt-ie9 .login .button-arrow-right button:after {
  position: static;
  border: none;
  display: inline;
}
/* line 675, ../../sass/components/login.scss */
.lt-ie9 .login .button-arrow-left button:before {
  content: "<<";
  padding-right: 5px;
}
/* line 680, ../../sass/components/login.scss */
.lt-ie9 .login .button-arrow-right button:after {
  content: ">>";
  padding-left: 5px;
}

/* line 693, ../../sass/components/login.scss */
.lt-ie8 .login fieldset legend {
  top: -0.5em;
}
/* line 697, ../../sass/components/login.scss */
.lt-ie8 .login .button {
  display: inline;
}
/* line 702, ../../sass/components/login.scss */
.lt-ie8 .login .button-arrow-left button,
.lt-ie8 .login .button-arrow-right button {
  position: static;
}

/* MEDIA QUERIES
    ------------------------------------*/
@media only screen and (max-width: 767px) {
  /* line 717, ../../sass/components/login.scss */
  .login .radio input[type="radio"] {
    height: 14px;
  }
  /* line 721, ../../sass/components/login.scss */
  .login .wsform-item {
    margin-bottom: 10px;
  }
  /* line 725, ../../sass/components/login.scss */
  .login .checkboxField .control-label {
    float: left;
  }
  /* line 729, ../../sass/components/login.scss */
  .login .wsform-label {
    float: none;
    width: 160px;
    padding-top: 5px;
    text-align: left;
  }
  /* line 738, ../../sass/components/login.scss */
  .login .wsform-controls,
  .login .controls,
  .login .login-links {
    margin-left: 0;
  }
  /* line 742, ../../sass/components/login.scss */
  .login .help-block {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 239px) {
  /* line 755, ../../sass/components/login.scss */
  .login input,
  .login textarea,
  .login .uneditable-input {
    width: 200px;
  }
  /* line 759, ../../sass/components/login.scss */
  .login select {
    width: 200px;
  }
}
.manageuserbox .component-content{border:1px solid #D5D1CE;padding: 13px;background:#fff;} 
.manageuserbox .manageUserLinks ul{padding: 0;margin:0;}
.manageuserbox .component-content .manageUserLinks ul li{list-style-type:none;margin-bottom:10px;}
.manageuserbox .component-content .manageUserLinks ul li a{
	background: url("../../img/boxlink-arrow.png") no-repeat scroll 0 2px;
	color: #1a768d;
	font-family: Arial;
	font-size: 12px;
	padding: 5px 0 6px 25px;
	text-decoration: none;

}

.manageuserbox .component-content .richText ul li{background:none;padding-left:0;}
.manageuserprofile .manageStaffProfile ul{
	padding-left: 0;
}
.manageuserprofile .manageUserLinks ul li{
	margin-bottom: 7px;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList li{
	background: #e0e0e0;
	cursor: pointer;
	float: left;
	list-style-type: none;
	margin: 0 10px 10px 0;
	padding: 8px;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList li:nth-child(odd){
	background: #f36633;
	color: #fff;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList li:nth-child(odd) a{
	color: #fff;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList .manageUserOverlayContainer ul li{
	float: none;
	margin: 0;
	padding: 2px 3px;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList .manageUserOverlayContainer li:nth-child(odd){
	background: #fff;
	color: #000;
}
.manageuserprofile .manageStaffProfile ul.managerUserProfileList .manageUserOverlayContainer li:nth-child(odd) a{
	color: #fff;
}
.manageuserprofile .manageUserLinks{
	border-right: 1px solid #e0e0e0;
}
.manageuserprofile .component-content .manageUserLinks ul li a{
	background: url("../../img/boxlink-arrow.png") no-repeat scroll 0 2px;
	color: #1a768d;
	font-family: Arial;
	font-size: 12px;
	padding: 5px 0 6px 30px;
	text-decoration: none;
}
.manageuserprofile .manageUserOverlayContainer .overlay-bg{
	background: #000;
	background: rgba(0,0,0,0.75);
	cursor: pointer;
	display: none;
	height: 100%;
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.manageuserprofile .manageUserOverlayContainer .overlay-content{
	background: none repeat scroll 0 0 #FFFFFF;
	border: 5px solid #D5D1CE;
	border-radius: 10px 10px 10px 10px;
	display: inline-block;
	min-height: 80px;
	min-width: 80px;
	moz-border-radius: 10px 10px 10px 10px;
	padding: 10px 10px 10px;
	position: relative;
	text-align: left;
	top: 150px;
	webkit-border-radius: 10px 10px 10px 10px;
	width: 60%;
}
.manageuserprofile .manageUserOverlayContainer .overlay-close{
	background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0 / 20px auto rgba(0, 0, 0, 0);
	cursor: pointer;
	display: none;
	font-size: 25px;
	height: 20px;
	position: absolute;
	right: 3px;
	top: 5px;
	width: 20px;
	z-index: 9999;
}
.manageuserprofile .manageUserOverlayContainer .close-btn:hover{
	background: #05abe0;
}
.manageuserprofile .manageUserOverlayContainer li span{
	font-weight: 700;
}
.manageuserprofile .manageUserOverlayContainer li span.managerUserTitle{
	display: inline-block;
	font-weight: normal;
	width: 40%;
}
.manageuserprofile h4{margin-top:0;margin-bottom:9px;}
@media only screen and (max-width: 767px){
	.manageuserprofile .manageUserOverlayContainer li span{
		font-size: 11px;
		font-weight: normal;
	}
	.manageuserprofile .manageUserOverlayContainer li span.managerUserTitle{
		display: inline-block;
		font-size: 11px;
		font-weight: normal;
		width: 50%;
	}
	.manageuserprofile .manageUserOverlayContainer .overlay-content{
		width: 80%;
	}
}/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/map/_map-base.scss */
.map-canvas {
  border: solid 2px #323131;
  margin-bottom: 10px;
  text-align: center;
}

/* line 9, ../../sass/components/map/_map-base.scss */
.map-canvas img {
  width: 100%;
  max-width: inherit;
}

/* line 14, ../../sass/components/map/_map-base.scss */
.no-js .map-canvas img {
  width: 100%;
  max-width: 640px;
}
.messageconfiguration{margin-top:20px;}
.messageconfiguration .sendMessage, .cfButton{background-color: #F36633;border: 1px solid #D5D1CE;color: #fff;padding: 5px 20px;-webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px;cursor: pointer;display: inline-block;}
.messageconfiguration .emailTemplate table{width:100%;}
.messageconfiguration .messagaeConfigurationContent .messageInput select{display:inline-block;width:35%;}
.messageconfiguration .messagaeConfigurationContent .messageInput label{display:inline-block;width:25%;vertical-align: top;}
.messageconfiguration .messagaeConfigurationContent .messageInput{margin-bottom:15px;}
.messageconfiguration .messagaeConfigurationContent .emailTemplateContainer{margin-bottom:10px;}
.messageconfiguration .messagaeConfigurationContent .emailTemplateContainer h5{border: 1px solid #e0e0e0;padding: 10px;}
.messageconfiguration .messagaeConfigurationContent .emailTemplateContainer p{margin:0;margin-bottom:10px;}
.messageconfiguration .messagaeConfigurationContent .emailTemplateContainer table{width:100%;}
.messageconfiguration .responseMessageText p{border:solid 1px #DDB5B3;border-radius:2px;color:#7B474D;padding:5px;margin-right:10px;font-size:11px;}
.messageconfiguration .responseMessageText p.msgResFailure{background:#FFD3D4;}
.messageconfiguration .responseMessageText p.msgResSuccess{background:#D5FECC;}
.messageconfiguration .messagaeConfigurationContent .sendMessage:disabled {background: #e0e0e0;cursor:default;} 
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/*** SETTINGS ***/
/* line 25, ../../sass/components/navigation/_navigation-base.scss */

.navigation-root {
    text-align: left;
    z-index: 10;
    max-width: 100%;
}
/* line 31, ../../sass/components/navigation/_navigation-base.scss */

.navigation-mobile-menu {
    display: none;
}
/* line 38, ../../sass/components/navigation/_navigation-base.scss */

.no-js .navigation-level1 > .navigation-branch {
    display: block;
}
/* line 44, ../../sass/components/navigation/_navigation-base.scss */

.no-js .navigation-root.navigation-branch.navigation-level1 {
    display: block;
}
/* line 52, ../../sass/components/navigation/_navigation-base.scss */

.no-js .navigation-vertical .navigation-item .navigation-branch.navigation-level2 {
    display: block;
}
/* line 59, ../../sass/components/navigation/_navigation-base.scss */

.no-js .navigation-horizontal .navigation-item .navigation-branch.navigation-level2 {
    display: block;
    margin: 0 0 -2px 0;
    border-left: none;
    border-right: none;
    position: static;
}
/* line 65, ../../sass/components/navigation/_navigation-base.scss */

.no-js .navigation-horizontal .navigation-item .navigation-branch.navigation-level2 > .navigation-item {
    float: none;
}
/* line 73, ../../sass/components/navigation/_navigation-base.scss */

.navigation-branch {
    overflow: visible;
    margin: 0;
    padding: 0;
    list-style: none;
    border-color: #4a4a4a;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
/* line 82, ../../sass/components/navigation/_navigation-base.scss */

.navigation-branch.navigation-level1 {
    border: none;
    display: block;
}
/* line 88, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item {
    margin: 0 0 0 0;
    /* so that borders collapse */
    
    border-color: #4a4a4a;
    border-width: 0 0 0 0;
    border-style: solid;
}
/* line 93, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item > .navigation-item-title {
    display: block;
    padding: 5px 15px 5px 15px;
    background: #e1e1e1;
    color: black;
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
/* line 105, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item > a.navigation-item-title:hover {
    color: black;
    background: #d5d5d5;
    text-decoration: none;
}
/* line 111, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item > span.navigation-item-title {
    cursor: default;
}
/* line 116, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.has-children > .navigation-item-title .navigation-item-decoration {
    background-color: #c8c8c8;
}
/* line 123, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.has-active-child > .navigation-item-title,
.navigation-item.is-active > .navigation-item-title {
    color: black;
    background: #a2a2a2;
    text-decoration: none;
}
/* line 131, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.is-open > .navigation-branch,
.no-js .navigation-item:hover > .navigation-branch {
    display: block;
}
/* line 135, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.navigation-level1 {
    margin: 0 0 -2px -2px;
    /* so that borders collapse */
    
    border-color: #4a4a4a;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
    box-sizing: border-box;
}
/* line 141, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.navigation-level1 > .navigation-item-title {
    color: black;
    background: #e1e1e1;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px 10px 20px;
}
/* line 151, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.navigation-level1 > a.navigation-item-title:hover {
    color: black;
    background: #1d7a9f;
    /* Modified by Nilima: 19/05/2016 */

    text-decoration: none;
}
/* line 159, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.navigation-level1.has-active-child > .navigation-item-title,
.navigation-item.navigation-level1.is-active > .navigation-item-title {
    color: #FFF;
    background: #1d7a9f;
    /* Modified by Nilima: 19/05/2016 */
    
    text-decoration: none;
}
/* line 166, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item.navigation-level2 {
    border-top: 1px solid #4a4a4a;
}
/* line 172, ../../sass/components/navigation/_navigation-base.scss */

.navigation-branch.navigation-level2 {
    display: block;
}
/* line 176, ../../sass/components/navigation/_navigation-base.scss */

.navigation-item > .navigation-item-title {
    padding-left: 40px;
}
/* line 184, ../../sass/components/navigation/_navigation-base.scss */

.mod-touch .navigation-horizontal .navigation-item .is-open.navigation-branch.navigation-level2 {
    display: block;
    position: relative;
    top: 0;
    left: 0;
}
/* line 191, ../../sass/components/navigation/_navigation-base.scss */

.mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
    overflow: hidden;
}
/* line 196, ../../sass/components/navigation/_navigation-base.scss */

.mod-touch .navigation-horizontal .navigation-item.navigation-level2:first-child {
    border-top: none;
}
/* line 201, ../../sass/components/navigation/_navigation-base.scss */

.mod-touch .navigation-horizontal .navigation-item .navigation-level2 .navigation-item {
    width: 100%;
}
/* line 212, ../../sass/components/navigation/_navigation-base.scss */

.mod-no-touch .header-nav .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2 {
    min-width: 100%;
    position: absolute;
    top: 41px;
    left: -2px;
    display: block;
}
/* line 218, ../../sass/components/navigation/_navigation-base.scss */

.mod-no-touch .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2 .navigation-item {
    float: none;
}
/* line 227, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-item {
    float: left;
    position: relative;
}
/* line 230, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-item .navigation-branch.navigation-level2,
.navigation-horizontal .navigation-item .navigation-branch.navigation-level3 {
    display: none;
}
/* line 235, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-item.is-open > .navigation-branch.navigation-level2,
.navigation-horizontal .navigation-item.is-open > .navigation-branch.navigation-level3 {
    display: block;
    float: none;
}
/* line 242, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-item.navigation-level2:first-child {
    border-top: none;
}
/* line 247, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children > .navigation-item-title {
    padding-right: 61px;
    background-image: none;
}
/* line 250, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children > .navigation-item-title .navigation-item-decoration {
    height: 41px;
    width: 41px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 41px;
}
/* line 258, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children > .navigation-item-title .navigation-item-decoration:after {
    content: "\f078";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    position: relative;
    font-weight: normal;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 41px;
    height: 41px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
}
/* line 269, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children > .navigation-item-title:hover .navigation-item-decoration {
    background-color: #939191;
}
/* line 273, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title {
    padding-right: 55px;
}
/* line 275, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration {
    height: 31px;
    width: 31px;
    line-height: 31px;
}
/* line 279, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration:after {
    width: 31px;
    height: 31px;
}
/* line 286, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .has-active-child > .navigation-item-title .navigation-item-decoration {
    background-color: #605e5e;
}
/* line 291, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-level2.navigation-branch {
    border-color: #4a4a4a;
    border-width: 2px 2px 2px 2px;
    border-style: solid;
}
/* line 296, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-level2 .navigation-item-title {
    padding: 5px 15px 5px 15px;
}
/* line 300, ../../sass/components/navigation/_navigation-base.scss */

.navigation-horizontal .navigation-level2.navigation-root {
    max-width: none;
}
/* line 307, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .navigation-branch.navigation-level2,
.navigation-vertical .navigation-branch.navigation-level3 {
    display: none;
}
/* line 312, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .navigation-item.is-open > .navigation-branch.navigation-level2,
.navigation-vertical .navigation-item.is-open > .navigation-branch.navigation-level3 {
    display: block;
}
/* line 317, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-children > .navigation-item-title {
    position: relative;
}
/* line 319, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-children > .navigation-item-title .navigation-item-decoration {
    height: 41px;
    width: 41px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    line-height: 41px;
}
/* line 327, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-children > .navigation-item-title .navigation-item-decoration:before {
    content: "\f078";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    position: relative;
    font-weight: normal;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 41px;
    height: 41px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
}
/* line 340, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration {
    height: 31px;
    width: 31px;
    line-height: 31px;
}
/* line 344, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration:before {
    width: 31px;
    height: 31px;
}
/* line 351, ../../sass/components/navigation/_navigation-base.scss */

.navigation-vertical .has-active-child > .navigation-item-title .navigation-item-decoration {
    background-color: #c8c8c8;
}
.image.section.gsk-mobile-logo.grid_1.alpha.component.first.odd {
    /* Added by Nilima: 24/05/2016 */
    
    display: none;
}

.mobile-nav-box {
    display: none;
}

#wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    background: -moz-linear-gradient(left, #fff 0%, #fff 100%);
    background: -webkit-linear-gradient(left, #fff 0%, #fff 100%);
    background: linear-gradient(to right, #fff 0%, #fff 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fff', GradientType=1);
}
#header.main {
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    left: 0;
    top: 0;
    background: #fff;
}
.header-box {
    width: 100%;
    height: auto;
    padding: 0;
    min-height:3.6575em; /* amar 20 sept */
    box-sizing: border-box;
    padding-top: 1em;
}
.header-box .buy-now {
    width: 83.4%;
    margin-top: 0.16em;
}
.header-box .buy-now > .component-content {
    overflow: visible;
}
.header-box .buy-now ul {
    float: right;
    width: 100%;
    text-align: right;
    padding: 0;
    margin: 0;
    padding-right: 4.5%;
}
.header-box .buy-now ul li {
    float: none;
    text-align: right;
    display: inline-block;
    margin: 0;
    font-size: 1em;
    padding-left: 0.425em;
}
.header-box .buy-now ul li::before {
    content: '';
}
.header-box .buy-now ul li a {
    text-decoration: none;
    color: #006999;
    font-size: 0.875em;
    background: url(../../img/buy-now-arrow.png) 95% center no-repeat;
    padding: 0.5em 1.625em 0.425em 0.9357em;
    font-family: "Proxima Nova Bold";
    /* text-transform: uppercase; */
}
.header-box .parametrizedhtml.section.language-selector {
    margin-left: 0;
    width: 7.42361%;
    margin-right: 1.2em;
	margin-top: 0.1em; /*Pooja 12-10-2016*/
}
.header-box .parametrizedhtml.section.language-selector > .component-content {
    overflow: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.header-box .parametrizedhtml.section.language-selector {
    	width: 6.42361%;
    	margin-right: 2.2em;
	}
}
.header-box .parametrizedhtml.section.language-selector select { /*Pooja 17-09-2016*/
    color: #006999;
    font-weight: normal;
    padding: 0px 1.15em 0px 1.25em;
    border: none;
    text-decoration: none;
    padding-left: 0px;
    background: url(../../img/down-arrow.png) 61% 0.6em no-repeat;
    font-family: "Proxima Nova Bold";
    /* text-transform: uppercase; */
    width: 120px; /* amar 20 sept */
    font-size: 0.875em;
	box-sizing:border-box;
}
.header-box .gsk-logo.component {
    float: left;
    margin-top: 0px;
    margin-left: 1.3%;
    width: 3.5%;
}
.header-box .parametrizedhtml.section.language-selector select:focus {
    outline: none;
}
.main-nav-box .zovirax-logo {
    margin-top: 1.2em; /* amar 20 sept */
    margin-left: 3.1% !important;
}
.main-nav-box {
    width: 100%;
    float: left;
    height: 90px;
    position: relative;
    background: url(../../img/bg-main-nav.jpg) left top no-repeat;
}
.main-nav-box > .component-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    float: none;
}
.header-nav.component { /* amar 20 sept */
    width: 65%;
}
.header-nav .navigation-item {
    float: left;
    position: relative;
}
.main-nav-box .header-nav { /* amar 20 sept */
    padding-left: 5.5%;
    margin-left: 0%;
}
.header-nav .navigation-branch.navigation-level1 {
    border: none;
    padding-top: 1.8125em;
    width: 100%;
    float: left;
}
.navigation-item.navigation-level1 {
    margin: 0;
}
.navigation-item.navigation-level1,
.navigation-item.navigation-level2,
.navigation-item.navigation-level3 {
    border: none;
}
.header-nav .navigation-branch .navigation-level1 { /* amar 20 sept */
     width: auto;
    margin-right: 9%;  /* Nilima - 05-oct */
}
.navigation-horizontal.header-nav .navigation-branch li.navigation-item:last-child {   /* Nilima - 05-oct */
	margin-right: 0px;
}
.header-nav .navigation-branch .navigation-item {
    position: static;
}
.header-nav .navigation-item > .navigation-item-title {
    background: none !important;
}
.header-nav .navigation-item.navigation-level1.is-open > .navigation-item-title::before {
    background: url(../../img/nav-down-arrow.png) center center no-repeat;
    position: absolute;
    left: 0;
    top: 3.7em;
    z-index: 10;
    content: '';
    height: 11px;
    right: 0;
    margin: 0 auto;
}
.header-nav li.navigation-item.navigation-level1.is-open:nth-child(n+3) > .navigation-item-title::before {  /* NR - 28-sept-SIT */
    background: url(../../img/nav-down-arrow2.png) center center no-repeat;
}	
.header-nav .navigation-item.navigation-level1 > .navigation-item-title {
    padding:0; /* amar 20 sept */
    color: #ffffff;
    line-height: 1;
    position: relative;
    overflow: visible;
    height: 3.875em;
    text-decoration: none;
    font-weight: normal;
    font-size: 1em;
}
.header-nav .navigation-item.navigation-level1 > a.navigation-item-title:hover,
.header-nav .navigation-item.navigation-level1 > a.navigation-item-title:focus  {/*Pooja 25-09-2016*/
    background: none;
    margin: 0 auto;
    color: #f47920 !important;  /* Modified Pooja 25-07-2016 */
}
.header-nav .nav-txt {
    /* font-family: "Proxima Nova bold"; */  /*Pooja 12-10-2016*/
    font-size: 1.125em;
    display: block;
    /* text-transform: uppercase; */
    font-weight: normal;
	margin-bottom:0.2em; /* amar 22 sept */
}
.header-nav .nav-txt-bottom {
    /* font-family: "Proxima Nova bold"; */ /*Pooja 12-10-2016*/
    font-size: 1.125em;
    display: block;
    /* text-transform: uppercase; */
    font-weight: normal;
}
.header-nav.navigation-horizontal .navigation-item.is-open > .navigation-branch.navigation-level2 {
    min-width: 100%;
    position: absolute;
    left: 0;
    min-height: 8.813em;
    top: 5.625em;
    padding-left: 23.35%;
    background: url(../../img/bg-main-sub-nav.jpg) left top no-repeat;
    display: block;
}
.navigation-item.navigation-level1.has-children > .navigation-item-title .navigation-item-decoration {
    width: 41px;
    position: absolute;
    right: 0;
}
.header-nav ul.navigation-level1 li.navigation-level1 ul.navigation-level2 {
    margin: 0px auto;
    z-index: 1;
    border: none;
    float: left;
    width: 100%;
}
.mod-no-touch .navigation-horizontal.header-nav .navigation-item:hover .navigation-branch.navigation-level2 .navigation-item {
    float: left;
}
.header-nav .navigation-level2.navigation-root {
    max-width: none;
}
.header-nav .navigation-branch.navigation-level2 > .navigation-item.navigation-level2:nth-child(1) {
    background: none;
}
.header-nav .navigation-item.navigation-level2:first-child {
    border-top: none;
}

.header-nav .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:hover,
.header-nav .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:active,
.header-nav .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:focus {
    color: #f47920; /* Modified Pooja 25-07-2016 */
}
.header-nav .navigation-item.navigation-level2 > .navigation-item-title {
    color: #fff;
    font-weight: normal;
    padding: 1.7em 1.8em 1.7em 0em; /* Modified Pooja 28-07-2016 */
    /* font-family: "Proxima Nova Bold"; */ /*Pooja 12-10-2016*/
    font-size: 0.875em;
    position: relative;
    overflow: visible;
}
.header-nav .has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration {
    height: 31px;
    width: 31px;
    line-height: 31px;
}
.header-nav .has-children > .navigation-item-title .navigation-item-decoration {
    display: none;
}
.navigation-item.has-children > .navigation-item-title .navigation-item-decoration {
    background-color: transparent;
}
.main-nav-box .search-box.component { /* amar 23 sept */
    width: 16%; 
	}
.main-nav-box .section.search-box { /* amar 21 sept */
    float: right;
    text-align: left;
    margin-top:2.35em;
    padding-right: 1%;
	margin-left:0;
}
.header-nav .navigation-item .navigation-branch.navigation-level2,
.header-nav .navigation-item .navigation-branch.navigation-level3 {
    display: none;
}
.header-nav .navigation-branch.navigation-level2 .navigation-branch {
    position: absolute;
}
.header-nav .navigation-branch.navigation-level2 {
    position: relative;
}
.header-nav .navigation-item.navigation-level2.is-open .navigation-branch.navigation-level3 {
    display: block;
    float: left;
    border: none;
    border-top: 1px solid #5c98af;
    left: 23.35%;
    width: 70%;
}
.header-nav .navigation-item.navigation-level2.is-open > .navigation-item-title::after {
    background: url(../../img/down-arrow-sub-menu.png) center center no-repeat;
    position: absolute;
    left: 0;
    top: 4.75em;
    z-index: 100;
    content: '';
    height: 11px;
    right: 0;
    margin: 0 auto;
}

.header-nav .navigation-item.navigation-level2.is-open:nth-child(n+3) > .navigation-item-title::after {  /* Pooja 12-10-2016 */
    background: url(../../img/down-arrow-sub-menu2.png) center center no-repeat;
}	

.header-nav .navigation-item.navigation-level2.is-open:nth-child(n+4) > .navigation-item-title::after {  /* Pooja 12-10-2016 */
    background: url(../../img/down-arrow-sub-menu3.png) center center no-repeat;
}

/* .navigation-after-div {
    background: url(../../img/down-arrow-sub-menu.png) center center no-repeat;
    position: absolute;
    left: 0;
    top: 4.7em;
    z-index: 100;
    content: '';
    height: 11px;
    width: 18px;
    right: 0;
    margin: 0 auto;
    display: block !important;
} */
.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3:nth-child(1) {
    background: none;
}
.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3:nth-child(1) > .navigation-item-title {
    padding-left: 0;
}
.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title {
    text-transform: none;
    color: #fff;
    padding: 1.1em 1.0625em 1.1em 1.0625em;
    /* font-family: "Proxima Nova bold"; */ /*Pooja 12-10-2016*/
    font-size: 0.875em;
}
.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title:hover,
.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title:focus {
    color: #f47920; /* Modified Pooja 25-07-2016 */
}
.main-nav-box .section.search-box .form-search .search-query { /* amar 23 sept */
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    border-bottom: 0px solid #9bcce7;
    max-width: 53%;
    float: right;
    margin-right: 16%;
    width: 0;
	outline:none;
    color:#fff;
}
.main-nav-box .section.search-box button { /* amar 23 sept */
    background: url("../../img/search-icon.png") no-repeat center !important;
    text-indent: -9999em;
    border: 0 none;
    padding: 0px;
    width: 21px;
    height: 21px;
    margin-left: -23px;
    margin-bottom: 0.5em;
    position: absolute;
    right: 3.1%;
    z-index: 50;
	outline:none;	
}
#footer {
    margin: 0 auto;
    padding: 0px;
    width: 100%;
    background: url("../../img/footer-curve.png") right top no-repeat;
}
.footer-link-box .footer-zovirax-fan-box {
    padding: 0 3.4%;
    float: left;
    width: 100%;
    box-sizing: border-box;
}
.footer-link-box .lower-footer-box { /* amar 21 sept */
    padding:1.8em 0 1.3em 2.5em;
    background-color: #ffffff;
}
.footer-logo-box {
    padding: 0 0em 0em 2.5em;
    min-height: 5em; /* amar 16 sept */
    float: left;
    width: 100%;
    box-sizing: border-box;
}
.footer-logo-box .footer-logo-text {
    text-align: right;
    float: left !important;
    margin-right: 3.5%;
}
.footer-zovirax-fan-box .sign-up-text input {
    width: 90%;
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    padding: 0.75em;
    font-size: 0.875em;
    font-style: italic;
    margin-right: 1.250em;
	margin-top: 0.5em;
}
#footer .footer-zovirax-fan-box .join-button a {
    float: left;
    text-decoration: none;
    background: #006999;
    border-radius: 4px;
    color: #fff;
    font-family: "Proxima Nova Bold";
    font-size: 1em;
    padding: 0.5em 1.40em;
}
.footer-share-box p { /* amar 21 sept */
	color: #1b1b1b; 
    font-size: 0.875em;
    font-family: "Proxima Nova W08 Reg";
    margin-bottom: 0;
	margin-top:0.54em;
}
.footer-followus-box p {  /* amar 21 sept */
    font-size: 0.875em;
    font-family: "Proxima Nova W08 Reg";
    margin-bottom: 0.8em;
	margin-top:0.54em;		
}
.footer-zovirax-fan-box .join-button {
    padding-top: 5.3em; /*Modified Pooja 12-07-2016*/
    width: 8.93056%;
    margin-left: 1.08333%;
}
.footer-zovirax-fan-box .join-button p{
	margin:0;
}
.footer-zovirax-fan-box .zovirax-fan-text p {
    padding: 2.3em 0 2.2em;/*Modified Pooja 12-07-2016*/
    font-size: 2em;
    color: #282828;
    font-family: "Proxima Nova light";
	margin:0;
}
.footer-zovirax-fan-box .fan-sign-up-box .sign-up-text {
    padding-top: 3.5em;/*Modified Pooja 12-07-2016*/
	margin:0;
}
.footer-zovirax-fan-box .fan-sign-up-box .sign-up-text p {
    color: #282828;
    font-size: 0.875em;
    font-family: "Proxima Nova W08 Reg";
    margin-bottom: 0.8em;
	margin: 0;
}
.footer-zovirax-fan-box .join-button a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875em;
}
.footer-logo-box .footer-logo-text p {
    font-family: "Proxima Nova W08 Reg";
    margin-left: 7%;
    color: #666666;
    font-size: 0.750em;
    margin-top: 2.87em;
}
.footer-link-text p {
    margin: 0;
    padding: 0;
    line-height: 2em;
}
.lower-footer-box .footer-link-text { /* amar 21 sept */
    width: 38.94444%;
	margin-top:0.35em;
}
.lower-footer-box .footer-link-text ul {
    margin: 0;
    padding: 0;
}
.lower-footer-box .footer-link-text ul li {/* amar 21 sept */
    margin:0 0 0.57em 0; 
    padding: 0;
}
.lower-footer-box .footer-link-text ul li::before {
    content: '';
}
.lower-footer-box .footer-link-text ul li a,
.lower-footer-box .footer-link-text ul li .bold-text {
    font-family: "Proxima Nova bold";
    text-decoration: none !important;
    color: #666666;
    font-size: 0.875em;
}
.lower-footer-box .footer-share-box {
    width: 30.54444%;
}
.lower-footer-box .footer-followus-box {
    width: 25.54444%;
}
.footer-followus-box .follow-us-text p,
.footer-followus-box .footer-share-box p {
    color: #1b1b1b;
}
.footer-zovirax-fan-box .fan-sign-up-box {
    width: 25.94444%;
}
sup{ /*Sujeet Added on date 8-sep*/
    top:-0.3em;
}


.page-newsletter-sign-up .footer-link-box .footer-zovirax-fan-box{  /*pooja 17-09-2016*/
	background-color:#fff;
	min-height: 1em; /* Nilima 06-oct SIT */
} 
.page-newsletter-sign-up .footer-link-box .footer-zovirax-fan-box >.component-content
{ /*pooja 17-09-2016*/
	display:none;
}

@media only screen and (min-width: 990px) {
    /* line 362, ../../sass/components/navigation/_navigation-base.scss */

    .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
        margin: 0 0 -2px -2px;
        position: absolute;
    }
}
@media only screen and (min-width: 768px) and (max-width: 989px) {
    /* line 376, ../../sass/components/navigation/_navigation-base.scss */
    
  /*   .mod-touch .navigation-horizontal .navigation-item {
        width: 100%;
    } */
    /* line 379, ../../sass/components/navigation/_navigation-base.scss */
    
    .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
        margin: 0 0 -2px 0;
        border-left: none;
        border-right: none;
    }
	

}


@media screen and (max-width: 1024px)
{
	/* G2 Changes place from here  */  

 /* G2 Changes place of css start */
 /* line 395, ../../sass/components/navigation/_navigation-base.scss */
  .main-nav-box .header-nav {
        display: none !important;
    }
     .mobile-navigation {  
        background: #01608a;       
        background: -moz-linear-gradient(left, #01608a 0%, #2987a9 51%, #0b7097 100%);
         background: -webkit-linear-gradient(left, #01608a 0%, #2987a9 51%, #0b7097 100%);       
        background: linear-gradient(to right, #01608a 0%, #2987a9 51%, #0b7097 100%);
    }
    .mobile-navigation .navigation-branch {
        border: none;
    }
    .mobile-navigation .navigation-item.navigation-level1 > .navigation-item-title,
    .mobile-navigation .navigation-item > .navigation-item-title {
        background: transparent;
        font-size: 0.875em;
        font-family: "Proxima Nova Bold";
        color: #fff;
    }
	
	/* Nilima : 13/09  */	
	.mobile-nav-box .mobile-navigation .navigation-branch .nav-txt {  
		display: block;
		text-transform: uppercase;
		font-family:"Proxima Nova Extrabold";
		line-height: 1;
	}
	.mobile-nav-box .mobile-navigation .navigation-branch .nav-txt-bottom {
		display: block;
		text-transform: uppercase;
		font-family: 'Proxima Nova W08 Reg';
		line-height: 1;
		font-weight: normal;
	}
	
    .mod-touch .navigation-horizontal .navigation-item {
        width: 100%;
    }
    /* line 398, ../../sass/components/navigation/_navigation-base.scss */
    
    .mod-touch .navigation-horizontal .navigation-item.is-open .navigation-branch.navigation-level2 {
        margin: 0 0 -2px 0;
        border-left: none;
        border-right: none;
        position: static;
    }
    /* line 409, ../../sass/components/navigation/_navigation-base.scss */
    
    .navigation-mobile-menu {
        display: block;
        width: 100%;
        height: 41px;
        position: relative;
        cursor: pointer;
        border-width: 2px 2px 2px 2px;
        border-style: solid;
        border-color: #4a4a4a;
        box-sizing: border-box;
        margin: 0 0 -2px -2px;
        overflow: hidden;
        background: whitesmoke;
    }
    /* line 422, ../../sass/components/navigation/_navigation-base.scss */
    
    .navigation-mobile-menu:after {
        content: "\f0c9";
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        position: relative;
        font-weight: normal;
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: block;
        width: 41px;
        height: 41px;
        position: absolute;
        top: 0;
        line-height: 38px;
        font-size: 25px;
        right: 0;
    }
    /* line 434, ../../sass/components/navigation/_navigation-base.scss */
    
    .mobile-nav-box .mobile-navigation .navigation-item.navigation-level1 {
        width: 100%;
		padding: 0.5em 0;  /* Nilima : 13/09  */	
    }
    /* line 437, ../../sass/components/navigation/_navigation-base.scss */
    
    .navigation-branch.navigation-level1 {
        display: none;
		clear:both;
    }
    /* line 439, ../../sass/components/navigation/_navigation-base.scss */
    
    .mobile-nav-box .mobile-navigation .navigation-branch.navigation-level1.is-open {  /* Nilima : 13/09  */	
		display: block;
		background-color: #006999;
		padding: 0;
		width: 41.7%;
		position: absolute;
		left: 0;
		top: 40px;  /* NR 29-sept SIT */
		padding-top: 1em;
    }
	.mobile-nav-box .mobile-navigation .navigation-branch.navigation-level1 {  /* Nilima : 13/09  */
		overflow-x: hidden;
	}
    /* line 445, ../../sass/components/navigation/_navigation-base.scss */
    
	#wrapper .footer-zovirax-fan-box .fan-sign-up-box .sign-up-text p {
	font-size:0.8em;
	margin:1.8em 0 5% 0 ;
	line-height:0; 
	}
	
    .navigation-horizontal .navigation-item:hover .navigation-branch.navigation-level2,
    .navigation-vertical .navigation-item:hover .navigation-branch.navigation-level2 {
        left: 0;
        border-left: none;
        border-right: none;
    }
    .mobile-navigation ul.navigation-level1 li.navigation-level1 .navigation-item-title {
        display: block;
        font-size: 0.875em;
        font-family: "Proxima Nova Bold";
        margin: 0em 5% 0em 6%; /*Nilima:13-sept*/
       /*  border-bottom: 1px solid #0f6890; */
        width: 86%;
        padding: 0 4%;
		border-left: 1px solid #fff;
		position: relative;  /* Nilima : 13/09  */	
		text-transform: uppercase;
    }


.mobile-navigation .navigation-item.navigation-level1 a .navigation-item-decoration {     /* Nilima : 16-sept  */
	    background: transparent url("../../img/prev-arrow-mobile.png") no-repeat 67% 0;
		height: 26px;
		width: 30px;
		position: absolute;
		right: 10px;
		top: 8px;
		background-size: 22%;
    }
	
	.mobile-navigation .navigation-item.navigation-level2 a .navigation-item-decoration{       /* Nilima : 16-sept  */
	    background: transparent url("../../img/prev-arrow-mobile.png") no-repeat 67% 0;
		height: 26px;
		width: 30px;
		/* margin-top: 4px; */
		position: absolute;
		/* float: right; */
		right: 10px;
		top: 18px;
		background-size: 22%;
	}
	.mobile-navigation .navigation-item.navigation-level3 a .navigation-item-decoration{  /* Nilima : 16-sept  */
		    top: 17px;
	}
    .navigation-item.navigation-level1.has-children > .navigation-item-title .navigation-item-decoration {
        position: absolute;
        right: 0;
    }
    .navigation-item.navigation-level1.has-children > .navigation-item-title .navigation-item-decoration {
        background-position: 16.5px;
    }
    .navigation-item.navigation-level1.has-children > .navigation-item-title .navigation-item-decoration {
        height: 41px;
        margin: -10px 0 -10px 0;
        display: inline-block;
        vertical-align: top;
    }
    .mobile-navigation .navigation-branch.navigation-level2 {
        display: none;
		padding-top: 0.9em;
    }
    .mobile-navigation .navigation-item.navigation-level1 > a.navigation-item-title:hover {
        background: #006999;   /*Nilima:12-sept*/
        color: #fff;
    }
    .show {
        display: block !important;
/*         padding-top: 16px; */     /*Nilima:12-sept*/
    }
    .hide {
        display: none !important;
    }
    .mobile-navigation .navigation-item.has-children.navigation-level1 > .navigation-item-title .navigation-item-decoration,
.mobile-navigation .navigation-item.has-children.navigation-level2 > .navigation-item-title .navigation-item-decoration,
.mobile-navigation .navigation-item.has-children.navigation-level3 > .navigation-item-title .navigation-item-decoration	{   /*Nilima:12-sept*/
        background: transparent url("../../img/mob-close-btn.png") no-repeat 50% 0;
		height: 26px;
		width: 46px;
		/* margin-top: 4px; */             /* Nilima : 13/09  */	
		position: absolute;
		background-size: 27%;
		/* right: 14px; */
		outline: none;
		top: 18px; /* Nilima : 16-sept  */
    }
	.mobile-navigation .navigation-item.has-children.is-open > .navigation-item-title .navigation-item-decoration{  /*Nilima:13-sept*/
		background: transparent url("../../img/mob-open-btn.png") no-repeat 50% 17%;
        height: 26px;
        width: 46px;
       /*  margin-top: 4px; */
        position: absolute;
        background-size: 32%;
        top: 20px;
		outline:none;
	}
    .mobile-back-button {
        background: #005e89;
        color: #fff;
        font-family: "Proxima Nova Bold";
        font-size: 0.875em;
        padding: 1.5em 17.6% 1em;
        background: transparent url("../../img/next-arrow-mobile.png") no-repeat scroll 12% 57% / 9px auto;
        background-size: 2%;
    }
    .main-nav-box {
        display: none;
    }
    .mobile-navigation .navigation-mobile-menu {
        background: #202969;
        background: url(../../img/mobile-logo.png) 15px 77% no-repeat, url(../../img/mobile-click.png) 95% 50% no-repeat, -moz-linear-gradient(left, #202969 0%, #54b4e2 100%);
        background: url(../../img/mobile-logo.png) 15px 77% no-repeat, url(../../img/mobile-click.png) 95% 50% no-repeat, -webkit-linear-gradient(left, #202969 0%, #54b4e2 100%);
        background: url(../../img/mobile-logo.png) 15px 77% no-repeat, url(../../img/mobile-click.png) 95% 50% no-repeat, linear-gradient(to right, #202969 0%, #54b4e2 100%);
        margin: 0 auto;
        border: none;
        background-size: 86px 50%, auto, 100%;
        height: 50px;
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.22);
    }
    .zovirax-logo {
        position: absolute;
        max-width: 6em!important;
        margin-top: 0!important;
        top: 0.6em;
        left: 3%;
    }
    .navigation-mobile-menu.is-open-active {
        background: #202969;
        background: url(../../img/mobile-close.png) 95% 50% no-repeat, -moz-linear-gradient(left, #202969 0%, #54b4e2 100%);
        background: url(../../img/mobile-close.png) 95% 50% no-repeat, -webkit-linear-gradient(left, #202969 0%, #54b4e2 100%);
        background: url(../../img/mobile-close.png) 95% 50% no-repeat, linear-gradient(to right, #202969 0%, #54b4e2 100%);
        margin: 0 auto;
        border: none;
        height: 50px;
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.22);
    }
    .navigation-mobile-menu:after {
        content: "";
    }
    .mobile-navigation .navigation-mobile-menu {
        background: url(../../img/mobile-click.png) center center no-repeat;
        height: 17px;
        width: 26px;
        float: right;
        border: none;
        margin-top: 1.1em;
        margin-right: 3%;
        outline: none;
        top: -5px;
        margin-bottom: 6px;
        box-shadow: none;
		background-size: 100% 100%;
    }
    .header-box {
        display: none;
    }
    .mobile-navigation .navigation-mobile-menu.is-open-active {
        background: url(../../img/mobile-close.png) center center no-repeat;
        height: 17px;
        width: 26px;
        float: right;
        border: none;
        outline: none;
		background-size: 100% 100%;
    }
    .searchBox.grid_5 {
        display: none !important;
    }
	.mobile-navigation .search-box.component{
		display:block !important;
	}
	.mobile-navigation .search-box.component > .component-content{
		width: 91%;  /* Nilima : 13/09  */	
		margin: 0 auto;
		padding-top: 1em;
		padding-bottom: 1.3em;   /* Nilima : 13/09  */	
		border-top: 1px solid #3387ad;
		position: relative;  /* Nilima : 13/09  */	
	}
    .searchBox.grid_2 {
        display: block !important;
        padding-left: 2%;    /*Nilima:12-sept*/
		padding-bottom: 1em;
/*         padding-top: 5.5em;
        padding-bottom: 1.2em; */
    }
    .mobile-navigation .search-box .form-search .search-query {      /*Nilima:13-sept*/
		border: none;
		width: 86%;
		background-color: #fff;
		padding: 0.65em 2% 0.65em 12%;
		border-radius: 3px;
		font-family: "Proxima Nova W08 Reg";
		color: #8a8888;
		font-size: 0.875em;
		outline: none;
    }
    .mobile-navigation .section.search-box button {   /*Nilima:13-sept*/
		background: url("../../img/mob-search-icon.png") no-repeat center;
		text-indent: -9999em;
		border: 0 none;
		padding: 0px;
		width: 36px;
		height: 36px;
		position: absolute;
		left: 0%;
		z-index: 50;
		outline: none;
		background-size: 52%;
		top: 1em;	
    }
    .buy-now {
        padding: 0;  /*Nilima:12-sept*/
    }
    .header-box {
        position: relative;
    }
    .header-box .gsk-logo {
        position: relative;
        display: block !important;
        z-index: 1;
    }
    .buy-now .component-content ul {
        padding: 0;
		margin:0;
    }
    .buy-now .component-content ul li {         /*Nilima:12-sept*/
		margin-bottom: 0.4em;
		padding:0.6em 5% 0.6em 5%;   /*Nilima:13-sept*/
		background-color: #e97e2c;
    }
    .buy-now a {
		text-decoration: none !important;
		color: #006699;
		font-family: "Proxima Nova Bold";
		/* background: url("../../img/buy-now-arrow.png") 31% 50% no-repeat !important; */     /*Nilima:12-sept*/
		display: block;
		background: transparent url("../../img/prev-arrow-mobile.png") no-repeat center right;
		background-size: 0.5em;
		color: #fff;
		font-size: 0.875em;   /* Nilima : 13/09  */	
        line-height: 1.7;         /* Nilima : 13/09  */	
    }
    .language-selector .select-text {
        color: #006699;
        font-family: "Proxima Nova Bold";
        display: none;
    }
    .language-selector,
    .buy-now {
        background: #fff;
    }
    .mobile-navigation .gsk-logo {
        position: absolute;
        left: 38%;
        bottom: 2.5em;
    }
    .language-selector .custom-select {
        border: none;
        -webkit-appearance: none;
        font-family: "Proxima Nova Bold";
        background: #fff url(../../img/down-arrow.png) 34% 50% no-repeat;
        width: 90%;
        text-indent: 0.01px;
        text-overflow: "";
        color: #006699;
        padding: 5px;
        left: 5%;
        position: relative;
        padding-bottom: 17px;
    }
    .buy-now ul li:before {
        content: "" !important;
    }
    .mobile-navigation .parametrizedhtml.section.language-selector select {   /*Nilima:12-sept*/
		color: #fff;
		font-weight: normal;
		padding: 0.5em 0 0.5em;
		/* padding-top: 0.375em; */
		border: none;
		text-decoration: none;
		padding-left: 3%;
		font-family: "Proxima Nova Bold";
		width: 91.5%;
		font-size: 1em;
		margin-left: 5%;   /*Nilima:13-sept*/
		-webkit-appearance: none;
		-moz-appearance: none;
		-o-appearance: none;
		-ms-appearance: none;
		background: #fff url(../../img/mob-selector.png);
		color: #000;
		box-sizing: border-box;
		border-radius: 3px;
		background-repeat: no-repeat;
		background-position: 99%;
		box-sizing: border-box;
		background-size: 1.1em;
    }
    .mobile-navigation .buy-now,
    .mobile-navigation .language-selector {
        background: transparent;
    }
    .mobile-navigation .language-selector {
        padding-bottom: 1.3em;
		margin: 0;     /* Nilima : 13/09  */	
    }
    .mobile-navigation .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:hover,
    .mobile-navigation .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:active,
    .mobile-navigation .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:focus {
        background: #1d7a9f;
        color: #fff;
    }
    .mobile-navigation .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title:hover,
    .mobile-navigation .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title:active,
    .mobile-navigation .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title:focus {
        background: #1d7a9f;
        color: #fff;
    }

    .image.section.gsk-mobile-logo.grid_1.alpha.component.first.odd {
        display: block;
        margin: 0 auto;
    }
    .image.section.gsk-mobile-logo.grid_1.alpha.component.first.odd img {
        width: 50%;
        padding: 2em 1em 0em 3em;
    }
	
	
	.mobile-navigation .navigation-branch.navigation-level2 a.navigation-item-title{   
		background-color:#2577ab;
	}
	.mobile-navigation .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:hover,
	.mobile-navigation .navigation-branch.navigation-level2 > .navigation-item.navigation-level2 > .navigation-item-title:active{
		background-color:#3694c5;
	}
	.mobile-navigation .navigation-item.navigation-level3 a.navigation-item-title{
		background-color:#4da6d7;
	}
	.searchBox.grid_2 > .component-content{
		border-top: 1px solid #3387ad;
		width: 95%;
		padding-top: 1em;
		margin: 0 auto;
	}
	.mobile-navigation .language-selector label{    /*Nilima:12-sept*/
		display: block;
		padding: 0.5em 5% 0.1em;    /*Nilima:13-sept*/
		text-transform: uppercase;
		font-size: 0.875em;
		color: #fff;
		font-family: "Proxima Nova Bold";
	}
	.mobile-navigation ul.navigation-level2 li.navigation-level2 .navigation-item-title{ /* Nilima : 13/09  */	
		margin: 0;
		padding: 0.91em 5% 0.91em 6%;
		border-left: none;
		width: 89%;
		text-transform: uppercase; /* NR - 22-sept-SIT */
	}
	.mobile-navigation .navigation-level2.navigation-item.has-children > .navigation-item-title .navigation-item-decoration{
		 background-position: 86% 0px;   /*Nilima:13-sept*/
         top: 18px;  /* Nilima : 16-sept  */
	}
	.mobile-nav-box .mobile-navigation .language-selector > .component-content > label{
		display:block;
	}
	
	
}

@media only screen and (max-width: 767px) {
 
	/* G2 remove below css 08-03-2016 */
  
/* 	  .box.section.footer-logo-box.component.even.last {
        padding: 0;
    } */
    /* div#footer {
        background: #D8E1E4;
    } */
	
	.mobile-nav-box .mobile-navigation .navigation-branch.navigation-level1.is-open {
		width: 100%;
	}
	
    .box.section.footer-zovirax-fan-box.component.first.odd { /*Pooja 24-09-2016*/
        background: #fff;
        padding: 0;
    }
	
	.page-newsletter-sign-up .box.section.footer-zovirax-fan-box.component.first.odd {/*Pooja 24-09-2016*/
        display:none;
    }
    .box.section.footer-zovirax-fan-box.component > .component-content {
        background: url('../../img/fan-bg-mobile.png') center center no-repeat;
        background-position: 100% 100%;
        background-size: cover;
    }
	
	/* G2 updated  below css 08-03-2016 */
    .box.section.lower-footer-box > .component-content{
        background: url('../../img/share-follow-us-bg-mobile.png') center center no-repeat;
        background-position: 100% 100%;
        background-size: cover;
    }

    #footer .footer-zovirax-fan-box .join-button a {
        width: 86%;
        text-align: center;
    }

    #footer .footer-zovirax-fan-box .zovirax-fan-text p {
        padding: 0;
		font-size:1.28em;
		line-height:1.199em;
		margin: 11.5% 0 0 0;
    }
	#footer .richText.section.join-button p { margin:0; padding:0;}
    #footer .richText.section.join-button.grid_2.component.odd {
        padding:0 10.2%;/*Prashant-Modified-02-09-16*/
		margin-bottom: 11%;
    }
	/* G2 remove below css 08-03-2016 */
    /* .box.section.lower-footer-box.component.even.last {
        border: none;
        padding: 0;
    } */
    .lower-footer-box .footer-link-text ul {
        display: block;
        width: 65%;
        margin: 0 auto;
    }
    .lower-footer-box .footer-link-text ul li {
        width: 135px;
    }
    .lower-footer-box .footer-link-text ul li:nth-child(3) {
        display: inline-block;
    }
    .lower-footer-box .footer-link-text ul li:last-child {
        display: inline-block;
        float: right;
        position: relative;
        top: -3em;
    }

	/* G2 remove below css code 08-03-2016 */
    /* .box.section.footer-followus-box.grid_4.component.odd.last,
    .box.section.footer-share-box.grid_4.component.even,
    .richText.section.footer-link-text.grid_4.alpha.component.first.odd {
        padding: 0.6em 1em 0.6em 2.5em;
        border-bottom: 1px solid #d7d7d7;
    } */
   
    #footer .footer-zovirax-fan-box .join-button .richText-content p a {
        padding:0 15px;
		margin: 0;
		float: none;
		display: block;
		border-radius: 2px;
		height:45px;
		line-height:45px;
    }
	/* G2 remove below css 08-03-2016 */
   /*  #footer .box.section.lower-footer-box.component.even.last {
        position: relative;
        padding-bottom: 6em;
    } */
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .header-box {
        min-height: 2.500em;
        padding-top: 0.5em; /* amar 20 sept */
		display:none; /*pooja 14-10-2016*/
    }
	.mobile-nav-box {
		display: block; 
	}
	.mobile-navigation{
		width: 100%!important;
		margin-left:0 !important;
		height: 4.1em;
	}
	.mobile-nav-box .mobile-navigation .navigation-branch.navigation-level1.is-open{
		top:4.1em;
	}
	.zovirax-logo {
		max-width: 8em!important;
		top: 1em;
		left: 4%;
	}
	.language-selector{
		width: 100%!important;
	}
	.search-box{
		width: 100% !important;
		margin-left: 0 !important;
	}
	.mobile-back-text {
		display: none;
	}
	
	.mobile-navigation .navigation-mobile-menu,
	.mobile-navigation .navigation-mobile-menu.is-open-active{
		float: left;
		left: 21%;
		top: 0.4em;
	}
	 /*pooja 14-10-2016 end*/
    .header-box .buy-now {
        width: 77.4%;
    }
    .header-box .parametrizedhtml.section.language-selector {
        width: 11.42361%;
    }
    .header-nav .nav-txt {
        font-size: 0.875em;
    }
    .header-box .gsk-logo.component {
        margin-top: 0.2em;
    }
    .header-nav .nav-txt-bottom {
        /* font-family: "Proxima Nova bold"; */ /*Pooja 12-10-2016*/
        font-size: 0.875em;
    }
    .header-box .parametrizedhtml.section.language-selector {
        margin-right: 1.4em;
    }
    .main-nav-box { /*pooja 14-10-2016*/
        height: 70px;
		display:none;
    }
    .header-nav .navigation-branch.navigation-level1 {
        padding-top: 1.3em;
    }
    .zovirax-logo {
        margin-top: 1.3em;
    }
    .main-nav-box .section.search-box button {
        background: url("../../img/tablet-search-icon.png") no-repeat center !important;
    }
    .header-nav .navigation-item.navigation-level1 > .navigation-item-title:hover::before ,
	.header-nav .navigation-item.navigation-level1.is-open > .navigation-item-title::before {
        top: 2.9em;
		width:20%;
    } 

	.header-nav .navigation-item.navigation-level2.is-open > .navigation-item-title::after {
		top: 3.9em; 
	}
    .mod-no-touch .header-nav .navigation-item:hover .navigation-branch.navigation-level2 {
        top: 4.3em;
        min-height: 5.813em;
    }

	.footer-logo-box {
		padding: 0 0em 0em 1.5em;
	}
    .footer-zovirax-fan-box .zovirax-fan-text p {  /* amar 17 sept */ /* pooja 28-09-2016 */
        font-size: 1.3em;
        padding: 1.2em 0 1.2em; /* NR 30-sept SIT */
    }

    .footer-zovirax-fan-box .fan-sign-up-box .sign-up-text { /* amar 17 sept */
        padding-top:0; 
    }
    .footer-zovirax-fan-box .sign-up-text input {
        width: 87%;
    }
    .footer-zovirax-fan-box .join-button {  
        padding-top: 2.4em; /* amar 20-oct */
        width: 12.931%;
    }
    .header-nav.component { /* amar 20 sept */
        width: 65%;
    }
	.header-nav .navigation-branch .navigation-level1{
	margin-right:10%; /* Nilima - 05-oct */
	}
    .main-nav-box .section.search-box .form-search .search-query {
        margin-right: 20%;
    }
    .footer-logo-box .footer-logo-text {
        width: 40.94444%;
    }
    .footer-zovirax-fan-box .fan-sign-up-box .sign-up-text p {
        margin-bottom: 0.36em;
    }
    .footer-link-box .footer-zovirax-fan-box { /*Pooja 25-09-2016*/
        padding:1.15em 2.5% 0.4em;
    }
	.page-home  .footer-link-box .footer-zovirax-fan-box { /*Pooja 25-09-2016*/
        padding: 0em 2.5%;
    }
	.header-nav .navigation-item.navigation-level2 > .navigation-item-title { /*Added Pooja 28-07-2016*/
		padding: 1.3em 0.9em 1.3em 0em;
		font-size:0.75em;
	}
	.header-nav .navigation-branch.navigation-level3 > .navigation-item.navigation-level3 > .navigation-item-title
	{
		font-size:0.75em;
	}
	.footer-link-box .lower-footer-box { /* amar 17 sept */
		padding: 0.8em 0 0.5em 1.5em;
	}
.lower-footer-box .footer-link-text ul li{ /* amar 17 sept */
margin:0 0 0.1em 0; /*Pooja 28-09-2016*/
}	
.footer-logo-box{ /* amar 17 sept */
	min-height:0; /*Pooja 1-10-2016*/
}	


.footer-logo-box .footer-logo-text p{ /* amar 17 sept */
margin-top: 1.5em;
margin-bottom: 1.5em; /*Pooja 28-09-2016*/
}
.lower-footer-box .footer-link-text ul li a, .lower-footer-box .footer-link-text ul li .bold-text{ /* amar 17 sept */
font-size:0.75em;
}
.page-newsletter-sign-up .footer-link-box .footer-zovirax-fan-box { /* NR 30-sept SIT */
	min-height: 1em;
}
.footer-link-box .lower-footer-box {
    background-color: #f6f6f6;
}

.header-nav .navigation-item.navigation-level2.is-open:nth-child(n+3) > .navigation-item-title::after {  /* Pooja 12-10-2016 */
    background: url(../../img/down-arrow-sub-menu.png) center center no-repeat;
}	

.header-nav .navigation-item.navigation-level2.is-open:nth-child(n+4) > .navigation-item-title::after {  /* Pooja 12-10-2016 */
    background: url(../../img/down-arrow-sub-menu2.png) center center no-repeat;
}

	.tablet-gsk-logo{float:right; margin-top:-3em;margin-right:2.5%;} /*Pooja 18-10-2016*/

}
@media screen and (max-width: 1024px) {
.lower-footer-box .footer-followus-box{ /* amar 19 sept */
width:17.544%;
}
    .footer-zovirax-fan-box .sign-up-text input {
        width: 87%;
    }
#footer { /* amar 17 sept */
	position:relative;
	top:-1px;
}	
.main-nav-box .zovirax-logo {
    margin-top: 0.6em; /* amar 20 sept */
    margin-left: 3.1% !important;
}	
.header-box .parametrizedhtml.section.language-selector select{ /* amar 20 sept */
	width:140px;
	background: url(../../img/down-arrow.png) 57% 0.6em no-repeat;
}
.main-nav-box .section.search-box{ /* amar 21 sept */
margin-top:1.5em;
width:13%;
}
    .footer-link-box .footer-zovirax-fan-box {
        padding: 1em 2.5%; /* amar 25 sept */
    }
	
	.footer-zovirax-fan-box .sign-up-text input {/*Pooja 28-09-2016*/
		margin-top:0.3em;
	}

}

@media screen and (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
	/*Pooja 28-09-2016*/
.footer-zovirax-fan-box .fan-sign-up-box .sign-up-text p {
    margin-bottom:0;
}
.footer-zovirax-fan-box .zovirax-fan-text p {
    font-size: 1.3em;
    padding: 1.3em 0 1.2em;
}

.page-home .footer-link-box .footer-zovirax-fan-box {
    padding: 0em 2.5% 1em;
}
.footer-zovirax-fan-box .join-button {
    padding-top: 2.5em; /* amar 20-oct */
    width: 12.931%;
}
#footer {
    position: relative;
    top: -1px;
    width: 100%;
    background: #dae1e4;
    border-radius:0 0 32em 0;
}
/*Pooja 28-09-2016*/

}

@media only screen and (max-width: 962px) {  /* amar 20 sept */
.header-nav .navigation-branch .navigation-level1{
margin-right:7%;  /* Nilima - 05-oct */
}
.header-box .parametrizedhtml.section.language-selector select{ /* amar 20 sept */
	width:130px;
	background: url(../../img/down-arrow.png) 57% 0.6em no-repeat;
}
.main-nav-box .zovirax-logo {
    margin-top: 0.8em; /* amar 20 sept */
}
}

@media screen and (max-width: 768px) { /* amar 17 sept */

.lower-footer-box .footer-followus-box{ /* amar 19 sept */
width:24.544%;
}
.header-nav .navigation-branch .navigation-level1{
margin-right:2.2em;
}
.main-nav-box .zovirax-logo{ /* amar 20 sept */
margin-top:1.1em;
}
.header-box .parametrizedhtml.section.language-selector select{ /* amar 20 sept */
	width:110px;
	background: url(../../img/down-arrow.png) 64% 0.6em no-repeat;
}
.main-nav-box .section.search-box{ /* amar 21 sept */
margin-top:1.3em;
}
    .footer-link-box .footer-zovirax-fan-box {
        padding: 0 2.5%; /* amar 25 sept */
    }

}

@media screen and (max-width: 768px) and (min-width: 768px)  {  /* amar 25 sept */
.footer-zovirax-fan-box .fan-sign-up-box .sign-up-text p{
margin-bottom:0;
margin-top:0.36em;
}

 .footer-link-box .footer-zovirax-fan-box { /*Pooja 28-09-2016*/
        padding: 1.15em 2.5% 0.9em; /* NR 30-sept SIT */
    }
	.page-home  .footer-link-box .footer-zovirax-fan-box { /*Pooja 28-09-2016*/
        padding: 0em 2.5%;
    }

#footer { /*Pooja 29-09-2016*/
    margin: 0 auto;
    padding: 0px;
    width: 100%;
    background: url("../../img/footer-tablet-curve.png") right top no-repeat;
	position:relative;
	top:-1px;
}

.page-newsletter-sign-up   #footer { /*Pooja 29-09-2016*/
    background: url("../../img/footer-curve.png") right top no-repeat;
}
}

@media screen and (max-width: 601px) and (min-width: 601px)  { 
.mobile-navigation .navigation-mobile-menu{ border-left: 1px solid white; } /*Pooja 28-09-2016*/
	.outer-product-box.product-landing-box {
		position: relative;
		top: -1px;
	}
}

@media screen and (max-width: 767px) {
/* copy bg css .background: url("../../img/tablet-search-icon.png") no-repeat center !important; */

    .image.section.gsk-logo.grid_1.alpha.component.first.odd {
        display: none;

	}
 #footer { 
	top:0;
}
 #footer .footer-link-text{
        border: none;
        position: absolute;
        top: 9em;
		left: 9.3%;
		right:0;
		width:85%;
		display:none;

    }
.lower-footer-box .footer-link-text ul {     
	width: auto;
    float: left;
	padding:0;
	margin:0;
}
#footer { background:none;}
	#footer .footer-link-box .footer-zovirax-fan-box .zovirax-fan-text,
	#footer .footer-zovirax-fan-box .fan-sign-up-box .sign-up-text	{
		padding:0 10.2%;
		display: block;
	}
	/* G2 remove below css 08-03-2016 */
   /*  #footer {
        background: url("../../img/footer-tablet-curve.png") right top no-repeat;
    } 
    .footer-link-box .lower-footer-box {
        padding: 0.6em 0 0.6em 2.5em;
    }
	*/
    .lower-footer-box .footer-link-text ul li {
        margin: 0 0 0 0;
    }
    .lower-footer-box .footer-link-text ul li a {
        font-size: 0.75em;
    }
    .footer-logo-box {
        min-height: 2em;
		background: url("../../img/footer-bottom-bg-mob.png") right top no-repeat;
		background-size: cover;
		padding:0;
    }
    .footer-logo-box .gsk-logo {
        width: 5.424%;
        margin-top: 0.5em;
    }
    .footer-logo-box.component .footer-logo-text.component p {
        margin: 0 auto;
        text-align: center;
        padding: 0.3em 0 2.1em 0;
    }
   
    .footer-zovirax-fan-box .sign-up-text input {
        width: 86%;
        margin: 0;
		border:1px solid #cdcfd0; 
		border-radius:2px;
		margin: 0;
		display: block;
		padding:12px 15px;
		display:block;
		margin-bottom:16px;
    }
	.footer-zovirax-fan-box .sign-up-text input::-webkit-input-placeholder{
   white-space:normal;
}
.footer-zovirax-fan-box .sign-up-text input::-moz-placeholder{
   white-space:normal;
}
.footer-zovirax-fan-box .sign-up-text input:-ms-input-placeholder{
   white-space:normal;
}
.footer-zovirax-fan-box .sign-up-text input:-moz-placeholder{
   white-space:normal;
}

	
    .footer-link-box .footer-zovirax-fan-box ,
	.page-newsletter-sign-up .footer-link-box .footer-zovirax-fan-box{ /*Pooja 17-09-2016*/
        min-height: 7em;
    }

	.footer-link-box .lower-footer-box {
		padding: 2.1em 7% 0px;
		position:relative;
	}
	/*Nilima:12-sept*/
	.tablet-gsk-logo{display:none;} /*Pooja 18-10-2016*/
}
/*changes for additional navigation: local HU*/
html[lang="hu"] .main-nav-box .header-nav {
	width: 71%;
    padding-left: 1%;
}
html[lang="hu"] .main-nav-box .section.search-box {
	width: 10%;
}
html[lang="hu"] .main-nav-box .section.search-box .form-search .search-query {
	margin-right: 26%;
    max-width: 80%;
}
.notification .notificationFormElement{margin-bottom:15px;}
.notification label{display:inline-block;text-align:right;margin-right:10px;width:200px;}
.notification input[type="text"], .notification textarea, .notification select {display:inline-block;width:200px;}
.notification .btn{margin-top:15px;float:right;}
.notification .notificationSuccessBox, .notificationFailureBox{display:none;}
.notificationSuccessBox, .notificationFailureBox{border:solid 2px #f36633;padding:0 10px 5px 10px;margin-bottom:15px;}
.notification .fixedRecipientNotification input{border:none;width:75%;}
.notification .fixedRecipientNotification label{font-weight:700;}
.notification .btn{
	background-color: #f36633;
    border: 1px solid #d5d1ce;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px;
 }
.pcodeloginpanel .passcodeButton{
	background-color: #f36633;
    border: 1px solid #d5d1ce;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px;
	margin-left:-5px;
}
.pcodeloginpanel input[type=text]{ 
    padding: 4px 0;
}
.pcodeloginpanel .errorPasscode{
		color:#C03;
		margin-top:3px; 
}
.pcodeloginpanel .hidePasscodeError{
display:none;
 }.poll{
 border: 1px solid #D5D1CE;padding:15px;
}
.poll .content-component{
border: solid 0px #D5D1CE;border-top:none;
}
.poll .poll-description, .poll .pollOptionContainer, .pollResultContainer{
padding:0 13px;	
}
.poll .genericPollGroup .button{margin-bottom:15px;} 
.pollResultContainer h2{
font-size:1.4em;
}
.pollResultsContainer h4 span.pollResultValue{
	display:inline-block; 
	background-color:#F36633;
	color:#fff;
	font-size:14px;
	padding:5px 10px; 
}
.poll .pollTitle{ 
    text-align:right;
    margin-right:15px;
}
.poll .genericPollGroup{clear:both}
.poll .pollControl-radio{float: left;margin: 0;padding: 0;width: 21px;}
.poll .pollControl-radio input[type="radio"]{float: left;margin: 2px 2px 0 0;padding: 0;width: 15px;}
.poll .pollControl-radio label{float: left;padding: 1px 0 0;}
.poll button.showPollResult{margin:15px 0 0 0;}
.pollResultsContainer{border-top:solid 1px #e0e0e0;padding-top:10px;margin-top:15px;}
.poll .pollError p{border:solid 1px #e0e0e0;color:#c1056f;padding:10px;font-size:12px;} 
.cfButton{background-color: #F36633;border: 1px solid #D5D1CE;color: #fff;padding: 5px 20px;-webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px;cursor: pointer;display: inline-block;}.powerreviews {
border:solid 1px #e0e0e0;padding:5px 10px 0 10px;margin-bottom:5px;
}
.powerreviews .p-w-r .pr-header-title{
color:#f36633;
}
.powerreviews .p-w-r .pr-star-selected {
    background-color: #f36633;
}
.powerreviews .pr-snapshot-rating .pr-stars {
    background-image: url("../../img/stars.gif");
} 
.powerreviews .pr-review-rating .pr-stars-small, .powerreviews .pr-snippet-stars .pr-stars-small {
    background-image: url("../../img/stars_small.gif");
}
 .powerreviews.pr-base-modal a, .powerreviews .pr-pa-snippet a, .powerreviews .pr-review-engine a, .powerreviews .pr-snippet a, .powerreviews .prImageSnippet a {
    color: #f36633;
}

.questionanswers.hideScoreBox .quizScoreBox, .quizResultBoxContainer{display:none;}
.quizResultBoxContainer.showBoxQuiz{display:block;} 
.quizButton img{cursor:pointer;}

.questionWithCheck{
border:dotted 1px #D5D1CE;	
padding:10px;
}
 
.questionWithRadio .formControl-radio, .questionWithCheck .formControl-radio{
	float: left;
    margin: 0;
    padding: 0;
    width: 21px; 
 }
 .questionWithRadio .genericFormGroup span input[type="radio"], .questionWithCheck .genericFormGroup span input[type="checkbox"] {
    float: left;
    margin: 2px 2px 0 0;
    padding: 0;
    width: 15px;
}
.questionWithRadio .genericFormGroup label, .questionWithCheck .genericFormGroup label{
    float: left;
    padding: 1px 0 0;
    width: auto;
    margin-right: 15px;
    font-size: 12px;
} 
.questionWithRadio .genericFormGroup .quizRadioImg label, .questionWithCheck .genericFormGroup .quizRadioImg label{  
width:100px;
}
.quiz .nextQuestionPage{float:right}
.questionWithRadio .quizScoreBox, .questionWithCheck .quizScoreBox{
border: 1px solid #0F61AF;
background: #fff;
text-align: center;
font-weight: 700;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
padding: 5px;
width: 50px;
height: 15px;
margin-left: 20px;
float: left;
} 
.questionWithRadio .imgContainer, .questionWithCheck .imgContainer{
width: 100%;
float: left; 
}
.questionWithRadio .quizQuestion p, .questionWithCheck .quizQuestion p{
margin:0 0 15px 0;
}

.questionWithRadio .quizScoreBox p, .questionWithCheck .quizScoreBox p{
margin: 0;
font-weight: 700;
font-size: 14px;
}
.quizHideBox{
display: none;
}
.quizOverlayContainer .overlay-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    cursor: pointer;
    z-index: 1000; /* high z-index */
    background: #000; /* fallback */
    background: rgba(0,0,0,0.75);
    text-align: center;
}
.quizOverlayContainer .overlay-content {
     background: none repeat scroll 0 0 #FFFFFF;
    border: 5px solid #D5D1CE;
    border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
    display: inline-block;
    max-width: 90%;
    min-height: 80px;
    min-width: 80px;
    padding: 30px 10px 10px;
    position: relative;
    text-align: left;
    top: 150px;
    } 
.quizOverlayContainer .overlay-close {
    background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0 / 20px auto rgba(0, 0, 0, 0);
    cursor: pointer;
    display: none;
    font-size: 25px;
    height: 20px;
    position: absolute;
    right: 3px;
    top: 5px;
    width: 20px;
    z-index: 9999;
    }
.quizOverlayContainer .close-btn:hover {
        background: #05abe0;
 } 
.questionWithImage{
clear:both;
} 
.quizResultContainer{ 
width: 92%;
}
.questionWithImage .quizQuestion{
border: 2px solid #0F61AF;
background: #D5DCEF;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
padding: 15px 10px 20px 10px;
float: left;
width: 80%;
}
.questionWithImage .quizQuestion p{
font-weight: 700;
line-height: 1.2em;
margin: 10px 0 0 0;
vertical-align: middle;
color: #000000;
}
.questionWithImage .imgContainer{ 
float: left;
width:50%;text-align: center;
} 
.questionWithImage .imgContainer span{
border: 3px solid #78A7D2;
padding: 10px;
height: 36px;
width: 36px;
-webkit-border-radius: 150px;
-moz-border-radius: 150px;
border-radius: 150px;
} 
.questionWithImage .imgContainer img{ 
text-align: center;
vertical-align: bottom;
cursor: pointer;
}
.questionWithImage .quesLeftCaption, .questionWithImage .quesRightCaption{
float: left;
width:25%;
}
 .quizScoreBox{
border: 2px solid #0F61AF;
background: #D5DCEF;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
padding: 5px;
width: 58px;
height: 62px;
margin-left: 20px;
float: left;
}
.quizScoreBox p{
text-align: center;
font-weight: 700;
font-size: 20px;
margin: 0;
color: #000000;
margin-top: 15px;
}

.quizScoreBox.totalScoreBox, .quiz .generateScore{
float: right;
} 
.quiz .button.generateScore{
width: 230px;
padding: 10px;
font-weight: 700;
font-size: 22px;
color:#fff;
background: #0047BD;
}

.quiz .button.generateScoreNewPage{ 
padding: 10px;
font-weight: 700; 
font-size: 12px;
color:#0073BD; 
border:solid 1px #fff;
background: #E4FE98;
}

.quiz.quizWithBGImage{ 
float: left;
}
.quiz.quizWithBGImage .quizQuestionBox{
background-color: #FFF1D0;
padding: 20px;  
width:70%;

}
.quiz.quizWithBGImage .quizQuestionBox h2{
color: #4469A1;
font-size: 40px;
margin-bottom: 0;
}
.quiz.quizWithBGImage .quizQuestionBox p{
font-size: 18px;
color: #5C5D59;
margin: 0;
line-height: 22px;
}

.quizWithBGImage.questionOption1 .quizQuestionOption,
#question3 .quizWithBGImage.questionOption2,
#question3 .quizWithBGImage.questionOption2 .quizQuestionOption
{
height:450px;
}
.quizWithBGImage.questionOption2 .quizQuestionOption, 
.quizWithBGImage.questionOption3 .quizQuestionOption, 
.quizWithBGImage.questionOption4 .quizQuestionOption,
.quizWithBGImage.questionOption5 .quizQuestionOption{
height:225px;
}
.quizWithBGImage.questionOption1,
.quizWithBGImage.questionOption4,
#question3 .quizWithBGImage.questionOption2
{ 
width:50%;
} 
.quizWithBGImage.questionOption2{ 
width:25%;
}
.quizWithBGImage.questionOption3,
#question2 .quizWithBGImage.questionOption3,
#question2 .quizWithBGImage.questionOption4,
#question2 .quizWithBGImage.questionOption5{ 
width:25%;
} 
.quiz.quizWithBGImage .quizQuestionOption{ 
position: relative; 
 
} 
 
.quiz.quizWithBGImage .quizOptionButton{
 position: absolute;
 right: 0;
 bottom:0;
 background: #E2F1F3;
 padding: 17px 25px 17px 25px;
 font-size: 20px;
 border: 0;
 border-radius: 0;
 color: #73A1A7;
}
.quiz.quizWithBGImage .quizOptionButton:focus{
border:dotted 1px #000;
}
.quiz.quizWithBGImage .quizOptionButton span{
background: url("../../img/boxlink-arrow.png") no-repeat right center;
padding-right: 25px;
}
.quizProgressBar {
background: #fff;
border:solid 1px #fff;
padding:20px 0; 
border-color: #fff;
box-shadow: 0 0 10px #9ecaed;
}
.quiz.quizProgressBar .quizProgressBarDots { 
    background-color: #E1E1E1;
    border: 1px solid #E1E1E1;
    border-radius: 18px;
    height: 10px; 
    padding: 5px;
    position: relative;  
}
.quiz.quizProgressBar .quizProgressDots.active {
    background-color: #099696; 
    height: 16px; 
    width: 16px;
    left: 0;
    position: absolute;
    top: 2px;
}
.quiz.quizProgressBar .quizProgressDots.firstactive {
    background-color: #099696; 
    height: 16px; 
    width: 16px; 
    position: absolute;
    top: 2px;
}

.quiz.quizProgressBar .quizProgressDots.progressActive
{
    background-color: #099696; 
    height: 16px; 
    width: 16px; 
    position: absolute;
    top: 2px;
}

.quiz.quizProgressBar .quizProgressDots {
    background-color:#fff;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 12px; 
	box-shadow: none;
	border:0px solid gainsboro;
}
.progressDotActive{
	width: 2%;
	background: #099696;
	height: 10px;  
} 
.quiz.quizProgressBar .quizProgressBarQuestions {
    background-color: #ffffff; 
    padding: 5px;
    position: relative; 
    margin-bottom: 35px;
 }   
.quiz.quizProgressBar .quizProgressBarQuestions .quizProgressBarQuestion{  
    color: #22508E;
    font-size: 24px;
    font-style: normal;
    font-weight: normal; 
    position: absolute;
    top: 2px;
    padding: 0;
    border: none;
    background: none;
    cursor: text;
} 
.quizRadioImg{
float: left;
width: 100px;
}
.questionWithRadio button{
background: #fff;
border:1px solid #fff;
border-radius:0;
float: left;
margin-right: 15px;
}
.questionWithRadio button.optionActive{
border:solid 1px #D5DCEF;
}
.quiz.quizWithBGImage .quizQuestionOption{background-repeat:no-repeat;background-position:left top;}
.hideQuizTotalBox .quizResultContainer{display:none;}
@media only screen and (max-width: 767px) {
 .questionWithCheck .formControl-radio {clear: both;display: block;}
} 
@media only screen and (max-width: 420px) {
	.questionWithRadio .formControl-radio, .questionWithCheck .formControl-radio {clear: both;display: block;float: left;width: 6%;}
	.questionWithRadio .genericFormGroup label, .questionWithCheck .genericFormGroup label {display: block;float: left;width: 50%;}
	.quizRadioImg {width: 100%;}
	.questionWithImage .quizQuestion{width: 60%}
	.quiz.quizProgressBar .quizProgressBarQuestions .quizProgressBarQuestion{font-size: 12px;font-weight: 700;}
	.quiz.quizWithBGImage {width: 100%;display: block;}
	.quiz.quizProgressBar .quizProgressBarQuestions {margin-bottom: 15px;}   
	.quiz.quizWithBGImage .quizQuestionOption{width:100%;display: block;background:no-repeat;background-position:center center;background-attachment:scroll;background-size:100% 100%;}
	.quizWithBGImage.questionOption1,
	.quizWithBGImage.questionOption4,
	#question3 .quizWithBGImage.questionOption2
	{ 
	width:100%;
	} 
	.quizWithBGImage.questionOption2{ 
	width:100%;
	}
	.quizWithBGImage.questionOption3,
	#question2 .quizWithBGImage.questionOption3,
	#question2 .quizWithBGImage.questionOption4,
	#question2 .quizWithBGImage.questionOption5{ 
	width:100%;
	}
	.quiz.quizWithBGImage .quizQuestionOption{width:100%;display: block;}  
	.questionWithImage .quesLeftCaption, .questionWithImage .quesRightCaption, 
	.questionWithImage .imgContainer{display: block;width:100%;}
}
 .ratingsandreviews div.gig-comments-commentList-header-commentsCount,
.ratingsandreviews div.gig-comments-headerLinks{
padding-top:0;
}
.ratingsandreviews a.gig-comments-headerLinks-rss, 
.ratingsandreviews a.gig-comments-headerLinks-rss:hover, 
.ratingsandreviews a.gig-comments-headerLinks-rss:link, 
.ratingsandreviews a.gig-comments-headerLinks-rss:active,
.ratingsandreviews a.gig-comments-headerLinks-rss:visited,
.ratingsandreviews a.gig-comments-headerLinks-subscribe, 
.ratingsandreviews a.gig-comments-headerLinks-subscribe:hover,
.ratingsandreviews a.gig-comments-headerLinks-subscribe:link,
.ratingsandreviews a.gig-comments-headerLinks-subscribe:active, 
.ratingsandreviews a.gig-comments-headerLinks-subscribe:visited,
.ratingsandreviews span.gig-comments-replies-length{
text-decoration: none; 
}
.ratingsandreviews{background:#;padding:20px;border:solid 1px #D5D1CE;}
.ratingsandreviews .gig-rating-writeYourReview, 
.ratingsandreviews a.gig-comments-button, 
.ratingsandreviews a.gig-comments-button:link, 
.ratingsandreviews a.gig-comments-button:active,
.ratingsandreviews a.gig-comments-button:visited,
.ratingsandreviews .gig-rating-writeYourReview:link,
.ratingsandreviews .gig-rating-writeYourReview:active, 
.ratingsandreviews .gig-rating-writeYourReview:visited{
    background: #F36633;
    border: 1px solid #D5D1CE;
    border-radius: 0; 
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    padding: 3px 2px;      
}
.ratingsandreviews a.gig-comments-button.gig-comments-button-vote{
background:none;
padding: 5px;     
}
.ratingsandreviews a.gig-comments-button-post, 
.ratingsandreviews a.gig-comments-button-post:hover, 
.ratingsandreviews a.gig-comments-button-post:link, 
.ratingsandreviews a.gig-comments-button-post:active,
.ratingsandreviews a.gig-comments-button-post:visited, 
.ratingsandreviews a.gig-comments-button-ok, 
.ratingsandreviews a.gig-comments-button-ok:hover, 
.ratingsandreviews a.gig-comments-button-ok:link, 
.ratingsandreviews a.gig-comments-button-ok:active, 
.ratingsandreviews a.gig-comments-button-ok:visited, 
.ratingsandreviews .gig-comments-linksContainer li,
.ratingsandreviews .gig-composebox-post, 
        .gig-composebox-post:hover{
    background: #F36633;
    border: 1px solid #D5D1CE;
    border-radius: 0;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    padding: 2px 3px;
}
.ratingsandreviews .gig-composebox-post{
	padding: 3px 25px;
}
.ratingsandreviews .gig-comments-linksContainer li:after {
   background:none;
}



.ratingsandreviews .gig-comments-rss a:link, 
.ratingsandreviews .gig-comments-rss a:visited, 
.ratingsandreviews .gig-comment-repliesArrow-text{
    color: #fff;
}
.ratingsandreviews a.gig-comments-dropdown, 
.ratingsandreviews a.gig-comments-dropdown:link, 
.ratingsandreviews a.gig-comments-dropdown:active,
.ratingsandreviews a.gig-comments-dropdown:visited{ 
    padding:2px;
    background:none;
}

.ratingsandreviews span.gig-comments-username{color:#F36633;}
.ratingsandreviews div.gig-comments-dottedLine {
    background-image: none;   
    height: 1px;
    border-bottom:1px dotted #D5D1CE;
    margin-top: 5px;
}



.ratingsandreviews .gig-comments-container{width:auto!important;}
.ratingsandreviews div.gig-comments-commentBox-bottom{border-top:none;}
.ratingsandreviews div.gig-comments-comment-body{color:#635A54;}
.ratingsandreviews div.gig-comments-headerText{color: #F36633;font-weight:700;}
.ratingsandreviews textarea.gig-comments-textarea, .ratingsandreviews div.gig-comments-textarea-wrapper{height:180px;}
.ratingsandreviews div.gig-comments-commentBox-bottom{margin-top:10px;}
.ratingsandreviews div.gig-comments-star {background-image: url("../../img/review-and-ratings/star_grey.gif");}
.ratingsandreviews div.gig-comments-star-full,
.ratingsandreviews .gig-comment-rating-star-full, 
.ratingsandreviews .gig-composebox-rating-star-full, 
.ratingsandreviews .gig-selfreview-rating-star-full
{
    background-image: url("../../img/review-and-ratings/Favourite.gif");
}
.ratingsandreviews div.gig-comments-star {width:15px;height:14px;}
.ratingsandreviews div.gig-comments-providerIcons {background-image: url("../../img/review-and-ratings/ButtonLogin_Icons.png");}
.ratingsandreviews div.gig-comments-star-editable, 
.ratingsandreviews div.gig-comments-star-editable-empty, 
.ratingsandreviews div.gig-comments-addComment-ratings-error
.ratingsandreviews div.gig-comments-star-editable-empty,
.ratingsandreviews div.gig-comments-star-myRating {
                    background-image: url("../../img/review-and-ratings/star_icon_big.png"); 
}

.ratingsandreviews .gig-rating-star {
    background-image: url("../../img/review-and-ratings/star_gray_big.png");
}
.ratingsandreviews .gig-rating-star-full,
.ratingsandreviews .gig-selfreview-rating-star.gig-selfreview-rating-star-full{
    background-image: url("../../img/review-and-ratings/star_selected_big.png");
}
.ratingsandreviews .gig-rating-star-half{
background-image: url("../../img/review-and-ratings/Star_half_big.png");
}
.ratingsandreviews div.gig-comments-vote-up, .ratingsandreviews .gig-comment-vote-pos.gig-comment-vote-with-value{
background-image: url("../../img/review-and-ratings/thumbsup_hover.png");
}

.ratingsandreviews div.gig-comments-expand-arrow{
    background-image: url("../../img/review-and-ratings/icon_ExpandReply.png");
}
.ratingsandreviews div.gig-comments-collapse-arrow {
    background-image: url("../../img/review-and-ratings/icon_CollapsReply.png");
    background-position: center center;
    background-repeat: no-repeat;
    display: inline-block;
    height: 13px;
    vertical-align: bottom;
    width: 10px;
}
.ratingsandreviews div.gig-comments-close-icon{
    background-image: url("../../img/review-and-ratings/overlay-close-icon.png");
}

div.gig-comments-star-editable-full, div.gig-comments-star-myRating-full, 
div.gig-comments-addComment-ratings-error div.gig-comments-star-editable-full
{
    background-image: url("../../img/review-and-ratings/star_selected_big.png");
}

.ratingsandreviews div.gig-comments-star-editable-full, 
.ratingsandreviews div.gig-comments-star-myRating-full, 
.ratingsandreviews div.gig-comments-addComment-ratings-error, 
.ratingsandreviews div.gig-comments-star-editable-full, 
.ratingsandreviews .gig-composebox-rating-star.gig-composebox-rating-star-full{
    background-image: url("../../img/review-and-ratings/star_selected_big.png");
}

.ratingsandreviews .gig-rating-readReviewsLink,
.ratingsandreviews .gig-rating-readReviewsLink:link,
.ratingsandreviews .gig-rating-readReviewsLink:active,
.ratingsandreviews .gig-rating-readReviewsLink:visited, 
.ratingsandreviews .gig-rating-readReviewsLink:hover {
	color:#1A768D;text-decoration:none;
}
.ratingsandreviews textarea.gig-comments-textarea{
  background-image:none;
}
.ratingsandreviews .gig-comment{background:#fff;margin-bottom:10px;}

.ratingsandreviews .gig-comment-title, 
.ratingsandreviews .gig-comment-photo, 
.ratingsandreviews .gig-comment-data{padding:5px;}

.ratingsandreviews .reviewPageDetails.hideLikeLink .gig-comment-likeLink, 
.ratingsandreviews .reviewPageDetails.hideLikeLink .gig-comment-vote-posneg,  
.ratingsandreviews .hideCommentReply .gig-comment-replyLink, 
.ratingsandreviews .hideShareButton .gig-comment-shareLink,
.ratingsandreviews .hideOtherComments .gig-comments-comments,  
.ratingsandreviews .hideHeaderBar .gig-comments-header{display:none;}
.readmessage .messageResultContainer ul{padding-left:0;}
.readmessage .messageResultContainer ul li{list-style-type:none;}
.readmessage .messageResultContainer ul li .msgTitle{min-width:130px;display:inline-block;font-size: 12px;}
.readmessage .readmessagaeContent .messageResultContainer ul.messageList li a{
background: #f36633;
    border: 1px solid #d5d1ce;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 5px 20px;
    font-weight:700;    

}
.readmessage .readmessagaeContent .messageResultContainer ul.messageList li.readMessageDone a{
		background: #e0e0e0;
        color:#f36633;
        font-weight:normal;
}
.readMessageOverlayContainer .overlay-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    cursor: pointer;
    z-index: 1000; /* high z-index */
    background: #000; /* fallback */
    background: rgba(0,0,0,0.75);
    text-align: center;
}
.readMessageOverlayContainer .overlay-content {
     background: none repeat scroll 0 0 #FFFFFF;
    border: 5px solid #D5D1CE;
    border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
    display: inline-block;
    width: 40%;
    min-height: 80px;
    min-width: 80px;
    padding: 10px 10px 10px;
    position: relative;
    text-align: left;
    top: 150px;
    } 
.readMessageOverlayContainer .overlay-close {
    background: url("../../img/overlay-close-icon.png") no-repeat scroll 0 0 / 20px auto rgba(0, 0, 0, 0);
    cursor: pointer;
    display: none;
    font-size: 25px;
    height: 20px;
    position: absolute;
    right: 3px;
    top: 5px;
    width: 20px;
    z-index: 9999;
    }
.readMessageOverlayContainer .close-btn:hover {
        background: #05abe0;
 }
