/*
Theme Name: Hello Elementor Child Theme
Template: hello-elementor
Theme URI: https://www.amrsoftec.com
Author: the AMR Softec team
Author URI: https://www.amrsoftec.com
Description: Hello Elementor Child Theme Developed By AMR Softec Team.
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
.elementor-message.elementor-message-danger {
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 10px;
    font-weight: 600;
    background: #ffffff;
    padding: 5px;
    border: solid 1px;
    border-radius: 5px;
}
.image-overlap-icon .elementor-icon {
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}
.calculator-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}
.calculator-panel {
    background:rgb(255 255 255 / 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(248, 250, 252, 0.2);
    padding: 2rem;
    backdrop-filter: blur(14px);
}
.calculator-panel .form-group {
    margin-bottom: 1.75rem;
}
.calculator-panel .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5f5;
    display: block;
    margin-bottom: 0.5rem;
}
.calculator-panel .toggle {
    width: 3.2rem;
    height: 2rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: #334155;
    display: flex;
    align-items: center;
    transition: background 0.25s 
ease;
}
.calculator-panel .toggle-knob {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    background: #f9fafb;
    box-shadow: 0 10px 15px rgba(15, 23, 42, 0.5);
    transform: translateX(0);
    transition: transform 0.25s 
ease;
}
.calculator-panel .bill-row {
    display: flex;
    align-items: center;
    gap: 1rem;
	  margin-top:18px;
}
.calculator-panel .bill-value {
    font-size: 1.7rem;
    font-weight: 700;
    width: 4rem;
	  color:#fff;
}
#billRange::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #eab308;
  border: 2px solid #fefce8;
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.3);
}

#billRange::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #eab308;
  border: 2px solid #fefce8;
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.3);
}
.calculator-panel #billRange {
    flex: 1;
    appearance: none;
    height: 10px;
    border-radius: 999px;
    background: #334155;
    cursor: pointer;
    border: none;
    padding: 0;
}
.calculator-panel .toggle.on .toggle-knob {
    transform: translateX(1.2rem);
}
.calculator-panel .toggle.on {
    background: #eab308;
}
.calculator-panel .label-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.calculator-panel .label-toggle span {
    font-size: 1rem;
    font-weight: 600;
    color: #f9fafb;
}
.calculator-panel .form-helper {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.4rem;
}
.calculator-panel .env-box {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(250, 204, 21, 0.5);
    background: rgba(250, 204, 21, 0.18);
    color: #fefce8;
}
.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.calculator-results .savings-card {
    background: linear-gradient(to bottom right, #eab308, #f97316);
    border-radius: 1.5rem;
    padding: 2rem;
    color: #111827;
    box-shadow: 0 25px 35px rgba(15, 23, 42, 0.4);
    transform: translateY(0);
    transition: transform 0.25s 
ease;
}
.calculator-results .savings-main {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.calculator-results  .results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.calculator-results .result-box {
	background: #1e293b;
	border-radius: 1.2rem;
	border: 1px solid #334155;
	padding: 1.4rem;
}
.calculator-results .result-box h4 {
    margin: 0 0 0.3rem;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}
.calculator-results .result-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f9fafb;
}
.calculator-results .result-sub {
    margin: 0.2rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}
.calculator-results .savings-card .savings-sub {
    margin-bottom: 0;
    margin-top: 10px;
}
.calculator-results .savings-card h3 {
    margin: 0px 0px 10px 0px;
}
.calculator-results .results-note {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}