.calculator-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.input-group {
    margin-bottom: 15px;
}

select,
input,
button {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #d50000;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #b71c1c;
}

.results {
    margin-top: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #ddd;
}

iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

.vc_video-bg {
    height: 100%;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.nectar-video-inner {
    height: 100%;
}

.nectar-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
}

.video-color-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-backface-visibility: hidden;
    top: 0;
    left: 0;
    padding-bottom: 0;
    z-index: 3;
}

.inner-wrap {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.row-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.row-bg-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.vc_row-fluid::after {
    clear: both;
}

.vc_row-fluid::before,
.vc_row-fluid::after {
    content: "";
    display: table;
}

@keyframes example {
    from {
        background-color: lightblue;
    }

    to {
        background-color: #106EEA;
    }
}

/* The element to apply the animation to */
.animatorrr {
    width: 100%;
    height: 100%;
    background-color: #106EEA;
    animation-name: example;
    animation-duration: 4s;
}

.noto-sans-font {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}


