.elementor-55717 .elementor-element.elementor-element-b0e2604 > .elementor-container{max-width:1200px;}.elementor-55717 .elementor-element.elementor-element-b0e2604{margin-top:100px;margin-bottom:100px;}@media(max-width:767px){.elementor-55717 .elementor-element.elementor-element-b0e2604{padding:10% 10% 10% 10%;}}/* Start custom CSS for section, class: .elementor-element-b0e2604 */.form-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    align-items: stretch; /* Ensures that child elements stretch to the height of the container */
}

.form-left {
    flex-basis: calc(50% - 10px); /* 50% width with some space between */
    margin-right: 20px; /* Space between columns */
    display: flex;
    flex-direction: column; /* Arrange children vertically */
}

.form-right {
    flex-basis: calc(50% - 10px); /* 50% width with some space between */
    flex: 1; /* take up all available space in the right column */
    display: flex;
    flex-direction: column;
    justify-content: center; /* center content vertically */
    align-items: stretch; /* Ensures it matches the height of the form-left */
}

.form-block {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    border: 1px solid #000;
    margin-bottom: 20px;
}

.input-with-symbol {
    display: flex;
    align-items: center;
    width: 100%; /* Full width for flexibility */
    padding: 8px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-top: 10px;
}

.input-with-symbol .currency-symbol {
    font-weight: bold;
    padding: 0 5px; /* Adjusted padding to make it shorter */
}

.input-with-symbol input[type="number"],
.input-with-symbol input[type="text"] {
    flex: 1;
    border: none;
    padding: 8px 5px; /* Adjusted padding to match currency symbol */
    font-size: 16px;
    outline: none;
    font-weight: bold;
}

#currencySelect {
    width: 250px; /* Adjust width of currency dropdown */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #000;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin-left: 20px;
    appearance: none; /* Remove default appearance */
    -webkit-appearance: none; /* Remove default appearance for webkit browsers */
    padding-right: 30px; /* Adjusted right padding for dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); /* Custom arrow icon */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Positioning the arrow icon */
    cursor: pointer; /* Add pointer cursor */
    font-family: 'Aeonik', sans-serif; /* Set font to Aeonik */
}

.output-block {
    flex: 1; /* take up all available space */
    padding: 20px;
    background-color: #7500ff;
    border-radius: 8px;
    color: black;
    margin: 0; /* Remove margin for the full-width right column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensure it matches the height of form-left */
}

.output-block p {
    font-size: 18px;
    margin: 0;
    color:#fff;
    text-align: center; /* Center text for better readability */
    font-family: 'Aeonik', sans-serif; /* Set font to Aeonik */
}

#ctaButtons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-family: 'Aeonik', sans-serif; /* Set font to Aeonik */
}

#ctaButtons a#Button1 {
    background-color: white;
    color: #7500ff;
    border-radius: 30px; /* Adjust the radius as needed */
    border: 1px solid #7500ff; /* Purple outline */
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    margin: 0 10px;
    font-size: 16px;
}

#ctaButtons a#Button2 {
    background-color: transparent;
    color: white;
    border-radius: 30px; /* Adjust the radius as needed */
    border: 1px solid white; /* White outline */
    padding: 10px 20px;
    text-decoration: none;
    cursor: pointer;
    margin: 0 10px;
    font-size: 16px;
}

#ctaButtons a#Button1:hover {
    background-color: #E3CCFF;
    color: #7500ff;
    border-color: white;
}

#ctaButtons a#Button2:hover {
    background-color: #E3CCFF;
    color: #7500ff;
    border-color: white;
}

#totalSavingsResult {
    font-size: 50px; /* Bigger font size */
    color: #fff; /* White color */
    font-weight: bold; /* Make text bold */
    font-family: 'Aeonik', sans-serif; /* Set font to Aeonik */
}

.per-location {
    font-family: 'Aeonik', sans-serif; /* Replace 'Aeonik' with the actual font family name */
    /* Additional styling as needed */
}

/* Media query for mobile devices */
@media (max-width: 768px) {/* End custom CSS */