.sip-buttons button {
    width: 49%;
    border: none;
} /*your custom css goes here*/
.glass-card {
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px 10px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.glass-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
}
.sip-input {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    padding: 10px 20px;
    /* width: 44%; */
}
.sip-input input {
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
    padding: 0 10px;
}
.frequencyButton {
    background-color: #fbc268;
    border: 0px solid transparent !important;
    height: 40px;
    padding: 10px !important;
    font-size: 12px;
    border-radius: 10px;
    padding-bottom: 10px !important;
}
.calculatorCard {
    width: 400px;
}
.main-title-calculator {
    font-size: 60px;
}
.sub-main-title-calculator {
    font-size: 40px;
}
.main-card-calculator {
    display: flex;
}
@media (max-width: 1200px) {
    .main-title-calculator {
        font-size: 48px;
    }
    .sub-main-title-calculator {
        font-size: 30px;
    }
}
@media (max-width: 990px) {
    .main-card-calculator {
        display: block;
    }
    .calculatorCard {
        width: 100%;
    }
}
