.guest-grouping {
	padding-bottom: 22px !important;
}

#bee-plugin-loader-pbar-bg {
	border-radius: 50%;
    border-top-color: #0068a6;
    height: 80px;
    width: 80px
}

#bee-plugin-loader-pbar-fg {
	display: none;
}


.bee-form-row .bee-field  select[multiple] {
	background-image: none !important;
}

[class*="bee-field-single-ckbox"] {
	display: flex !important;

}

.bee-row .bee-block .bee-form-row [class*="bee-field-single-ckbox"] input[type=checkbox]  {
	top: 8px !important;
}

.bee-form .bee-form-row {
    margin-bottom: 12px;
}
.bee-form-choices-wrapper>label {
    margin-bottom: 4px
}

.bee-form-choices-wrapper .bee-form-options-horizontal-orientation-wrapper {
    display: grid !important;
    grid-template-columns: 50% 50%;
    align-items: center;
    grid-gap: 2px;
}

.bee-form .bee-form-row .bee-field:not([class*="bee-field-single-ckbox"]) .bee-form-option-wrapper {
    margin-bottom: 12px;
}

.bee-field.bee-inline-field input[type=checkbox] {
    top: 4px !important;
}

.bee-form .bee-form-row .bee-field .bee-form-choices-wrapper .bee-form-option-wrapper>label {
    line-height: 1.4;
}

.bee-form-row.bee-form-row-multicolumn {
    display: flex;
    flex-wrap: wrap
}

.bee-field.bee-field-guest-type,
.bee-field.bee-field-guest-name {
    width: 100%;
    flex: none !important
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.bee-field input::placeholder {
    color: rgba(85, 85, 85, .77) !important;
}

.bee-field textarea.udf-field {
	min-height: 76px !important;
}

/* Autocomplete work - Sidney */
.autocomplete-container {
  position: relative;
  width: 100%;
  font-family: Arial, sans-serif;
}

.autocomplete-container input[type="text"] {
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  color: #333;
}

.autocomplete-container .suggestions {
  position: absolute;
  color: #333;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.autocomplete-container .suggestion {
  padding: 6px;
  cursor: pointer;
}

.autocomplete-container .suggestion:hover,
.autocomplete-container .suggestion.active {
  background-color: #eee;
}