/*!
Theme Name: DC Theme
Description: Theme for DC Sites
Author: DOJO Creative
Author URI: https://letsgodojo.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: dctheme
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
/* Add your custom styles here */
:root {
  --e-global-color-primary: #010A17;
  --e-global-color-secondary: #015699;
  --e-global-color-text: #FFFFFF;
  --e-global-color-accent: #D3B34E;
  --e-global-color-d08605a: #AB8E32;
  --e-global-color-17264f4: #003E6E;
}

table {
  font-size: 1em;
}

/* Section - Light styles */
:where(.e-con.p-con-light) {
  --pcon-bg: var(--e-global-color-secondary, #ccc);
  --pcon-fg: var(--e-global-color-text, #333);
  background-color: var(--pcon-bg);
  color: var(--pcon-fg);
}

/* Make common text widgets inherit (still overridable per-widget in GUI) */
:where(.e-con.p-con-light) :is(.elementor-heading-title,
.elementor-widget-text-editor,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
blockquote) {
  color: inherit;
}

/* Optional: links follow the text color unless you style them in GUI */
:where(.e-con.p-con-light) a {
  color: inherit;
}

/* Section - Dark (accent) styles */
:where(.e-con.p-con-dark) {
  --pcon-bg: var(--e-global-color-accent, rgb(188, 0, 0));
  --pcon-fg: #fff;
  background-color: var(--pcon-bg);
  color: var(--pcon-fg);
}

/* Make common text widgets inherit (still overridable per-widget in GUI) */
:where(.e-con.p-con-dark) :is(.elementor-heading-title,
.elementor-widget-text-editor,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
blockquote) {
  color: inherit;
}

/* Optional: links follow the text color unless you style them in GUI */
:where(.e-con.p-con-dark) a {
  color: inherit;
}

#legal {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
}
#legal a {
  color: rgba(255, 255, 255, 0.3);
}
#legal svg .d-d {
  fill: rgba(255, 255, 255, 0.3);
}
#legal svg .d-j {
  fill: rgba(255, 255, 255, 0.3);
}

/* Hide required text */
.gform_required_legend {
  display: none;
}

.gform_wrapper .gfield_label, .ginput_container label {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size) !important;
  line-height: var(--e-global-typography-accent-line-height) !important;
}

.gform_wrapper input, .gform_wrapper textarea, .gform_wrapper .ginput_container_select {
  border-radius: 8px !important;
}

.ginput_container_select select, .ginput_container_textarea textarea {
  background: #fff !important;
  border: none !important;
  border-radius: 8px;
}

.gfield--input-type-date .ginput_container_date input {
  width: 100%;
}

/* Submit Button  */
.gform_wrapper input[type=button], .gform_wrapper input[type=submit] {
  font-family: var(--e-global-typography-accent-font-family), Sans-serif !important;
  font-size: var(--e-global-typography-accent-font-size) !important;
  font-weight: var(--e-global-typography-accent-font-weight) !important;
  line-height: var(--e-global-typography-accent-line-height) !important;
  text-transform: uppercase !important;
  background-color: var(--e-global-color-d49ac81) !important;
  border: 2px solid var(--e-global-color-d49ac81) !important;
  border-radius: 8px !important;
  padding: 10px 40px 10px 40px !important;
}

.gform_wrapper input[type=button]:hover, .gform_wrapper input[type=submit]:hover {
  background-color: var(--e-global-color-332724a) !important;
  color: var(--e-global-color-text) !important;
  border-color: var(--e-global-color-332724a) !important;
}