.form-control
{
    background-color: #e9ecef;
    opacity: 1;
}

.form-control1
{
    background-color: #e9ecef;
    opacity: 1;
}
        
        .searchbar {
            position: absolute;
            margin-top: -80px;
            z-index: 1;
        }
        
        .cardheight {
            height: auto;
            margin-bottom: 10px;
            border-radius: 20px;
            background: #FCFCFC;
        }

        .labelset {
            width: 170px;
            font-size: 18px;
            font-weight: 600;
            margin-top: -20px;
        }

        .select-wrapper {
            display: flex;
            align-items: center;
        }

        .select-wrapper img {
            margin-right: 10px;
            position: absolute;
            margin-left: 10px;
        }

        .select-wrapper {
            position: relative;
        }

        .select-wrapper select {
            padding-right: 20px;
            /* Adjust the padding as needed */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: transparent;
            border: none;
        }

        .select-wrapper .arrow-down {
            position: absolute;
            top: 50%;
            right: 5px;
            /* Adjust the right position as needed */
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid black;
            /* Adjust the color and size as needed */
        }

        /* test */
        select {
            font-family: fontAwesome;
            /* font-family: "Font Awesome 5 Free"; */
            content: attr(data-icon);
            height: 40px;
        }

        /* input field icon */
        .textbox {
            -moz-appearance: none;
            -webkit-appearance: none;
            appearance: none;
            outline: none;

            font: inherit;
            /* From .input-group */

            border: 1px solid transparent;
            padding-top: calc(0.5em - 1px);
            padding-bottom: calc(0.5em - 1px);
            padding-left: calc(0.5em - 1px);
            padding-right: calc(0.5em - 1px);
            border-radius: 2px;
            /* Your style */
        }

        .textbox::placeholder {
            opacity: 0.35;
            /* Your style */
        }

        /* ICONS Base Syle
------------------------------------------
** 1. Color
** 2. Size and position (only top)
** 3. Center content
** 4. Transition animation
** 5. Disable mouse clicks
--------------------------------------- */
        .icon {
            color: inherit;
            /* From input-group */
            opacity: 0.35;
            /* Same as placeholder */

            width: 2.5em;
            height: 2.5em;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            transition: opacity .24s ease-in-out;
            pointer-events: none;
            /* Disable click */
            /*   background-color: rgba(0,0,200, 0.3);  */
        }

        /* Optional */
        .icon.bg {
            background-color: rgb(0 0 0 / 0%);
            border-left: 1px solid;
            color: black;
        }

        /* INPUT GROUP (input + icons wrapper)
** REMs = textbox size
--------------------------------------- */
        .input-group {
            font-size: 15px;
            /* CHANGE */
            background: white;
            border-radius: 2px;
            /* Your style */
            /* width: 255px; */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 1px 0px 1px 0px;
        }

        .input-group:not(:last-of-type) {
            margin-bottom: 1.5rem;
            /* Optional */
        }

        /* The textbox takes all the remining space */
        .input-group .textbox {
            flex-grow: 1;
        }

        /* When icon as prefix */
        .icon:not(.bg)~.textbox {
            padding-left: 0;
            /* Removes left padding */
        }

        /* When icon as suffix */
        .textbox~.icon:not(.bg) {
            margin-left: calc(1px - 0.5em);
            /* Removes right padding */
        }

        .outline {
            /* pointer-events: none; /* Disable click */
            cursor: pointer;
        }

        /* box around the input-group */
        .outline::after {
            content: '';
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            width: calc(100% - 1px);
            height: calc(100% - 1px);
            border-radius: 2px;
            /* Your style */
            transition: box-shadow 0.3s ease;
            /* Your style */
        }

        .input-group .textbox:hover+.outline::after {
            box-shadow: 0px 0px 1px 2px rgba(0, 149, 255, 0.87);
            /*   border: 1px solid dodgerblue; */
        }

        .input-group .textbox:focus+.outline::after {
            box-shadow: 0px 0px 2px 4px rgba(0, 149, 255, 1);
        }

        /* end input field icon */

        /* button */
        .btnset {
            width: 100%;
            height: 41px;
            font-size: 20px;
            font-weight: 600;
            margin-top: 0px;
        }

        .paddingset {
            padding: 1rem !important;
            padding-left: 25px !important;
            padding-right: 25px !important;
        }

        .range-slider {
            width: 100%;
            margin: 5px;
            /* text-align: center; */
            position: relative;
            height: 3em;
        }
        
        
        .range-slider svg,
        .range-slider input[type=range] {
            position: absolute;
            left: 0;
            /* bottom: 0; */
        }
        
        input[type=number] {
            border: none;
            text-align: center;
            /* font-size: 1.6em; */
            -moz-appearance: textfield;
        }
        
        input[type=number]::-webkit-outer-spin-button,
        input[type=number]::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }
        
        input[type=number]:invalid,
        input[type=number]:out-of-range {
            border: 2px solid #ff6347;
        }
        
        input[type=range] {
            -webkit-appearance: none;
            width: 100%;
        }
        
        input[type=range]:focus {
            outline: none;
        }
        
        input[type=range]:focus::-webkit-slider-runnable-track {
            background: #dc3545;
        }
        
        input[type=range]:focus::-ms-fill-lower {
            background:#dc3545 ;
            /* #2497e3 */
        }
        
        input[type=range]:focus::-ms-fill-upper {
            background: #dc3545;
        }
        
        input[type=range]::-webkit-slider-runnable-track {
            width: 100%;
            height: 5px;
            cursor: pointer;
            animate: 0.2s;
            background: #dc3545;
            border-radius: 1px;
            box-shadow: none;
            border: 0;
        }
        
        input[type=range]::-webkit-slider-thumb {
            z-index: 2;
            position: relative;
            box-shadow: 0px 0px 0px #000;
            border: 1px solid black;
            height: 18px;
            width: 18px;
            border-radius: 25px;
            background: white;
            cursor: pointer;
            -webkit-appearance: none;
            margin-top: -7px;
        }
        
        input[type=range]::-moz-range-track {
            width: 100%;
            height: 5px;
            cursor: pointer;
            animate: 0.2s;
            background: black;
            border-radius: 1px;
            box-shadow: none;
            border: 0;
        }
        
        input[type=range]::-moz-range-thumb {
            z-index: 2;
            position: relative;
            box-shadow: 0px 0px 0px #000;
            border: 1px solid #2497e3;
            height: 18px;
            width: 18px;
            border-radius: 25px;
            background: black;
            /* a1d0ff */
            cursor: pointer;
        }
        
        input[type=range]::-ms-track {
            width: 100%;
            height: 5px;
            cursor: pointer;
            animate: 0.2s;
            background: black;
            border-color: transparent;
            color: transparent;
        }

        .section-title-6
        {
            max-width: 600px;
        }
        
        input[type=range]::-ms-fill-lower,
        input[type=range]::-ms-fill-upper {
            background: black;
            border-radius: 1px;
            box-shadow: none;
            border: 0;
        }
        
        input[type=range]::-ms-thumb {
            z-index: 2;
            position: relative;
            box-shadow: 0px 0px 0px #000;
            border: 1px solid #2497e3;
            height: 18px;
            width: 18px;
            border-radius: 25px;
            background: black;
            cursor: pointer;
        }
    
        @media (max-width:575px)
{
    .searchbar {
        position: absolute;
        margin-top:22px;
        z-index: 1;
    }
    .searchbyzipcode{
        position: absolute;
                margin-top: 460px !important;
                z-index: 1;
      }
}