.scrollbar {
    display: flex;
    gap: 2%;
    overflow-x: scroll;
    padding: 5px 0 20px;
}

.scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 6px;
    border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--brand-sky-blue-color-500);
    border-radius: 10px;
}

.searchbox {
    display: block;
    text-align: center;
    margin: auto;
    position: relative;
    margin-top: 20px;
}

.searchbox::after {
    content: "";
    position: absolute;
    background: url("../../icons/search.svg") no-repeat;
    width: 24px;
    height: 24px;
    top: 8px;
    right: 10px;
}

input.search-input {
    padding: 15px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 4px 4px 12px #1e334824, 0.1px 16px 32px #7191b124;
    border: none;
    width: 500px;
}

input.search-input:focus-visible {
    outline: none;
}

.calculators .calculator-discover-more .choicechip {
    display: inline-flex;
    width: 100%;
    gap: 10px;
    justify-content: center;
    margin: 0 0 20px;
    scrollbar-width: none;
    overflow-x: auto;
    padding-bottom: 5px;
}

.calcards {
    transition: opacity 0.3s ease;
}

.calculator-discover-more .choicechip .chips {
    border-radius: 20px;
    background: var(--color-light-gray-11);
    padding: 5px 30px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-color);
}

.calculator-discover-more .choicechip .chips.active {
    background: var(--brand-sky-blue-color-600);
    color: var(--color-white);
}

.calculator-discover-more a {
    flex: 0 0 29%;
    max-width: 29%;
}

.calculator-discover-more .calcards {
    background: var(--color-white);
    box-shadow: var(--primary-boxshadow);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hidden-card {
    display: none;
}

.visible-card {
    display: block;
}

.calculator-discover-more .callabel {
    position: absolute;
    right: 15px;
    top: 15px;
    border-radius: 4px;
    border: 1px solid #f5c361;
    background: #ffe9bd;
    color: #a36a00;
    font-size: 10px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    padding: 0 8px;
    height: 20px;
    line-height: 20px;
}

.caldesc {
    margin: 20px 0;
    font-size: 14px;
    min-height: 170px;
    color: var(--color-text-primary);
}

.caldesc strong {
    font-size: 20px;
    color: var(--color-text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.calculator-discover-more .linktext {
    text-align: right;
    color: var(--color-primary);
    padding-right: 15px;
    position: relative;
    font-weight: var(--font-weight-semibold);
}

.calculator-discover-more .linktext::after {
    content: "";
    background: url("../../icons/arrow-right-red.svg") no-repeat;
    height: 16px;
    width: 16px;
    position: absolute;
    right: -5px;
    top: 2px;
}

.calicon {
    width: 35px;
    min-height: 45px;
}

/* width */
.calculator-discover-more-wrapper ::-webkit-scrollbar {
    display: flex;
    gap: 2%;
    overflow-x: scroll;
    padding: 5px 0 20px;
    width: 1px;
    height: 6px;
    margin-top: 10px;
}

/* Handle */
.calculator-discover-more-wrapper ::-webkit-scrollbar-thumb {
    background-color: var(--brand-sky-blue-color-500);
    border-radius: 10px;
}

/* width */
.choicechip ::-webkit-scrollbar {
    display: flex;
    gap: 2%;
    overflow-x: scroll;
    padding: 5px 0 20px;
    width: 1px;
    height: 6px;
    margin-top: 10px;
}

/* Handle */
.choicechip ::-webkit-scrollbar-thumb {
    background-color: var(--brand-sky-blue-color-500);
    border-radius: 10px;
}



@media (width <= 768px) {
    .calculator-discover-more a {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .searchbox {
        width: 95%;
        margin: auto;
    }

    .calculator-discover-more .choicechip {
        display: inline-flex;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
        justify-content: flex-start!important;
    }

    .searchbox input {
        width: 100%;
    }

    .choicechip .chips {
        white-space: nowrap;
    }

    .scrollbar {
        gap: 15px;
    }
}
