/* Admin */
.eae-elements-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
}
.eae-ele-content-wrapper {
  background-color: white;
  padding: 20px 0;
}
.eae-headBar {
  background-color: #ffffff;
  padding: 10px;
  margin-left: -20px;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.eae-headBar .eae-logo {
  width: 50%;
  text-align: left;
  display: inline-flex;
  padding: 15px 0 15px 25px;
  font-size: 20px;
}
.eae-headBar .eae-menu {
  width: 50%;
  justify-content: flex-end;
  padding-right: 10px;
  display: inline-flex;
  font-size: 16px;
}
.eae-btn-save-setting {
  padding: 7px 15px;
  border-radius: 20px;
  background-color: #4996c3;
  border-color: #4996c3;
  color: white;
  font-size: 18px;
}
.eae-btn-save-setting:hover {
  background-color: white;
  border-color: #4996c3;
  color: #4996c3;
  cursor: pointer;
}
.eae-btn-save-setting:focus {
  outline: none;
}
.eae-btn-save-setting:disabled {
  color: #666666;
  background-color: #fff;
  border-color: #666666;
  cursor: default;
}
.eae-setting-tabs {
  position: relative;
}
.loading.eae-setting-tabs::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
}
.eae-setting-tabs .eae-tab-configuration {
  border-left: 1px solid #dcdede !important;
}
.eae-setting-tabs .components-tab-panel__tabs button {
  border: 1px solid #dcdede;
  border-left: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
}
.eae-setting-tabs .components-tab-panel__tabs button:focus {
  outline: none;
}

.eae-setting-tabs .components-tab-panel__tabs .eae-active {
  border-bottom-color: white;
}

.eae-save-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px;
}

/* Gmap Page */
.eae-gmap-wrapper {
  background-color: white;
  padding: 20px;
}

/* Checkbox with Animated Marker */

.cb-item_animated-marker,
.cb-item_animated-marker *,
.cb-item_animated-marker *::before,
.cb-item_animated-marker *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cb-item_animated-marker {
  position: relative;
  display: block;
  min-width: 25%;
  width: 100%;
  max-width: 280px;
  padding: 10px;
  --cb_text-color: #333;
  --cb_bg-color: #f6f8f9;
  --cb_bg-color_checked: #05c096;
  --cb_border-color: #ccc;
  --cb_marker-bg-color: #fff;
}

@supports (
  (max-width: -webkit-max-content) or (max-width: -moz-max-content) or
    (max-width: max-content)
) {
  .cb-item_animated-marker {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.cb-item_input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.cb-item_animated-marker .cb-item_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px 20px;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  color: #333;
  color: var(--cb_text-color);
  background-color: #f6f8f9;
  background-color: var(--cb_bg-color);
  border: 1px solid;
  border-color: #ccc;
  border-color: var(--cb_border-color);
  border-radius: 25px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.cb-item_animated-marker .cb-item_label-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cb-item_animated-marker .cb-item_marker {
  position: relative;
  display: inline-block; /* Needs for IE10 */
  width: 30px;
  height: 30px;
  margin-left: 25px;
  background-color: #fff;
  background-color: var(--cb_marker-bg-color);
  border: 1px solid;
  border-color: #ccc;
  border-color: var(--cb_border-color);
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.cb-item_marker_short-line,
.cb-item_marker_long-line {
  position: absolute;
  overflow: hidden;
  height: 3px;
  background-color: transparent;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.cb-item_marker_short-line {
  top: 11px;
  left: 6px;
  width: 10px;
  -webkit-transform: rotate(44.5deg);
  transform: rotate(44.5deg);
}

.cb-item_marker_long-line {
  top: 19px;
  left: 12px;
  width: 17px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cb-item_marker_short-line::before,
.cb-item_marker_long-line::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #05c096;
  background-color: var(--cb_bg-color_checked);
  -webkit-transform: translateX(-110%);
  transform: translateX(-110%);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

/* Checkbox with Animated Marker :checked State */

.cb-item_animated-marker .cb-item_input:checked + .cb-item_label {
  color: #fff;
  background-color: #05c096;
  background-color: var(--cb_bg-color_checked);
}

.cb-item_animated-marker .cb-item_input:checked + .cb-item_label,
.cb-item_animated-marker
  .cb-item_input:checked
  + .cb-item_label
  .cb-item_marker {
  border-color: transparent;
}

.cb-item_animated-marker
  .cb-item_input:checked
  + .cb-item_label
  .cb-item_marker_short-line::before,
.cb-item_animated-marker
  .cb-item_input:checked
  + .cb-item_label
  .cb-item_marker_long-line::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.cb-item_marker_long-line::before,
.cb-item_animated-marker
  .cb-item_input:checked
  + .cb-item_label
  .cb-item_marker_short-line::before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.cb-item_marker_short-line::before,
.cb-item_animated-marker
  .cb-item_input:checked
  + .cb-item_label
  .cb-item_marker_long-line::before {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}

/* Checkbox with Animated Marker :disabled State */

.cb-item_animated-marker .cb-item_input:disabled + .cb-item_label {
  cursor: default;
  color: #ccc;
  color: var(--cb_border-color);
}

/* Checkbox with Animated Marker :disabled:checked State */

.cb-item_animated-marker .cb-item_input:disabled:checked + .cb-item_label {
  background-color: #f6f8f9;
  background-color: var(--cb_bg-color);
}

.cb-item_animated-marker .cb-item_input:disabled:checked + .cb-item_label,
.cb-item_animated-marker
  .cb-item_input:disabled:checked
  + .cb-item_label
  .cb-item_marker {
  border-color: #ccc;
  border-color: var(--cb_border-color);
}

.cb-item_animated-marker
  .cb-item_input:disabled:checked
  + .cb-item_label
  .cb-item_marker_short-line::before,
.cb-item_animated-marker
  .cb-item_input:disabled:checked
  + .cb-item_label
  .cb-item_marker_long-line::before {
  background-color: #ccc;
  background-color: var(--cb_border-color);
}

/* END Checkbox with Animated Marker */

/* Product Page */
.eae-products-wrapper {
  background-color: white;
  padding: 20px;
}
.eae-products-wrapper .eae-product-title {
}
.eae-products-wrapper .eae-ae-buttons a {
  display: inline-block;
  margin-right: 10px;
  text-decoration: none;
  padding: 10px 15px;
  background: #5cc4b6;
  color: #fff;
  border-radius: 3px;
}
.eae-products-wrapper .eae-ae-buttons a.ae-demo {
  background: #667eea;
}
.eae-products-wrapper .eae-product-content-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.eae-products-wrapper .eae-product-content {
  width: 50%;
}
.eae-products-wrapper .eae-product-logo {
  width: 50%;
}

a.eae-notice-link span.dashicons {
  text-decoration: none;
  margin: 0px 5px;
}
a.eae-notice-link {
  padding: 0px;
}

.fv-add-box {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
.fv-add-box .fv-logo {
  margin-right: 10px;
}
.fv-add-box .fv-logo svg {
  width: 60px;
}

.fv-logo.fv-hide-logo {
  display: none;
}
.fv-add-content {
  display: flex;
  width: 70%;
}
.fv-add-content div {
  align-self: center;
}
.fv-download {
  text-decoration: none;
  background: #0073aa;
  padding: 10px;
  color: #fff;
  border-radius: 2px;
}
.fv-download:hover {
  text-decoration: none;
  background: #0073aa;
  padding: 10px;
  color: #fff;
  border-radius: 2px;
}
