.filterationQAndDateContainer {
    flex-grow: 1;
}

.filterationBar {
    padding: 0px 5px 0px 5px;
    background: #283e63;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
    /* timeSlotsOption */
    .filterationBar .timeSlotsOption {
    }

        .filterationBar .timeSlotsOption .dropdown {
        }

            .filterationBar .timeSlotsOption .dropdown .btn {
                width: 45px;
                height: 26px;
                padding: 0px;
                font-size: 9px;
                font-weight: 600;
                color: rgba(182, 180, 189, 1);
                text-shadow: 0px 1px 2px rgb(15 11 29 / 32%);
                background: rgba(35, 44, 76, 1);
                border-radius: 2px;
                border: 1px solid rgba(249, 119, 12, 1);
                /* border: none; */
                /* background: transparent; */
            }

               

            .filterationBar .timeSlotsOption .dropdown .dropdown-menu {
                box-shadow: 0px 3px 6px #00000029;
                border-radius: 2px;
                padding: 0px;
                width: 84px !important;
                min-width: unset;
                background: #283E63;
                z-index: 999999999;
            }

                .filterationBar .timeSlotsOption .dropdown .dropdown-menu .dropdown-item {
                    height: 25px;
                    padding: 0px 12px;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    color: #B7CFE0;
                    font-size: 12px;
                    font-weight: 600;
                }

                    .filterationBar .timeSlotsOption .dropdown .dropdown-menu .dropdown-item:hover {
                        background: rgba(35, 44, 76, 1);
                        opacity: 0.28;
                    }


/* monitoring view dropdown start */

            .filterationBar .monitoringOption .dropdown .btn {
                width: 84px;
                height: 26px;
                padding: 0px;
                font-size: 10px;
                font-weight: 600;
                color: rgba(182, 180, 189, 1);
                text-shadow: 0px 1px 2px rgb(15 11 29 / 32%);
                background: rgba(35, 44, 76, 1);
                border-radius: 2px;
                border: unset;
                /* border: none; */
                /* background: transparent; */
            }



    .filterationBar .monitoringOption .dropdown .dropdown-menu {
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 2px;
        padding: 0px;
        width: 84px !important;
        min-width: unset;
        background: #283E63;
        z-index: 999999999;
    }

        .filterationBar .monitoringOption .dropdown .dropdown-menu .dropdown-item {
            height: 25px;
            padding: 0px 12px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            color: #B7CFE0;
            font-size: 12px;
            font-weight: 600;
        }

            .filterationBar .monitoringOption .dropdown .dropdown-menu .dropdown-item:hover {
                background: rgba(35, 44, 76, 1);
                opacity: 0.8;
            }

/* monitoring view dropdown end */

/* filterationButtons */
.filterationButtons {
    display: flex;
}

    .filterationButtons .button {
        padding: 0px 3px;
        background: transparent;
        border-radius: 5px;
        border: 1px solid;
        margin: 0px 4px;
        text-transform: capitalize;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90px;
        height: 25px;
        font-size: 9px;
        font-weight: 700;
        transition: all ease-in-out 300ms;
    }

        .filterationButtons .button.late {
            color: #ff3a29;
        }

        .filterationButtons .button.all {
            color: #1A7FD5;
        }

        .filterationButtons .button.onTheTime {
            color: #34b53a;
        }

        .filterationButtons .button.warnings {
            color: #e37014;
        }

        .filterationButtons .button span {
            width: 18px;
            height: 18px;
            padding: 5px;
            border-radius: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .filterationButtons .button.late span {
            background: rgba(255, 221, 221, 1);
        }

        .filterationButtons .button.all span {
            background: #C0DCFF;
        }

        .filterationButtons .button.onTheTime span {
            background: rgba(226, 251, 215, 1);
        }

        .filterationButtons .button.warnings span {
            background: rgba(245, 215, 191, 1);
        }

        .filterationButtons .button.late:hover,
        .filterationButtons .button.late.active {
            background: rgba(255, 221, 221, 1);
        }

        .filterationButtons .button.all:hover,
        .filterationButtons .button.all.active {
            background: #C0DCFF;
        }

        .filterationButtons .button.onTheTime:hover,
        .filterationButtons .button.onTheTime.active {
            background: rgba(226, 251, 215, 1);
        }

        .filterationButtons .button.warnings:hover,
        .filterationButtons .button.warnings.active {
            background: rgba(245, 215, 191, 1);
        }

/* legends */
.legends {
    display: flex;
    align-items: center;
}

    .legends .legend {
        margin: 0px 10px;
        color: rgba(255, 255, 255, 0.77);
        font-size: 8px;
        font-weight: 600;
        display: flex;
        align-items: center;
        background: none !important;
        border: none !important;
    }

        .legends .legend span {
            width: 10px;
            height: 4px;
            display: block;
            margin-inline-end: 4px;
        }

        .legends .legend.expected span {
            background-color: #D3F4FF;
        }

        .legends .legend.dispatched span {
            background-color: #00FFFF;
        }

        .legends .legend.onTheWay span {
            background-color: #007BFF;
        }

        .legends .legend.inexecution span {
            background: rgba(80, 0, 172, 1);
        }

        .legends .legend.arrived span {
            background: rgba(119, 36, 36, 1);
        }

        .legends .legend.success span {
            background-color: #28A745;
        }

        .legends .legend.failed span {
            background-color: #dc3545;
        }

        .legends .legend.visited span {
            background-color: #8C8C8C;
        }

.flexBasis50 {
    /* flex-basis: 50%; */
    align-items: stretch;
    gap: 11px;
}
