  .query__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;

        .filter {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0px;
            font-size: 16px;
            font-weight: 700;
            background-color: unset;

            .filter__item {
                span {
                    margin-right: 4px;
                    background: transparent !important;
                    color: #555 !important;
                    font-weight: 400;
                    font-size: 13px;
                    padding: 2px 6px;

                    i {
                        font-size: 10px;
                        padding: 0 0 0 4px;
                        cursor: pointer;
                        opacity: 0.6;
                        transition: opacity 0.2s;
                    }

                    i:hover {
                        opacity: 1;
                        color: #E84D1C;
                    }
                }
            }

            .filter__icon {
                color: rgb(87, 87, 87);
                padding: 2px 4px;
                border-radius: 4px;
                background: transparent;
                transition: color 0.2s;
            }
        }

        .filter:hover {

            .filter__icon {
                color: #003f74;
            }
        }
    }

    .offcanvas.offcanvas-end {
        width: 520px;
        background: #EDF3FF;
        color: rgb(87, 87, 87);
    }

    .offcanvas .offcanvas-body .accordion .accordion-item {
        border: none;

        .accordion-button {
            padding: 10px;
            font-size: 14px;
            text-transform: uppercase;
            box-shadow: none !important;
            background-color: #f7f7f7;
        }

        .accordion-button:not(.collapsed) {
            background-color: #f7f7f7;
            color: rgb(87, 87, 87);
            font-weight: 700;
        }

        .accordion-button::after {
            background-size: 14px;
        }

        .accordion-body {
            display: flex;
            align-items: center;
            min-height: 80px;
            flex-wrap: wrap;
            padding: 20px;

            .form-check-item {
                width: 72px;
                height: 72px;
                padding: 8px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                border-radius: 4px;
                font-size: 12px;
                border: 1px solid #D4E6FF;
                text-align: center;
                margin: 4px;
            }

            .form-check-item:hover {
                border: 1px solid #E84D1C;
            }

            .form-check-item.active {
                background-color: #E84D1C;
                color: #fff;
            }
        }
    }

    .footer__btn {
        margin: 20px;
    }

    .footer__btn button {
        border-radius: 4px;
        text-transform: uppercase;

    }

    .footer__btn .custom-btn {
        background-color: #E84D1C;
        color: #fff;
    }