/*
  Theme Name: Avada Child
  Description: Child theme for Avada theme
  Author: ThemeFusion
  Author URI: https://theme-fusion.com
  Template: Avada
  Version: 1.0.0
  Text Domain:  Avada

  CHANGELOG
  14.10.2024, biechele
  - add styles for custom validation of 'email' field
  - add styles for tooltip
*/
/* Keep */
.is-hidden {
    display: none;
}


/* Tooltip font-size in the Avada form */
.fusion-form-tooltip span.fusion-form-tooltip-content {
  font-size: 13px;
}


/* Placeholder color */
input[name="email"]::placeholder {
  color: #999;
}


/* Custom error message box for ../js/custom-form-validation.js */
.custom-error-message {
  position: relative;
  background-color: white;
  color: black;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  text-align: left;
}

.custom-error-message::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.custom-error-message::after {
  content: '';
  position: absolute;
  top: -11px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e0e0e0;
  z-index: -1;
}

