.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-4301 .elementor-element.elementor-element-95885fe{--display:flex;--padding-top:50px;--padding-bottom:150px;--padding-left:0px;--padding-right:00px;}.elementor-4301 .elementor-element.elementor-element-95885fe.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}@media(min-width:768px){.elementor-4301 .elementor-element.elementor-element-95885fe{--width:60%;}}/* Start custom CSS for html, class: .elementor-element-6dda6ae */.calculator-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    background-color: #121212;
    border-radius: 15px;
    color: #FFFFFF;
    font-family: 'Cera Pro', sans-serif;
    text-align: left;
}

.calculator-container .logo {
    display: block;
    margin: 0 auto 20px;
    width: 150px;
}

.calculator-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.calculator-container input, 
.calculator-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #929292;
    font-size: 16px;
    background-color: #FFFFFF;
    color: #000000;
}

.calculator-container button {
    width: 100%;
    padding: 15px;
    background-color: #FFD000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculator-container button:hover {
    background-color: #e8bf07;
    color: #000; 
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #DFFF80;
    color: #121212;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.switch-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #929292;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #6E08F2;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.calculator-container #result {
    margin-top: 20px;
    padding: 20px;
    background-color: #323232;
    border-radius: 8px;
    border: 1px solid #C7C7C7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}/* End custom CSS */