/* MageMe Webforms */
/* Pickadate */
/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  user-select: none;
  outline: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  top: -.25em;
  width: .66em;
  border-top: 3px solid #ee2200;
}
.picker__button--close:before {
  content: "\D7";
  top: -.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}
/* ==========================================================================
   $BASE-TIME-PICKER
   ========================================================================== */
/**
 * The list of times.
 */
.picker__list {
  list-style: none;
  padding: 0.75em 0 4.2em;
  margin: 0;
}
/**
 * The times on the clock.
 */
.picker__list-item {
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin-bottom: -1px;
  position: relative;
  background: #ffffff;
  padding: .75em 1.25em;
}
@media (min-height: 46.75em) {
  .picker__list-item {
    padding: .5em 1em;
  }
}
/* Hovered time */
.picker__list-item:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-color: #0089ec;
  z-index: 10;
}
/* Highlighted and hovered/focused time */
.picker__list-item--highlighted {
  border-color: #0089ec;
  z-index: 10;
}
.picker__list-item--highlighted:hover,
.picker--focused .picker__list-item--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
/* Selected and hovered/focused time */
.picker__list-item--selected,
.picker__list-item--selected:hover,
.picker--focused .picker__list-item--selected {
  background: #0089ec;
  color: #ffffff;
  z-index: 10;
}
/* Disabled time */
.picker__list-item--disabled,
.picker__list-item--disabled:hover,
.picker--focused .picker__list-item--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
  border-color: #dddddd;
  z-index: auto;
}
/**
 * The clear button
 */
.picker--time .picker__button--clear {
  display: block;
  width: 80%;
  margin: 1em auto 0;
  padding: 1em 1.25em;
  background: none;
  border: 0;
  font-weight: 500;
  font-size: .67em;
  text-align: center;
  text-transform: uppercase;
  color: #666;
}
.picker--time .picker__button--clear:hover,
.picker--time .picker__button--clear:focus {
  color: #000000;
  background: #b1dcfb;
  background: #ee2200;
  border-color: #ee2200;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}
.picker--time .picker__button--clear:before {
  top: -.25em;
  color: #666;
  font-size: 1.25em;
  font-weight: bold;
}
.picker--time .picker__button--clear:hover:before,
.picker--time .picker__button--clear:focus:before {
  color: #ffffff;
  border-color: #ffffff;
}
/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.2em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  transform: translateY(0);
  transition: background 0.15s ease-out;
}
/* ==========================================================================
   $DEFAULT-TIME-PICKER
   ========================================================================== */
/**
 * The frame the bounds the time picker.
 */
.picker--time .picker__frame {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The picker box.
 */
.picker--time .picker__box {
  font-size: 1em;
  background: #f2f2f2;
  padding: 0;
}
@media (min-height: 40.125em) {
  .picker--time .picker__box {
    margin-bottom: 5em;
  }
}
/*!
 * Classic picker styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  width: 100%;
}
/**
 * The holder is the base of the picker.
 */
.picker__holder {
  position: absolute;
  background: #ffffff;
  box-sizing: border-box;
  min-width: 176px;
  max-width: 466px;
  max-height: 0;
  display: none;
  transform: translateY(-1em) perspective(600px) rotateX(10deg);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
}
/**
 * The frame and wrap work together to ensure that
 * clicks within the picker don’t reach the holder.
 */
.picker__frame {
  padding: 1px;
}
.picker__wrap {
  margin: -1px;
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  max-height: 25em;
  display: block;
  border-top-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(0) perspective(600px) rotateX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
  box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}
/* ==========================================================================
   $CLASSIC-TIME-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should __NOT__ be styled
 * more than what’s here. Style the `.picker__holder` instead.
 */
.picker--time {
  min-width: 256px;
  max-width: 320px;
}
/**
 * The holder is the base of the picker.
 */
.picker--time .picker__holder {
  background: #f2f2f2;
}
@media (min-height: 40.125em) {
  .picker--time .picker__holder {
    font-size: .875em;
  }
}
/**
 * The box contains the list of times.
 */
.picker--time .picker__box {
  padding: 0;
  position: relative;
}
/*!
 * Styling for RTL (right-to-left) languages using pickadate.js
 */
.rtl {
  /**
   * Switch the direction - only really necessary if
   * it hasn’t already been applied higher up in the DOM.
   */
  /**
   * Flip around the “next” and “previous” buttons.
   */
}
.rtl .picker {
  direction: rtl;
}
.rtl .picker__nav--next {
  right: auto;
  left: -1em;
}
.rtl .picker__nav--prev {
  left: auto;
  right: -1em;
}
.rtl .picker__nav--next:before {
  border-left: 0;
  border-right: 0.75em solid #000000;
}
.rtl .picker__nav--prev:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
/* Fields */
/* Auto-complete */
.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.autocomplete-suggestion {
  position: relative;
  padding: 0 .6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}
.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}
.autocomplete-suggestion.selected {
  background: #f0f0f0;
}
/* Date picker button */
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger {
  background: none;
  -moz-box-sizing: content-box;
  border: 0;
  box-shadow: none;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-shadow: none;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  margin-top: -4px;
  vertical-align: middle;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:focus {
  background: none;
  border: none;
  box-shadow: none;
  outline: 0;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:active {
  background: none;
  border: none;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:hover {
  background: none;
  border: none;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger > span {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger:before {
  background-image: url(../images/calendar.svg);
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  content: ' ';
  speak: none;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
.webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
fieldset[disabled] .webforms-datepicker ._has-datepicker ~ .ui-datepicker-trigger {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
/* Calendar */
.webforms-calendar {
  position: relative;
  width: 100%;
  display: inline-block;
  margin-right: .5rem;
  margin-bottom: .5rem;
}
.webforms-calendar .ui-datepicker-trigger {
  margin-left: -3.2rem;
  height: 2.8rem;
  position: absolute;
  top: .4rem;
  right: .5rem;
}
.webforms-time {
  display: inline-block;
}
.webforms-time .hours {
  display: inline;
  width: 6rem;
}
.webforms-time .minutes {
  display: inline;
  width: 6rem;
}
.multiselect {
  height: auto;
  background-image: none;
}
/* Date of birth */
.customer-dob .webforms-datepicker {
  float: left;
  width: 100%;
}
.customer-dob .dob-month {
  float: left;
  width: 8.5rem;
  width: 6rem;
}
.customer-dob .dob-month input.input-text {
  width: 4.6rem;
}
.customer-dob .dob-day {
  float: left;
  width: 8.5rem;
  width: 6rem;
}
.customer-dob .dob-day input.input-text {
  width: 4.6rem;
}
.customer-dob .dob-year {
  float: left;
  width: 8.5rem;
  width: 14rem;
}
.customer-dob .dob-year input.input-text {
  width: 13.4rem;
}
.customer-dob input.input-text {
  display: block;
  width: 7.4rem;
}
.customer-dob label {
  font-size: 10px;
  font-weight: normal;
  color: #888;
}
/* Select images */
.webforms figcaption {
  padding: 5px 0;
  margin: 5px;
}
.webforms .image_picker_image {
  height: auto;
}
.webforms input[type='radio']:focus {
  outline: none;
  box-shadow: none;
}
.password-container {
  display: flex;
  flex-direction: column;
}
.password-container .mage-error {
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
.password-container .password {
  -ms-flex-order: 0;
  -webkit-order: 0;
  order: 0;
}
.password-container .password-strength-meter {
  height: auto;
}
/* Tooltip */
.ot-content {
  text-align: left;
}
.tooltip-icon {
  background-image: url('../images/tooltip.png');
  background-size: 1.5rem 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0.2rem 0.5rem;
}
/* Star rating */
.stars-bar {
  list-style: none;
  margin: 0px !important;
  padding: 0px !important;
  height: 24px;
  position: relative;
  background: url(../images/stars.svg);
  background-size: 24px;
  background-position: 0 30%;
}
.stars-bar li {
  padding: 0px;
  margin: 0px;
  float: left;
}
.stars-bar li.stars-value {
  background: url(../images/stars.svg);
  position: absolute;
  height: 24px;
  display: block;
  z-index: 1;
  background-size: 24px;
  background-position: 0 64%;
}
.webforms-rating-summary .summary {
  float: left;
  width: 100%;
  padding: 0 5px 10px 5px;
  display: flex;
  align-items: center;
}
.webforms-rating-summary .summary .label,
.webforms-rating-summary .summary .rating-result {
  float: left;
  padding-right: 5px;
}
.br-theme-svg-stars .br-widget {
  height: 28px;
  white-space: nowrap;
}
.br-theme-svg-stars .br-widget a {
  text-decoration: none;
  height: 36px;
  width: 36px;
  float: left;
  font-size: 23px;
  margin-right: 5px;
  background: url(../images/stars.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
}
.br-theme-svg-stars .br-widget a {
  background-position: 50% 0%;
}
.br-theme-svg-stars .br-widget a.br-active {
  background-position: 50% 33%;
}
.br-theme-svg-stars .br-widget a.br-selected {
  background-position: 50% 67%;
}
.br-theme-svg-stars .br-widget .br-current-rating {
  display: none;
}
.br-theme-svg-stars .br-readonly a {
  cursor: default;
}
@media print {
  .br-theme-svg-stars .br-widget a:after {
    color: black;
  }
  .br-theme-svg-stars .br-widget a.br-active:after,
  .br-theme-svg-stars .br-widget a.br-selected:after {
    color: black;
  }
}
/* jQuery steps */
/*
* Steps v1.0.2
* https://github.com/oguzhanoya/jquery-steps
*/
.step-app > .step-steps {
  margin: 0 0 30px 0;
  padding: 0;
  overflow: hidden;
}
.step-app > .step-steps > li {
  list-style: none;
  flex: 1;
  margin-bottom: 10px;
  position: relative;
  display: inline-flex;
}
.step-app > .step-steps > li:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid #ffffff;
  z-index: 100;
}
.step-app > .step-steps > li:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 20px solid #ffffff;
  border-bottom: 20px solid #ffffff;
  border-left: 10px solid transparent;
  z-index: 100;
}
.step-app > .step-steps > li:first-child:before {
  display: none;
}
.step-app > .step-steps > li:last-child a {
  border: none;
}
.step-app > .step-steps > li:last-child:after {
  display: none;
}
.step-app > .step-steps > li > a {
  display: block;
  padding: 10px 20px;
  color: #333;
  background-color: #f4f4f4;
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
}
.step-app > .step-steps > li > a > .number {
  background: #fff;
  padding: 0 8px;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  border-radius: 3px;
  color: #333;
}
.step-app > .step-steps > li > a:hover {
  background-color: #ddd;
}
.step-app > .step-steps > li.active a {
  background-color: #006bb4;
  color: #fff;
}
.step-app > .step-steps > li.error a {
  background-color: #e7505a;
  color: #fff;
}
.step-app > .step-steps > li.done a {
  background-color: #9dc8e2;
  color: #fff;
}
.step-app > .step-content {
  border-top: 0;
}
.step-app > .step-content > .step-tab-panel {
  display: none;
}
.step-app > .step-content > .step-tab-panel.active {
  display: block;
}
.step-app > .step-footer {
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
  border-top: 1px solid #d9d9d9;
  padding-top: 15px;
  overflow: auto;
}
.step-app > .step-footer .primary {
  float: right;
}
.step-app > .step-footer .please-wait {
  margin-right: 15px;
  margin-left: 15px;
  float: right;
}
/* Opentip */
@-moz-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes otloading {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.opentip-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  max-width: 300px;
  z-index: 10000;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  -moz-transition: -moz-transform 1s ease-in-out;
  -o-transition: -o-transform 1s ease-in-out;
  -ms-transition: -ms-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  pointer-events: none;
  -webkit-transform: translateX(0) translateY(0);
  -moz-transform: translateX(0) translateY(0);
  -o-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}
.opentip-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.opentip-container .opentip {
  position: relative;
  font-size: 13px;
  line-height: 120%;
  padding: 9px 14px;
  color: #4f4b47;
  text-shadow: -1px -1px 0px rgba(255, 255, 255, 0.2);
}
.opentip-container .opentip .header {
  margin: 0;
  padding: 0;
}
.opentip-container .opentip .ot-close {
  pointer-events: auto;
  display: block;
  position: absolute;
  top: -12px;
  left: 60px;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
}
.opentip-container .opentip .ot-close span {
  display: none;
}
.opentip-container .opentip .ot-loading-indicator {
  display: none;
}
.opentip-container.ot-fixed.ot-hidden.stem-top.stem-center {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-center {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-center {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-top.stem-right {
  -webkit-transform: translateY(-5px) translateX(5px);
  -moz-transform: translateY(-5px) translateX(5px);
  -o-transform: translateY(-5px) translateX(5px);
  -ms-transform: translateY(-5px) translateX(5px);
  transform: translateY(-5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-right {
  -webkit-transform: translateY(-5px) translateX(5px);
  -moz-transform: translateY(-5px) translateX(5px);
  -o-transform: translateY(-5px) translateX(5px);
  -ms-transform: translateY(-5px) translateX(5px);
  transform: translateY(-5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-right {
  -webkit-transform: translateY(-5px) translateX(5px);
  -moz-transform: translateY(-5px) translateX(5px);
  -o-transform: translateY(-5px) translateX(5px);
  -ms-transform: translateY(-5px) translateX(5px);
  transform: translateY(-5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-right {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-right {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-right {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -o-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-right {
  -webkit-transform: translateY(5px) translateX(5px);
  -moz-transform: translateY(5px) translateX(5px);
  -o-transform: translateY(5px) translateX(5px);
  -ms-transform: translateY(5px) translateX(5px);
  transform: translateY(5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-right {
  -webkit-transform: translateY(5px) translateX(5px);
  -moz-transform: translateY(5px) translateX(5px);
  -o-transform: translateY(5px) translateX(5px);
  -ms-transform: translateY(5px) translateX(5px);
  transform: translateY(5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-right {
  -webkit-transform: translateY(5px) translateX(5px);
  -moz-transform: translateY(5px) translateX(5px);
  -o-transform: translateY(5px) translateX(5px);
  -ms-transform: translateY(5px) translateX(5px);
  transform: translateY(5px) translateX(5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-center {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-center {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-center {
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-bottom.stem-left {
  -webkit-transform: translateY(5px) translateX(-5px);
  -moz-transform: translateY(5px) translateX(-5px);
  -o-transform: translateY(5px) translateX(-5px);
  -ms-transform: translateY(5px) translateX(-5px);
  transform: translateY(5px) translateX(-5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-bottom.stem-left {
  -webkit-transform: translateY(5px) translateX(-5px);
  -moz-transform: translateY(5px) translateX(-5px);
  -o-transform: translateY(5px) translateX(-5px);
  -ms-transform: translateY(5px) translateX(-5px);
  transform: translateY(5px) translateX(-5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-bottom.stem-left {
  -webkit-transform: translateY(5px) translateX(-5px);
  -moz-transform: translateY(5px) translateX(-5px);
  -o-transform: translateY(5px) translateX(-5px);
  -ms-transform: translateY(5px) translateX(-5px);
  transform: translateY(5px) translateX(-5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-middle.stem-left {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-middle.stem-left {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-middle.stem-left {
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -o-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
.opentip-container.ot-fixed.ot-hidden.stem-top.stem-left {
  -webkit-transform: translateY(-5px) translateX(-5px);
  -moz-transform: translateY(-5px) translateX(-5px);
  -o-transform: translateY(-5px) translateX(-5px);
  -ms-transform: translateY(-5px) translateX(-5px);
  transform: translateY(-5px) translateX(-5px);
}
.opentip-container.ot-fixed.ot-going-to-show.stem-top.stem-left {
  -webkit-transform: translateY(-5px) translateX(-5px);
  -moz-transform: translateY(-5px) translateX(-5px);
  -o-transform: translateY(-5px) translateX(-5px);
  -ms-transform: translateY(-5px) translateX(-5px);
  transform: translateY(-5px) translateX(-5px);
}
.opentip-container.ot-fixed.ot-hiding.stem-top.stem-left {
  -webkit-transform: translateY(-5px) translateX(-5px);
  -moz-transform: translateY(-5px) translateX(-5px);
  -o-transform: translateY(-5px) translateX(-5px);
  -ms-transform: translateY(-5px) translateX(-5px);
  transform: translateY(-5px) translateX(-5px);
}
.opentip-container.ot-fixed .opentip {
  pointer-events: auto;
}
.opentip-container.ot-hidden {
  display: none;
}
.opentip-container.ot-loading .ot-loading-indicator {
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  display: block;
}
.opentip-container.ot-loading .ot-loading-indicator span {
  display: block;
  -webkit-animation: otloading 2s linear infinite;
  -moz-animation: otloading 2s linear infinite;
  -o-animation: otloading 2s linear infinite;
  -ms-animation: otloading 2s linear infinite;
  animation: otloading 2s linear infinite;
  text-align: center;
}
.opentip-container.style-dark .opentip {
  color: #f8f8f8;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.opentip-container.style-alert .opentip {
  color: #f8f8f8;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.opentip-container.style-glass .opentip {
  padding: 15px 25px;
  color: #317cc5;
  text-shadow: 1px 1px 8px rgba(0, 94, 153, 0.3);
}
.opentip-container.ot-hide-effect-fade {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.opentip-container.ot-hide-effect-fade.ot-hiding {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.opentip-container.ot-show-effect-appear.ot-going-to-show {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.opentip-container.ot-show-effect-appear.ot-showing {
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.opentip-container.ot-show-effect-appear.ot-visible {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.recaptcha-position-inline {
  clear: both;
  box-sizing: border-box;
  padding: 0 2rem 2rem 0;
  width: 100%;
  float: left;
}
/*
colpick Color Picker / colpick.com
*/
/*Main container*/
.colpick {
  z-index: 9999;
  position: absolute;
  box-sizing: content-box;
  width: 346px;
  height: 170px;
  overflow: hidden;
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  direction: ltr;
  background: #ebebeb;
  border: 1px solid #bbb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  /*Color selection box with gradients*/
  /*Circular color selector*/
  /*Vertical hue bar*/
  /*Hue bar sliding indicator*/
  /*New color box*/
  /*Current color box*/
  /*Input field containers*/
  /*Text field container on focus*/
  /*Field label container*/
  /*Field up/down arrows*/
  /*Submit/Select button*/
}
.colpick .colpick_color {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 156px;
  height: 156px;
  overflow: hidden;
  outline: 1px solid #aaa;
  cursor: crosshair;
}
.colpick .colpick_color_overlay1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 156px;
  height: 156px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')";
  background: -moz-linear-gradient(left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#00ffffff');
}
.colpick .colpick_color_overlay2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 156px;
  height: 156px;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')";
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, #000000));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}
.colpick .colpick_selector_outer {
  background: none;
  position: absolute;
  width: 11px;
  height: 11px;
  margin: -6px 0 0 -6px;
  border: 1px solid black;
  border-radius: 50%;
}
.colpick .colpick_selector_inner {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid white;
  border-radius: 50%;
}
.colpick .colpick_hue {
  position: absolute;
  top: 6px;
  left: 175px;
  width: 19px;
  height: 156px;
  border: 1px solid #aaa;
  cursor: n-resize;
}
.colpick .colpick_hue_arrs {
  position: absolute;
  left: -8px;
  width: 35px;
  height: 7px;
  margin: -7px 0 0 0;
}
.colpick .colpick_hue_larr {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #858585;
}
.colpick .colpick_hue_rarr {
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 7px solid #858585;
}
.colpick .colpick_new_color {
  position: absolute;
  left: 207px;
  top: 6px;
  width: 60px;
  height: 27px;
  background: #f00;
  border: 1px solid #8f8f8f;
}
.colpick .colpick_current_color {
  position: absolute;
  left: 277px;
  top: 6px;
  width: 60px;
  height: 27px;
  background: #f00;
  border: 1px solid #8f8f8f;
}
.colpick .colpick_field {
  position: absolute;
  height: 20px;
  width: 60px;
  overflow: hidden;
  background: #f3f3f3;
  color: #b8b8b8;
  font-size: 12px;
  border: 1px solid #bdbdbd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.colpick .colpick_field input {
  position: absolute;
  right: 11px;
  margin: 0;
  padding: 0;
  height: 20px;
  line-height: 20px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
  text-align: right;
  outline: none;
}
.colpick .colpick_hex_field {
  position: absolute;
  height: 20px;
  width: 60px;
  overflow: hidden;
  background: #f3f3f3;
  color: #b8b8b8;
  font-size: 12px;
  border: 1px solid #bdbdbd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 68px;
  left: 207px;
  top: 121px;
}
.colpick .colpick_hex_field input {
  position: absolute;
  right: 11px;
  margin: 0;
  padding: 0;
  height: 20px;
  line-height: 20px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  color: #555;
  text-align: right;
  outline: none;
  right: 4px;
}
.colpick .colpick_rgb_r {
  top: 40px;
  left: 207px;
}
.colpick .colpick_rgb_g {
  top: 67px;
  left: 207px;
}
.colpick .colpick_rgb_b {
  top: 94px;
  left: 207px;
}
.colpick .colpick_hsb_h {
  top: 40px;
  left: 277px;
}
.colpick .colpick_hsb_s {
  top: 67px;
  left: 277px;
}
.colpick .colpick_hsb_b {
  top: 94px;
  left: 277px;
}
.colpick .colpick_focus {
  border-color: #999;
}
.colpick .colpick_field_letter {
  position: absolute;
  width: 12px;
  height: 20px;
  line-height: 20px;
  padding-left: 4px;
  background: #efefef;
  border-right: 1px solid #bdbdbd;
  font-weight: bold;
  color: #777;
}
.colpick .colpick_field_arrs {
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 21px;
  cursor: n-resize;
}
.colpick .colpick_field_uarr {
  position: absolute;
  top: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #959595;
}
.colpick .colpick_field_darr {
  position: absolute;
  bottom: 5px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #959595;
}
.colpick .colpick_submit {
  position: absolute;
  left: 207px;
  top: 149px;
  width: 130px;
  height: 22px;
  line-height: 22px;
  background: #efefef;
  text-align: center;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #bdbdbd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.colpick .colpick_submit:hover {
  background: #f3f3f3;
  border-color: #999;
  cursor: pointer;
}
/*full layout with no submit button*/
.colpick.colpick_full_ns .colpick_submit {
  display: none;
}
.colpick.colpick_full_ns .colpick_current_color {
  display: none;
}
.colpick.colpick_full_ns .colpick_new_color {
  width: 130px;
  height: 25px;
}
.colpick.colpick_full_ns .colpick_rgb_r {
  top: 42px;
}
.colpick.colpick_full_ns .colpick_hsb_h {
  top: 42px;
}
.colpick.colpick_full_ns .colpick_rgb_g {
  top: 73px;
}
.colpick.colpick_full_ns .colpick_hsb_s {
  top: 73px;
}
.colpick.colpick_full_ns .colpick_rgb_b {
  top: 104px;
}
.colpick.colpick_full_ns .colpick_hsb_b {
  top: 104px;
}
.colpick.colpick_full_ns .colpick_hex_field {
  top: 135px;
}
/*rgbhex layout*/
.colpick.colpick_rgbhex {
  width: 282px;
}
.colpick.colpick_rgbhex .colpick_hsb_h {
  display: none;
}
.colpick.colpick_rgbhex .colpick_hsb_s {
  display: none;
}
.colpick.colpick_rgbhex .colpick_hsb_b {
  display: none;
}
.colpick.colpick_rgbhex .colpick_field {
  width: 68px;
}
.colpick.colpick_rgbhex .colpick_submit {
  width: 68px;
}
.colpick.colpick_rgbhex .colpick_new_color {
  width: 34px;
  border-right: none;
}
.colpick.colpick_rgbhex .colpick_current_color {
  width: 34px;
  left: 240px;
  border-left: none;
}
/*rgbhex layout, no submit button*/
.colpick.colpick_rgbhex_ns .colpick_submit {
  display: none;
}
.colpick.colpick_rgbhex_ns .colpick_current_color {
  display: none;
}
.colpick.colpick_rgbhex_ns .colpick_new_color {
  width: 68px;
  border: 1px solid #8f8f8f;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_r {
  top: 42px;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_g {
  top: 73px;
}
.colpick.colpick_rgbhex_ns .colpick_rgb_b {
  top: 104px;
}
.colpick.colpick_rgbhex_ns .colpick_hex_field {
  top: 135px;
}
/*hex layout*/
.colpick.colpick_hex {
  width: 206px;
  height: 201px;
}
.colpick.colpick_hex .colpick_hsb_h {
  display: none;
}
.colpick.colpick_hex .colpick_hsb_s {
  display: none;
}
.colpick.colpick_hex .colpick_hsb_b {
  display: none;
}
.colpick.colpick_hex .colpick_rgb_r {
  display: none;
}
.colpick.colpick_hex .colpick_rgb_g {
  display: none;
}
.colpick.colpick_hex .colpick_rgb_b {
  display: none;
}
.colpick.colpick_hex .colpick_hex_field {
  width: 72px;
  height: 25px;
  top: 168px;
  left: 80px;
}
.colpick.colpick_hex .colpick_hex_field div {
  height: 25px;
  line-height: 25px;
}
.colpick.colpick_hex .colpick_hex_field input {
  height: 25px;
  line-height: 25px;
}
.colpick.colpick_hex .colpick_new_color {
  left: 9px;
  top: 168px;
  width: 30px;
  border-right: none;
}
.colpick.colpick_hex .colpick_current_color {
  left: 39px;
  top: 168px;
  width: 30px;
  border-left: none;
}
.colpick.colpick_hex .colpick_submit {
  left: 164px;
  top: 168px;
  width: 30px;
  height: 25px;
  line-height: 25px;
}
/*hex layout, no submit button*/
.colpick.colpick_hex_ns .colpick_submit {
  display: none;
}
.colpick.colpick_hex_ns .colpick_current_color {
  display: none;
}
.colpick.colpick_hex_ns .colpick_hex_field {
  width: 80px;
}
.colpick.colpick_hex_ns .colpick_new_color {
  width: 60px;
  border: 1px solid #8f8f8f;
}
/*Dark color scheme*/
.colpick.colpick_dark {
  background: #161616;
  border-color: #2a2a2a;
}
.colpick.colpick_dark .colpick_color {
  outline-color: #333;
}
.colpick.colpick_dark .colpick_hue {
  border-color: #555;
}
.colpick.colpick_dark .colpick_field {
  background: #101010;
  border-color: #2d2d2d;
}
.colpick.colpick_dark .colpick_field input {
  color: #7a7a7a;
}
.colpick.colpick_dark .colpick_hex_field {
  background: #101010;
  border-color: #2d2d2d;
}
.colpick.colpick_dark .colpick_hex_field input {
  color: #7a7a7a;
}
.colpick.colpick_dark .colpick_field_letter {
  background: #131313;
  border-color: #2d2d2d;
  color: #696969;
}
.colpick.colpick_dark .colpick_field_uarr {
  border-bottom-color: #696969;
}
.colpick.colpick_dark .colpick_field_darr {
  border-top-color: #696969;
}
.colpick.colpick_dark .colpick_focus {
  border-color: #444;
}
.colpick.colpick_dark .colpick_submit {
  background: #131313;
  border-color: #2d2d2d;
  color: #7a7a7a;
}
.colpick.colpick_dark .colpick_submit:hover {
  background-color: #101010;
  border-color: #444;
}
/* Image picker */
ul.thumbnails.image_picker_selector {
  overflow: auto;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
ul.thumbnails.image_picker_selector ul {
  overflow: auto;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
ul.thumbnails.image_picker_selector li.group_title {
  float: none;
}
ul.thumbnails.image_picker_selector li {
  margin: 0px 12px 12px 0px;
  float: left;
}
ul.thumbnails.image_picker_selector li .thumbnail {
  line-height: 1px;
  padding: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border-radius: 5px;
}
ul.thumbnails.image_picker_selector li .thumbnail img {
  -webkit-user-drag: none;
}
ul.thumbnails.image_picker_selector li .thumbnail p {
  margin: 10px;
  text-align: center;
}
ul.thumbnails.image_picker_selector li .thumbnail.selected {
  border: 5px solid #08C;
  padding: 0;
}
/* Customer Account */
.webforms-customer-account-form {
  margin-top: 3rem;
  border: 1px solid #eee;
  padding: 2rem;
}
.webforms-customer-account-message {
  background: rgba(255, 212, 96, 0.26);
  padding: 3rem;
}
.block-webforms-form .actions-toolbar {
  margin: 17px 0;
}
/* Customer result action buttons */
.webforms-result-action {
  display: block;
  background: #f5f5f5;
  text-align: center;
  padding: .3rem .1rem;
  margin: .5rem .1rem;
  white-space: nowrap;
  color: #888;
  text-decoration: none;
}
.webforms-result-action:hover {
  text-decoration: none;
  color: white;
  background: #8bc53f;
}
.result-action-delete {
  border-color: red;
}
.result-action-delete:hover {
  background: red;
}
.webforms-results-table .col .id {
  width: 15%;
}
/* Button */
.webforms-popup {
  position: relative;
  background: #FFF;
  padding: 2rem;
  margin: 2rem auto;
  box-sizing: border-box;
  border-radius: .7rem;
}
@media screen and (min-width: 20em) {
  .webforms-popup {
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .webforms-popup {
    width: 90%;
  }
}
@media screen and (min-width: 64em) {
  .webforms-popup {
    width: 60%;
  }
}
.webforms-popup-title {
  line-height: 18px;
  word-wrap: break-word;
  padding: 0 36px;
  margin-top: 1rem;
  text-align: center;
}
/* Form */
.webforms {
  margin-bottom: 1.5rem;
}
.webforms .field {
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}
.webforms .fieldset {
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}
.webforms .captcha-container {
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
  clear: both;
}
.webforms .actions-toolbar {
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
  clear: both;
}
@media (min-width: 768px) {
  .webforms .actions-toolbar {
    display: table;
  }
  .webforms .actions-toolbar.submit-right {
    margin-left: auto;
    padding-right: 0;
  }
  .webforms .actions-toolbar.submit-center {
    margin-left: auto;
    margin-right: auto;
  }
}
.webforms .actions-toolbar .primary button.sbtn-l {
  line-height: 2.2rem;
  font-size: 1.8rem;
}
.webforms .actions-toolbar .primary button.sbtn-xl {
  line-height: 2.8rem;
  font-size: 2.2rem;
}
.webforms .inline-elements .choice {
  display: inline-flex;
}
.webforms-success-text {
  margin-bottom: 2rem;
}
.webforms-below-text {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.webforms-description-text {
  margin-bottom: 4rem;
}
.webforms-fields-comment {
  font-size: 90%;
  clear: both;
  margin-top: 1rem;
}
.please-wait {
  padding-top: 0.5rem;
}
.please-wait .loading-indicator {
  background: #ffffff url(../images/ajax-loader-big.gif) no-repeat;
  background-size: 1.8rem;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: bottom;
  margin-bottom: 0.2rem;
}
/* Grid */
@media screen and (min-width: 20em) {
  .wf-sm-row {
    clear: left;
  }
  .wf-sm-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-sm-1-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-sm-1-2 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-sm-1-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-sm-2-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-sm-1-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-sm-3-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-sm-1-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-sm-1-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 20%;
  }
  .wf-sm-2-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 40%;
  }
  .wf-sm-3-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 60%;
  }
  .wf-sm-4-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 80%;
  }
  .wf-sm-5-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-sm-1-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 8.3333%;
    *width: 8.3023%;
  }
  .wf-sm-2-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-sm-3-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-sm-4-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-sm-5-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 41.6667%;
    *width: 41.6357%;
  }
  .wf-sm-6-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-sm-7-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 58.3333%;
    *width: 58.3023%;
  }
  .wf-sm-8-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-sm-9-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-sm-10-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-sm-11-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 91.6667%;
    *width: 91.6357%;
  }
  .wf-sm-12-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
}
@media screen and (min-width: 48em) {
  .wf-md-row {
    clear: left;
  }
  .wf-sm-row {
    clear: unset;
  }
  .wf-md-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-md-1-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-md-1-2 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-md-1-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-md-2-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-md-1-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-md-3-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-md-1-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-md-1-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 20%;
  }
  .wf-md-2-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 40%;
  }
  .wf-md-3-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 60%;
  }
  .wf-md-4-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 80%;
  }
  .wf-md-5-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-md-1-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 8.3333%;
    *width: 8.3023%;
  }
  .wf-md-2-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-md-3-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-md-4-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-md-5-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 41.6667%;
    *width: 41.6357%;
  }
  .wf-md-6-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-md-7-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 58.3333%;
    *width: 58.3023%;
  }
  .wf-md-8-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-md-9-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-md-10-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-md-11-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 91.6667%;
    *width: 91.6357%;
  }
  .wf-md-12-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
}
@media screen and (min-width: 64em) {
  .wf-lg-row {
    clear: left !important;
  }
  .wf-md-row {
    clear: unset;
  }
  .wf-sm-row {
    clear: unset;
  }
  .wf-lg-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-lg-1-1 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
  .wf-lg-1-2 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-lg-1-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-lg-2-3 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-lg-1-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-lg-3-4 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-lg-1-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 20%;
  }
  .wf-lg-2-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 40%;
  }
  .wf-lg-3-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 60%;
  }
  .wf-lg-4-5 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 80%;
  }
  .wf-lg-1-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-lg-5-6 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-lg-1-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 8.3333%;
    *width: 8.3023%;
  }
  .wf-lg-2-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 16.6667%;
    *width: 16.6357%;
  }
  .wf-lg-3-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 25%;
    *width: 24.9690%;
  }
  .wf-lg-4-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 33.3333%;
    *width: 33.3023%;
  }
  .wf-lg-5-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 41.6667%;
    *width: 41.6357%;
  }
  .wf-lg-6-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 50%;
    *width: 49.9690%;
  }
  .wf-lg-7-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 58.3333%;
    *width: 58.3023%;
  }
  .wf-lg-8-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 66.6667%;
    *width: 66.6357%;
  }
  .wf-lg-9-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 75%;
    *width: 74.9690%;
  }
  .wf-lg-10-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 83.3333%;
    *width: 83.3023%;
  }
  .wf-lg-11-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 91.6667%;
    *width: 91.6357%;
  }
  .wf-lg-12-12 {
    display: inline-block;
    *display: inline;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
    float: left;
    width: 100%;
  }
}
/* Results */
.block-account .webforms-results {
  max-width: 100%;
}
.webforms-results {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  /* Star rating */
}
.webforms-results .webforms-results-block {
  margin-bottom: 4rem;
  float: left;
  width: 100%;
  clear: both;
  background: #f6f6f6;
  padding: 2rem;
  border-radius: 1rem;
  box-sizing: border-box;
}
.webforms-results .webforms-results-block h2 {
  margin: .5rem 0 1rem 0;
  font-size: 24px;
}
.webforms-results .webforms-results-block .webforms-results-fieldset {
  margin-bottom: 4rem;
}
.webforms-results .webforms-results-block .webforms-results-fieldset h3 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
}
.webforms-results .webforms-results-block .webforms-results-field {
  margin-bottom: 2rem;
  width: 100%;
}
.webforms-results .webforms-results-block .webforms-results-field .webforms-results-label {
  font-weight: bold;
  width: 100%;
}
.webforms-results .webforms-results-block .webforms-results-field .webforms-results-value {
  padding: 5px 0;
}
.webforms-results .webforms-results-block .webforms-results-field .webforms-results-value .webforms-image {
  float: left;
  margin-right: 2rem;
}
.webforms-results .webforms-rating-summary {
  margin-bottom: 15px;
}
/* Slide out */
.webform-slide-out-container {
  z-index: 90;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  border-color: darkgray;
  width: 350px;
  margin-bottom: 0;
  height: 60%;
  bottom: 0;
  display: flex;
  border-width: 1px;
  border-style: solid;
  max-width: 90%;
  position: fixed;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
@media (max-height: 768px) {
  .webform-slide-out-container {
    height: 100%;
  }
}
.webform-slide-out-container .webform-slide-out-button {
  z-index: 90;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #1979c3;
  color: white;
  position: absolute;
  padding: 15px 3px;
  white-space: nowrap;
  cursor: pointer;
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
  border-radius: 0 .4rem .4rem 0;
  top: -1px;
}
@media (max-height: 768px) {
  .webform-slide-out-container .webform-slide-out-button {
    top: 45%;
  }
}
.webform-slide-out-container .webform-slide-out-content {
  flex: 1;
  width: 100%;
  overflow: auto;
  padding: 10px 20px;
}
.webform-slide-out-left .webform-slide-out-button {
  border-radius: .4rem 0 0 .4rem;
}
/* Drop-zone */
.drop-zone {
  padding: 2rem .7rem;
  color: #777;
  border: .2em dashed #ddd;
  border-radius: .4rem;
  opacity: .9;
  cursor: pointer;
  min-width: 0;
}
.drop-zone:hover {
  background-color: #f5f5f5;
}
.drop-zone-preview-container {
  margin-bottom: 10px;
}
.drop-zone-label {
  display: inline-block !important;
  vertical-align: top !important;
}
.icon-paperclip {
  background-image: url(../images/paperclip.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 5px;
}
.drop-zone-preview {
  background: #f8f8f8;
  border: .09167rem solid #dadada;
  border-radius: .33333rem;
  color: #999;
  padding: 5px;
  margin-bottom: 5px;
  line-height: inherit;
  position: relative;
  min-width: 0;
}
.drop-zone-attachment {
  overflow: auto;
  height: auto;
  z-index: 2;
  width: 100% !important;
  position: relative;
}
.drop-zone-preview-icon-file {
  padding-right: .66667rem;
  float: left !important;
}
.drop-zone-preview-file {
  width: 70%;
  float: left !important;
}
.drop-zone-preview-filename {
  max-width: 62%;
  color: #333;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-wrap: normal !important;
  white-space: nowrap !important;
  float: left !important;
  vertical-align: top !important;
}
.drop-zone-preview-filename-end {
  color: #333;
}
.drop-zone-preview-size {
  clear: left;
  float: left !important;
}
.drop-zone-error {
  clear: left;
  float: left !important;
  color: red;
}
.drop-zone-preview-icon-close {
  position: absolute;
  top: 50%;
  right: .41667rem;
  margin-top: -2.2rem !important;
  padding-top: 1rem;
  border: 0;
  cursor: pointer !important;
  float: right !important;
}
.drop-zone-preview-icon-close svg {
  fill: #999;
}
.drop-zone-progress {
  position: absolute;
  border-radius: .33333rem;
  background-color: #00ff08;
  opacity: .1;
  height: 100% !important;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
}
.drop-zone-progress-success {
  position: absolute;
  border-radius: .33333rem;
  background-color: #00ff08;
  opacity: .1;
  height: 100% !important;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  opacity: 0;
}
.dropzone-text {
  text-align: center;
}
/* File Renderer */
.webforms-file-pool {
  display: table;
  margin-bottom: 10px;
}
.webforms-file-pool-selectall {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.webforms-file-pool-selectall label {
  color: #888;
}
.webforms-file-cell {
  float: left;
  flex: 1;
  height: auto;
  color: #888;
  display: table-cell;
}
.webforms-file-cell p label {
  color: #888;
}
.webforms-file-cell .webforms-image-box {
  margin-left: 0;
}
.webforms-file-cell .admin__field-complex-content {
  max-width: 100% !important;
}
.webforms-file-link {
  position: relative;
  display: inline-flex !important;
  float: left;
  margin-right: 10px;
  height: auto;
  padding-left: 23px;
  margin-bottom: 7px;
}
.webforms-file-link figure {
  margin: 1em 10px;
}
.webforms-file-link figure p {
  margin: 10px 0 5px 0;
}
.webforms-file-link figure img {
  background: white;
}
.webforms-file-link:before {
  content: "";
  background-image: url(../images/paperclip.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
}
.webforms-file-link-name {
  display: inline-flex;
  max-width: 150px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  word-wrap: normal !important;
  white-space: nowrap !important;
}
.webforms-file-link-name-end {
  display: inline;
}
.webforms-file-link-name-end:before {
  content: "...";
}
.webforms-file-delete-checkbox {
  vertical-align: baseline;
  margin-top: 0 !important;
}
.webforms-image-box {
  background: #efefef;
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 0 10px 10px 0;
  cursor: pointer;
  font-size: 12px;
  border-radius: 2px;
  padding: 2px 15px;
  font-weight: bold;
  white-space: nowrap;
  float: left;
}
.webforms-image-box img {
  max-width: none;
}
.webforms-image-box:hover {
  background: #9e9e9e;
  text-decoration: none;
}
