/* 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 94, ../../sass/components/form.scss */
.form {
  /* TWITTER BOOTSTRAP FORM STYLE
  ------------------------------------*/
  /* STATES STYLES
      ------------------------------------*/
  /* ARROW BUTTON STYLES 
     -----------------------------------*/
}
/* line 96, ../../sass/components/form.scss */
.form .form-heading {
  display: block;
  color: #323131;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
}
/* line 103, ../../sass/components/form.scss */
.form form {
  margin: 0 0 20px;
}
/* line 107, ../../sass/components/form.scss */
.form fieldset {
  background-color: #e1e1e1;
  border: solid 2px #323131;
  padding: 13px;
  margin: 15px 0;
  min-width: 0;
}
/* line 115, ../../sass/components/form.scss */
.form legend {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  padding: 0 5px;
}
/* line 122, ../../sass/components/form.scss */
.form fieldset legend {
  display: table;
  white-space: normal;
  margin-right: 10px;
}
/* line 132, ../../sass/components/form.scss */
.form label,
.form input,
.form button,
.form select,
.form textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  max-width: 100%;
}
/* line 139, ../../sass/components/form.scss */
.form textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
  min-width: 200px;
}
/* line 148, ../../sass/components/form.scss */
.form input,
.form button,
.form select,
.form textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/* line 152, ../../sass/components/form.scss */
.form label {
  display: block;
  margin-bottom: 5px;
}
/* line 160, ../../sass/components/form.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;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
/* line 174, ../../sass/components/form.scss */
.form input,
.form textarea,
.form .uneditable-input {
  width: 206px;
}
/* line 178, ../../sass/components/form.scss */
.form fieldset textarea {
  resize: vertical;
  width: 100%;
}
/* line 183, ../../sass/components/form.scss */
.form textarea {
  height: auto;
}
/* line 190, ../../sass/components/form.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -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 200, ../../sass/components/form.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;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-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 209, ../../sass/components/form.scss */
.form input + .help-block,
.form select + .help-block,
.form textarea + .help-block,
.form .uneditable-input + .help-block {
  margin-top: 10px;
}
/* line 217, ../../sass/components/form.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.scss */
.form input[type="radio"],
.form input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px                  \9;
  *margin-top: 0;
  line-height: normal;
}
/* line 239, ../../sass/components/form.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.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 252, ../../sass/components/form.scss */
.form select {
  width: 220px;
  background-color: white;
  border: 1px solid #cccccc;
}
/* line 259, ../../sass/components/form.scss */
.form select[multiple],
.form select[size] {
  height: auto;
}
/* line 264, ../../sass/components/form.scss */
.form .uneditable-input,
.form .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 272, ../../sass/components/form.scss */
.form .uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}
/* line 277, ../../sass/components/form.scss */
.form .uneditable-textarea {
  width: auto;
  height: auto;
}
/* line 287, ../../sass/components/form.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 291, ../../sass/components/form.scss */
.form .form-actions {
  padding-left: 180px;
}
/* line 295, ../../sass/components/form.scss */
.form .hide {
  display: none;
}
/* line 300, ../../sass/components/form.scss */
.form .radio,
.form .checkbox {
  min-height: 20px;
  padding-left: 20px;
}
/* line 306, ../../sass/components/form.scss */
.form .radio input[type="radio"],
.form .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -22px;
}
/* line 311, ../../sass/components/form.scss */
.form .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}
/* line 317, ../../sass/components/form.scss */
.form .controls:first-child {
  *padding-left: 180px;
}
/* line 323, ../../sass/components/form.scss */
.form .controls > .radio:first-child,
.form .controls > .checkbox:first-child {
  padding-top: 5px;
}
/* line 328, ../../sass/components/form.scss */
.form .radio.inline,
.form .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
/* line 336, ../../sass/components/form.scss */
.form .radio.inline + .radio.inline,
.form .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
/* line 342, ../../sass/components/form.scss */
.form input,
.form textarea,
.form .uneditable-input {
  margin-left: 0;
}
/* line 346, ../../sass/components/form.scss */
.form .controls-row {
  *zoom: 1;
}
/* line 349, ../../sass/components/form.scss */
.form .controls-row:before, .form .controls-row:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 354, ../../sass/components/form.scss */
.form .controls-row:after {
  clear: both;
}
/* line 364, ../../sass/components/form.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 372, ../../sass/components/form.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 379, ../../sass/components/form.scss */
.form .control-label {
  word-break: break-all;
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
  line-height: normal;
}
/* line 390, ../../sass/components/form.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 394, ../../sass/components/form.scss */
.form .control-group.warning input, .form .control-group.warning select, .form .control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-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 399, ../../sass/components/form.scss */
.form .control-group.warning input:focus, .form .control-group.warning select:focus, .form .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -moz-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 408, ../../sass/components/form.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 412, ../../sass/components/form.scss */
.form .control-group.error input, .form .control-group.error select, .form .control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-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 417, ../../sass/components/form.scss */
.form .control-group.error input:focus, .form .control-group.error select:focus, .form .control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-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 426, ../../sass/components/form.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 430, ../../sass/components/form.scss */
.form .control-group.success input, .form .control-group.success select, .form .control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-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 435, ../../sass/components/form.scss */
.form .control-group.success input:focus, .form .control-group.success select:focus, .form .control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -moz-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 444, ../../sass/components/form.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 448, ../../sass/components/form.scss */
.form .control-group.info input, .form .control-group.info select, .form .control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-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 453, ../../sass/components/form.scss */
.form .control-group.info input:focus, .form .control-group.info select:focus, .form .control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -moz-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 465, ../../sass/components/form.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"] {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
/* line 473, ../../sass/components/form.scss */
.form input:focus:invalid,
.form textarea:focus:invalid,
.form select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}
/* line 480, ../../sass/components/form.scss */
.form input:focus:invalid:focus,
.form textarea:focus:invalid:focus,
.form 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 486, ../../sass/components/form.scss */
.form .help-block,
.form .help-inline {
  color: #595959;
}
/* line 490, ../../sass/components/form.scss */
.form .help-block {
  display: block;
  margin-bottom: 0;
}
/* line 495, ../../sass/components/form.scss */
.form .help-inline {
  display: inline-block;
  *display: inline;
  padding-left: 5px;
  vertical-align: middle;
  *zoom: 1;
}
/* line 503, ../../sass/components/form.scss */
.form .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}
/* line 508, ../../sass/components/form.scss */
.form .control-group:before, .form .control-group:after {
  display: table;
  line-height: 0;
  content: "";
}
/* line 513, ../../sass/components/form.scss */
.form .control-group:after {
  clear: both;
}
/* line 519, ../../sass/components/form.scss */
.form legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}
/* line 524, ../../sass/components/form.scss */
.form .radio input[type="radio"] {
  width: 20px;
  float: none;
  vertical-align: baseline;
  margin-top: 0;
  margin-bottom: 0;
}
/* line 532, ../../sass/components/form.scss */
.form .radio .radio-label-text {
  line-height: 13px;
  vertical-align: baseline;
}
/* line 541, ../../sass/components/form.scss */
.form .button-arrow-left button,
.form .button-arrow-right button {
  position: relative;
  box-shadow: none;
  height: 28px;
  overflow: visible;
}
/* line 548, ../../sass/components/form.scss */
.form .button-arrow-left button {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 20px;
}
/* line 555, ../../sass/components/form.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.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 575, ../../sass/components/form.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 586, ../../sass/components/form.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.scss */
.form .button-arrow-left button:hover:after,
.form .button-arrow-right button:hover:after {
  background-color: #939191;
}

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

/* IE STYLES
    ------------------------------------*/
/* line 621, ../../sass/components/form.scss */
.lt-ie9 .form fieldset {
  position: relative;
  margin: 10px;
}
/* line 626, ../../sass/components/form.scss */
.lt-ie9 .form fieldset legend {
  position: relative;
  top: -0.7em;
  left: 0.5em;
  margin-right: 20px;
}
/* line 633, ../../sass/components/form.scss */
.lt-ie9 .form fieldset legend span {
  display: block;
  width: 100%;
}
/* line 638, ../../sass/components/form.scss */
.lt-ie9 .form .input-focus-border-fix {
  border-color: #52a8ec;
}
/* line 642, ../../sass/components/form.scss */
.lt-ie9 .form .button {
  border: 1px solid #656363;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}
/* line 650, ../../sass/components/form.scss */
.lt-ie9 .form .button-arrow-left button:after,
.lt-ie9 .form .button-arrow-right button:after {
  position: static;
  border: none;
  display: inline;
}
/* line 656, ../../sass/components/form.scss */
.lt-ie9 .form .button-arrow-left button:before {
  content: "<<";
  padding-right: 5px;
}
/* line 661, ../../sass/components/form.scss */
.lt-ie9 .form .button-arrow-right button:after {
  content: ">>";
  padding-left: 5px;
}

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

/* MEDIA QUERIES
    ------------------------------------*/
@media only screen and (max-width: 767px) {
  /* line 696, ../../sass/components/form.scss */
  .form .radio input[type="radio"] {
    height: 14px;
  }
  /* line 700, ../../sass/components/form.scss */
  .form .control-group {
    margin-bottom: 10px;
  }
  /* line 704, ../../sass/components/form.scss */
  .form .checkboxField .control-label {
    float: left;
  }
  /* line 708, ../../sass/components/form.scss */
  .form .control-label {
    float: none;
    width: 160px;
    padding-top: 5px;
    text-align: left;
  }
  /* line 715, ../../sass/components/form.scss */
  .form .controls {
    margin-left: 0;
  }
  /* line 719, ../../sass/components/form.scss */
  .form .help-block {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 239px) {
  /* line 732, ../../sass/components/form.scss */
  .form input,
  .form textarea,
  .form .uneditable-input {
    width: 200px;
  }
  /* line 736, ../../sass/components/form.scss */
  .form select {
    width: 200px;
  }
}
/* NO JS STYLES
    ------------------------------------*/
/* line 749, ../../sass/components/form.scss */
.no-js .clearButton {
  display: none;
}
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.hidden-password-field {
  display: none; }

.gigya-screen .default-submit-button input[type=submit] {
  background-color: #f36633; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/html.scss */
.html .hints a {
  float: left;
  margin-right: 5px;
}
.addthis_horizontal_follow_toolbox.followbar {
position: absolute;
margin-left: -2px;
bottom: 163px;
}

.addthis_horizontal_follow_toolbox.followbar_de_tw {
position: absolute;
margin-left: -2px;
bottom: 175px;
}
/*++Arpit*/
.addthis_horizontal_follow_toolbox.followbar_de_at {
position: absolute;
margin-left: 1px;
bottom: 174px;
}
/*--Arpit*/

.followtext {
color: #a4a4a4;
font-family: Arial;
font-size: 12px;
position: relative;
top: 12px;
}

@media all and (max-width: 960px) and (min-width: 768px){
.addthis_horizontal_follow_toolbox.followbar {
bottom: 180px; padding-left:2px;
}
/*++Arpit*/
.addthis_horizontal_follow_toolbox.followbar_de_at {
position: absolute;
margin-left: 1px;
bottom: 196px;
}
/*--Arpit*/
.addthis_horizontal_follow_toolbox.followbar_de_tw {
bottom: 190px; padding-left:2px;
}
.followtext { padding-left:2px;}
}

@media all and (max-width: 767px) and (min-width: 321px){
/*++Arpit*/
.addthis_horizontal_follow_toolbox.followbar_de_at {
position: absolute;
margin-left: 12px;
bottom: 252px;
}
/*--Arpit*/
.addthis_horizontal_follow_toolbox.followbar, .addthis_horizontal_follow_toolbox.followbar_de_tw {
margin-left: 12px;
bottom: 0px;
position: static;
}
.navigation-footer .navigation-branch.navigation-level1{ margin-top:0px;}
}

@media only screen and (max-width: 320px) {
/*++Arpit*/
.addthis_horizontal_follow_toolbox.followbar_de_at {
position: absolute;
margin-left: 13px;
bottom: 368px;
}
/*--Arpit*/
.addthis_horizontal_follow_toolbox.followbar{
bottom: 368px;
position:absolute; 
margin-left:13px;
}
.addthis_horizontal_follow_toolbox.followbar_de_tw{
bottom: 360px;
position:absolute; 
margin-left:13px;
}
.navigation-footer .navigation-branch.navigation-level1{
  margin-top:17px;
}
}
.blue-button {
  width: auto;
  min-height: 42px;
  margin: 0;
  padding: 12px 31px;
  font-size: 22px;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: #fff;
  border-radius: 21px;
  box-sizing: border-box;
  background: #00a3db;
  background-color: rgb(0, 163, 219);
  background-image: none;
  background-color: #009dd6;
  background-image: -webkit-linear-gradient(top, #009dd6, #0178b7);
  background-image: linear-gradient(to bottom, #009dd6, #0178b7);
  display: block;
  text-align: center;
}/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/image.scss */
.image .right {
  text-align: right;
}

/* line 7, ../../sass/components/image.scss */
.image .left {
  text-align: center;
}

/* line 11, ../../sass/components/image.scss */
.image .middle {
  text-align: center;
}

.footer-banner-img{
margin-bottom: 30px;
padding-top: 14px;
}

.flag-image{
height:30px;
}

.flag-image a{
color:#004890;
text-decoration:none;
}

.flag-image a:hover{
color:#004890;
text-decoration:underline;
}



.overlay-right-half, .overlay-half-left {
    width: 170px !important;
	position: relative;
    right: 18px;
    top: 25px;
}


.overlay-half-left .flag-image p, .overlay-right-half .flag-image p{
    float:right;
	color:#235189;
    right: 35px;
    position: relative;
    top: -32px;
	font-size:12px;
}

.overlay-half-left .flag-image img, .overlay-right-half  .flag-image img{
	left: 70px;
    position: relative;
} 

.quizBannerOption{
box-shadow: 0px 7px 9px rgba(50, 50, 50, .58);
margin-bottom: 20px;
}

.pronamel-center-link1{
margin-left: 0px !important;
}

.pronamel-center-link1, .pronamel-center-link2{
margin-top: 35px;
margin-bottom: 35px;
}

  .pronamel-center-link3{
margin-top: 35px;
margin-bottom: 75px;
}

.france-contact-us{
  float:left;
  margin:15px;
}

@media only screen and (max-width: 767px) {
  /* line 16, ../../sass/components/image.scss */
  .image .component-content {
    text-align: center;	
  }
  .pronamel-center-link3{
margin-top: 35px;
margin-bottom:105px;
}
.yourpronamel-center-image1 {padding: 30px 0px 25px 5px!important;float:left!important;width: 23.40426%!important;margin-left:3%!important;}
.yourpronamel-center-image2 {padding: 30px 0px 25px 5px!important;float:left!important;width: 23.40426%!important;}
.yourpronamel-center-image3 {padding: 30px 0px 25px 5px!important;float:left!important;width: 23.40426%!important;}
.yourpronamel-center-image4 {padding: 30px 0px 25px 5px!important;float:left!important;width: 23.40426%!important;}
.yourpronamel-center-image1 .component-content{width:75%!important;}
.yourpronamel-center-image2 .component-content{width:75%!important;}
.yourpronamel-center-image3 .component-content{width:75%!important;}
.yourpronamel-center-image4 .component-content{width:75%!important;}
}

.footer-banner-image{
height:213px;
}
.component.footer-banner-image h1{
position: relative;
left: 504px;
top: -166px;
color: #235189;
font-family: Flux-regular;
font-size: 48px;
font-weight: normal;
}

.component.footer-banner-image h3{
position: relative;
left: 452px;
top: -160px;
color: white;
font-family: Flux-Regular;
font-size: 23px;
font-weight: normal;
}

.component.footer-banner-image h3 a{
color:white;
}

.component.footer-banner-image p{
position: relative;
left: 450px;
top: -177px;
font-size: 12px;
font-family: HelveticaNeueW01-55Roma;
}

.betterprotected-footer-banner{
margin-bottom: -157px;
padding-top: 35px;
}

.effects-of-acid-wear-images p{
text-align: left;
padding-left: 15px;
padding-top: 0px;
margin-top: 0px;
}

.yourpronamel-center-image1{
padding: 30px 0px 25px 30px;
}

.yourpronamel-center-image2{
padding: 20px 0px 28px 10px;
}

.yourpronamel-center-image2 p{
margin-top: 32px;
}

.yourpronamel-center-image3{
padding: 40px 0px 28px 14px;
}

.yourpronamel-center-image3 p{
margin-top: 46px;
width: 138px;
margin-left: 35px;
}

.yourpronamel-center-image4{
padding: 40px 0px 37px 14px;
}

.yourpronamel-center-image4 p{
margin-top: 36px;
width: 148px;
margin-left: 29px;
}

.acid-truth-divider-image{
width: 760px;
padding-left: 100px;
}

.pronamel-logo .left{
text-align: left;
height:61px; /*kartik image*/
}

.pronamel-logo-japan .left{
text-align: left;
height:61px;
}

.effects-of-acid-wear-images .left{
text-align: left;
}

.pronamel-footer-logo .left{
text-align: right;
margin-bottom: -24px;
}

@media all and (max-width: 960px) and (min-width: 768px){ 

.pronamel-footer-logo .left{
text-align: right;
margin-bottom: 10px;
padding-right: 13px;
}

.pronamel-footer-logo{
float:right;
}
   .pronamel-center-link1{width: 100% !important; margin-bottom:0px;}
   .pronamel-center-link2{width: 100% !important; margin-bottom:0px; margin-left:0px !important;}
   .pronamel-center-link3{width: 100% !important;margin-left:0px !important; margin-bottom:105px;}

.france-contact-us{
margin-left:0px;
}
.france-better-protected-image1{
 width: 97% !important;
 margin-top: 0px;
}
/*Arpit Belgium(French)*/
.better-protected-image1-belgium-french{
 width: 97% !important;
 margin-top: 0px;
}
/*Arpit Belgium(French)*/
.better-protected-image1{
 width: 97% !important;
 margin-top: -52px;
}
.poland-better-protected-image1{
 width: 97% !important;
 margin-top: 0px;
}
.better-protected-image1-austria{

 width: 97% !important;
 margin-top: 0px;
}
.better-protected-image2{
width: 97% !important;
margin-top: 10px;
margin-bottom:20px;
}

.overlay-half-left {
    right: -14px;
}
.overlay-right-half{
    padding-bottom:10px;
	right:-10px;
}
}

@media all and (max-width: 767px) and (min-width: 321px){
.quizBannerOption{width: 95%;margin-left: auto;margin-right: auto;}

.pronamel-footer-logo{
float:right;
}

.pronamel-footer-logo .left{
 margin-bottom: 10px;
    margin-right: 14px;
    margin-top: -39px;
    text-align: right;
}
/*
.component.footer-banner-image h1{
left: 404px;
top: -130px;
font-size: 30px;
}

.component.footer-banner-image h3{
left: 356px;
top: -109px;
font-size: 15px;
}

.component.footer-banner-image p{
left: 356px;
top: -133px;
font-size: 7px;
}  */

.footer-banner-img{
margin-bottom: 62px;
}

.betterprotected-footer-banner{
height:402px;
}  

.acid-truth-divider-image{
padding-left: 0px;
}

.overlay-half-left, .overlay-right-half{
right: -10px;
}

}


@media only screen and (max-width: 320px) {

.overlay-half-left .flag-image p, .overlay-right-half .flag-image p{right:47px;}
.quizBannerOption{width: 90%;margin-left: auto;margin-right: auto;}

.pronamel-footer-logo .left{
margin-right: 14px;
margin-top: -92px;
text-align: right;
margin-bottom:50px;
}
.footer-banner-img{
margin-bottom: 15px;
}
.pronamel-center-link3{
 margin-bottom:80px;
}
/*
.footer-banner-image{
height:106px;
}

.component.footer-banner-image h1{
position: relative;
left: 172px;
top: -59px;
color: #235189;
font-family: Flux-regular;
font-size: 15px;
font-weight: normal;
}

.component.footer-banner-image p{
position: relative;
left: 153px;
top: -68px;
font-size: 4px;
font-family: HelveticaNeueW01-55Roma;
}

.component.footer-banner-image h3 {
position: relative;
left: 161px;
top: -64px;
color: white;
font-family: Flux-Regular;
font-size: 8px;
font-weight: normal;
}
*/
.acid-truth-divider-image{

padding-left: 0px;
width:300px;
}
.better-protected-image1 .component-content {
width: 260px;
padding-left: 22px;
margin-top: -53px;
} 


  
.betterprotected-footer-banner{
margin-bottom: -50px;
}

.effects-of-acid-wear-images p {
    font-size: 9px;   
    padding-left:0px;	
}

.yourpronamel-center-image1{width:29%!important;}
.yourpronamel-center-image2{width:25%!important;}
.yourpronamel-center-image3{width:22%!important;padding-top:23px!important;}
.yourpronamel-center-image4{width:23%!important;}
.yourpronamel-center-image1 .component-content{width:84%!important;}
.yourpronamel-center-image2 .component-content{width:85%!important;}
.yourpronamel-center-image3 .component-content{width:85%!important;}
.yourpronamel-center-image4 .component-content{width:70%!important;}

.yourpronamel-center-image1 .component-content img{width:44%!important;}
.yourpronamel-center-image2 .component-content img{width:28%!important;}
.yourpronamel-center-image3 .component-content img{width:53%!important;}
.yourpronamel-center-image4 .component-content img{width:56%!important;}
.yourpronamel-center-image3 p{margin-top:17px!important;}
.yourpronamel-center-image3{margin-top:10px;}

.overlay-half-left, .overlay-right-half{
left: 4px;
width: 185px !important;
}
}


/**** New Country Selector Component ***/

.overlay-right-half-new, .overlay-half-left-new {
    width: 156px !important;
	position: relative;
    right: -8px;
    top: 25px;
}

.overlay-half-left-new .flag-image-new p, .overlay-right-half-new .flag-image-new p{
    float:left;
	color:#235189;
    left: 25px;
    position: relative;
    top: -32px;
	font-size:12px;
	text-align:left;
	width:100px;
}

.overlay-half-left-new .flag-image-new img, .overlay-right-half-new  .flag-image-new img{
	left: -70px;
    position: relative;
} 

@media all and (max-width: 960px) and (min-width: 768px){

.overlay-half-left-new {
    right: -14px;
}
.overlay-right-half-new{
    padding-bottom:10px;
	right:-10px;
}
.france-better-protected-image1{
 width: 97% !important;
 margin-top: 0px;
 
}
/*Arpit Belgium(France)*/
.better-protected-image1-belgium-french{
 width: 97% !important;
 margin-top: 0px;
 
}
/*Arpit Belgium(France)*/
.poland-better-protected-image1{
 width: 97% !important;
 margin-top: 0px;
 
}
 .better-protected-image1-austria{

 width: 97% !important;
 margin-top: 0px;
}
}
@media all and (max-width: 767px) and (min-width: 321px){
.overlay-half-left-new, .overlay-right-half-new{
right: -10px;
}
}

@media only screen and (max-width: 320px) {

.overlay-half-left-new .flag-image-new p, .overlay-right-half-new .flag-image-new p{right:47px;}
.overlay-half-left-new, .overlay-right-half-new{
left: 4px;
width: 185px !important;
}
}

.flag-image-new{
height:30px;
}


.flag-image-new a{
color:#004890;
text-decoration:none;
}

.flag-image-new a:hover{
color:#004890;
text-decoration:underline;
}

.country-selector-footer-image{
	margin-left:10px;
	margin-right:10px;
}

.country-selector-footer-image img
{
	width:297px !important;
}

.country-selector-footer-image .left, .country-selector-footer-image .middle {
	text-align:left;
}

.country-selector-header-image
{
	margin-top:10px;
	width:168px !important;
}

.country-selector-header-image .left
{
	text-align:right;
}

@media only screen and (max-width:767px) {
.country-selector-header-image .left
{
	text-align:center;
}
}

/*Changes for country selector page || VKA || Infosys*/

.page-country-selector-new .main [class*="grid_"] .country-selector-title{
	margin-left: 4%;
}

.page-country-selector-new .country-selector-title p {
	border-left: 1px solid lightGrey;
	padding-left: 10px;
	font-family: flux-bold;
	font-size: 16px;
}

.page-country-selector-new .country-selector-title2	
{
	font-family: flux-bold;
	font-size: 16px;
}

.page-country-selector-new .country-selector-side-image {margin-top:-49px;}

.page-country-selector-new .overlay-right-half-new,.page-country-selector-new .overlay-half-left-new {
	width: 275px !important;
}

.page-country-selector-new .overlay-half-left-new .flag-image-new p,.page-country-selector-new .overlay-right-half-new .flag-image-new p {
	left: 100px !important;
	width: 140px !important;
}

.page-country-selector-new .country-selector-footer-image img {
	width: 100% !important;
	max-width: 750px !important;
	display: block;
	margin: 15px auto 0px;
}

.page-country-selector-new #footer.main {
  display: none;
}

@media only screen and (max-width:960px) {
	.page-country-selector-new .country-selector-title {display:none !important;}
	.page-country-selector-new .country-selector-side-image {display:none !important;}
	.page-country-selector-new .country-selector-title2 {
		background: none repeat scroll 0 0 #235189;
		color: white !important;
		margin: 0px auto !important;
		text-align: center !important;
	}
	.page-country-selector-new .overlay-right-half-new, .page-country-selector-new .overlay-half-left-new {width: 45% !important;}
	.page-country-selector-new .overlay-half-left-new .flag-image-new p, .page-country-selector-new .overlay-right-half-new .flag-image-new p {left: 40% !important;}
	.page-country-selector-new .country-selector-title2 p{
		margin-top: 5px;
		margin-bottom: 5px;
	}
}

@media only screen and (min-width:961px) {
	.page-country-selector-new .pronamel-logo{position:relative;left:14px;}
	.page-country-selector-new .country-selector-footer-image {display:none !important;}
	.page-country-selector-new .footer {display:none !important;}
	.page-country-selector-new .country-selector-title2 p{
		margin-top: 10px;
		margin-bottom: 15px;
		margin-left: 20%;
	}
	.page-country-selector-new #content.main {
		background-repeat: no-repeat;
		background-image: url("/content/dam/global/pronamel/images/pronamel_country_selctor_background.jpg");
	}
}

@media only screen and (max-width: 767px) {
.page-country-selector-new .overlay-right-half-new,.page-country-selector-new .overlay-half-left-new {width: 90% !important;}
.page-country-selector-new .overlay-half-left-new .flag-image-new p,.page-country-selector-new .overlay-right-half-new .flag-image-new p {left: 45% !important;}
}

@media only screen and (min-width:321px) and (max-width:360px){
	.page-country-selector-new .pronamel-logo{
		left: 34% !important;
	}
}

@media only screen and (min-width:361px) and (max-width:480px){
	.page-country-selector-new .pronamel-logo{
		left: 36% !important;
	}
}

@media only screen and (min-width:481px) and (max-width:568px){
	.page-country-selector-new .pronamel-logo{
		left: 39% !important;
	}
}

@media only screen and (max-width:320px){
	.page-country-selector-new .pronamel-logo{
		margin-bottom: 0px !important;
	}
}

/** End || VKA || Infosys**/
/*UKIM20008429837*/

.Proglasur-desktop {
	position: relative;
	width: 100%;
	margin: 0 auto;
	float:left;
}

.Proglasur-mobile {
	display: none;
}

.nl-merk-proglasur {
	float:left;
	margin:25px 0 10px 0 ;
}

@media only screen and (max-width: 768px) {
	.nl-vertical-divider .component-content {
	display: none;
}
}/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/image.gallery.scss */
.imageGallery {
  border: solid 2px #323131;
  padding: 13px;
  background-color: #e1e1e1;
}

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

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

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

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

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

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

/* line 45, ../../sass/components/image.gallery.scss */
.imageGallery-arrow,
.imageGallery-arrow.is-disabled:hover {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  cursor: pointer;
  width: 35px;
  height: 60px;
  background-position: 50%;
  background-repeat: no-repeat;
  font: 0/0 serif;
}

/* line 57, ../../sass/components/image.gallery.scss */
.imageGallery-description {
  margin: 15px 0;
}

/* line 61, ../../sass/components/image.gallery.scss */
.imageGallery-arrow.is-disabled {
  opacity: 0.5;
}

/* line 65, ../../sass/components/image.gallery.scss */
.imageGallery-arrow-left:hover {
  background-image: url(../../img/arrow-big-left-hover.png);
}

/* line 69, ../../sass/components/image.gallery.scss */
.imageGallery-arrow-right:hover {
  background-image: url(../../img/arrow-big-right-hover.png);
}

/* line 74, ../../sass/components/image.gallery.scss */
.imageGallery-arrow-left,
.imageGallery-arrow-left.is-disabled:hover {
  left: 0;
  background-image: url(../../img/arrow-big-left.png);
}

/* line 80, ../../sass/components/image.gallery.scss */
.imageGallery-arrow-right,
.imageGallery-arrow-right.is-disabled:hover {
  right: 0;
  background-image: url(../../img/arrow-big-right.png);
}

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

/* line 97, ../../sass/components/image.gallery.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 117, ../../sass/components/image.gallery.scss */
.imageGallery-thumbnail:hover,
.imageGallery-thumbnail.is-active {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 122, ../../sass/components/image.gallery.scss */
.imageGallery-thumbnail-cover {
  display: block;
  max-width: none;
}

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

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

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

/* line 146, ../../sass/components/image.gallery.scss */
.imageGallery-thumbnail-overlay {
  opacity: 0.7;
  background: url(../../img/smallplay.png) no-repeat scroll left top transparent;
  height: 28px;
  left: 50%;
  margin: -14px 0 0 -15px;
  position: absolute;
  top: 50%;
  width: 30px;
  cursor: pointer;
}

/* line 158, ../../sass/components/image.gallery.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 167, ../../sass/components/image.gallery.scss */
.imageGallery-thumbnail a {
  display: block;
}

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

/* line 178, ../../sass/components/image.gallery.scss */
.imageGallery-view {
  cursor: pointer;
}

/* line 182, ../../sass/components/image.gallery.scss */
.imageGallery-view-overlay {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73px;
  height: 69px;
  margin: -34px 0 0 -36px;
  background: url(../../img/bigplay.png) no-repeat;
  cursor: pointer;
  -moz-transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  -ms-transition: opacity .5s;
  transition: opacity .5s;
}

/* line 199, ../../sass/components/image.gallery.scss */
.imageGallery.is-playing .imageGallery-view-overlay {
  background: url(../../img/bigpause.png) no-repeat center center transparent;
}

/* line 203, ../../sass/components/image.gallery.scss */
.imageGallery .gallery-play {
  color: #323131;
}

/* line 207, ../../sass/components/image.gallery.scss */
.imageGallery-view:hover .imageGallery-view-overlay {
  opacity: 0.7;
}

/* line 211, ../../sass/components/image.gallery.scss */
.imageGallery-view .imageGallery-view-overlay:hover {
  opacity: 1;
  text-decoration: none;
}

/* line 217, ../../sass/components/image.gallery.scss */
.js .imageGallery-thumbnail {
  padding: 0;
}
/* line 221, ../../sass/components/image.gallery.scss */
.js .imageGallery-thumbnails {
  overflow: hidden;
  position: relative;
}

/*no js view*/
/* line 229, ../../sass/components/image.gallery.scss */
.no-js .imageGallery-view {
  display: none;
}

/* line 233, ../../sass/components/image.gallery.scss */
.no-js .imageGallery-list {
  margin: 0;
}

/* line 237, ../../sass/components/image.gallery.scss */
.no-js .imageGallery-thumbnail img {
  width: auto;
  height: auto;
}

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

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

/* line 256, ../../sass/components/image.gallery.scss */
.no-js .imageGallery-arrow {
  display: none;
}
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* all other colors*/
/* BUTTONS
----------------------------------*/
.locationfinder input[type=text] {
  font-family: arial;
  font-size: 12px;
  border: 1px solid #D5D1CE;
  display: inline;
  float: left;
  height: 12px;
  padding: 8px;
  width: 27%; }
  @media only screen and (max-width: 767px) {
    .locationfinder input[type=text] {
      width: 60%;
      margin-bottom: 20px; } }

.locationfinder .button {
  padding: 8px;
  background-image: url(../../img/Search-icon.png);
  background-repeat: no-repeat;
  border: none;
  margin-right: 20px;
  width: 30px;
  height: 30px; }
  @media only screen and (max-width: 767px) {
    .locationfinder .button {
      margin-right: 24%;
      margin-bottom: 20px; } }

.locationfinder .locationFinder-selectOption {
  width: 7%;
  border: 1px solid #D5D1CE;
  height: 30px;
  margin-left: 10px;
  margin-right: 20px; }
  @media only screen and (max-width: 767px) {
    .locationfinder .locationFinder-selectOption {
      width: 20%;
      margin-left: 0px;
      margin-right: 15px; } }

.locationfinder .locationFinder-selectOption1 {
  height: 30px;
  margin-left: 15px;
  width: 15%; }
  @media only screen and (max-width: 767px) {
    .locationfinder .locationFinder-selectOption1 {
      width: 40%;
      margin-left: 0px; } }

.locationfinder .locationFinder-loadMore .loadMore {
  background-color: #f36633;
  border-radius: 3px;
  color: white;
  padding: 8px 20px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block; }
  .locationfinder .locationFinder-loadMore .loadMore:hover {
    background-color: #939191;
    color: white; }
  .locationfinder .locationFinder-loadMore .loadMore:active {
    background-color: #939191;
    color: white; }
/* COLOR NAMES
----------------------------------------- */
/*theme colors*/
/*hard-coded colors*/
/* FUNCTIONAL COLORS
----------------------------------------- */
/*border colors*/
/*text colors*/
/*background colors*/
/*gradient colors*/
/* line 3, ../../sass/components/map.scss */
.map-canvas {
  border: solid 2px #323131;
  margin-bottom: 10px;
  text-align: center;
}

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

/* line 14, ../../sass/components/map.scss */
.no-js .map-canvas img {
  width: 100%;
  max-width: 640px;
}

