﻿.dashboardFilter {
    /*background-color: rgba(0, 0, 0, 0.37);*/
    padding: 8px;
    background: rgba(40, 62, 99, 0.73);
}

    .dashboardFilter .dashboardFilterTitle {
        color: #FFFFFF;
        font-size: 11px;
        text-transform: uppercase;
        font-weight: 500;
        padding: 0px 27px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        margin-bottom: 14px;
        display: none;
    }

    .dashboardFilter .dashboardFilterForm {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0px 27px 8px;
    }

        .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            margin-inline-end: 27px;
        }
            .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp:last-of-type {
                margin-inline-end: 0px !important;
            }
            .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp label {
                color: #8AA1AF;
                font-size: 11px;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp input {
                border-radius: 2px;
                border: 1px solid rgba(154, 175, 213, 0.74);
                background-color: rgba(16, 25, 42, 0.74);
                width: 250px;
                height: 34px;
                color: rgba(151, 151, 151, 1);
                padding: 5px 10px;
                font-size: 13px;
            }

    .dashboardFilter ::-webkit-calendar-picker-indicator {
        background-image: url(../../images/UserDashboard/calendar-icon.svg);
        background-position: center;
    }

    .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp select {
        border-radius: 2px;
        border: 1px solid rgba(154, 175, 213, 0.74);
        background-color: rgba(16, 25, 42, 0.74);
        /* background-color: #121D2F; */
        width: 250px;
        height: 34px;
        color: rgba(151, 151, 151, 1);
        padding: 5px 10px;
        appearance: none;
        /* position: relative; */
        font-size: 13px;
    }

    .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp.selectFormGrp::after {
        content: "";
        position: absolute;
        background-image: url(../../images/UserDashboard/dropdown-icon.svg);
        width: 7px;
        height: 4px;
        inset-inline-end: 12px;
        bottom: 15px;
        /* z-index: 9; */
    }

    .dashboardFilter .dashboardFilterForm .dashboardFilterFormGrp option {
        /* background-color:rgba(16, 25, 42, 0.74); */
    }
    .dashboardFilter .dashboardFilterForm .buttonsContainer {
        display: flex;
        margin-inline-start: auto;
        margin-inline-end: 0px;
        align-self: flex-end;
    }
    .dashboardFilter .dashboardFilterForm .submitBtn {
        width: 144px;
        height: 41px;
        background: #30C86D;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        font-size: 12px;
        font-weight: 500;
        border: none;
        outline: none;
        align-self: flex-end;
        margin-inline-start: auto;
        /*margin-inline-end: 0px;*/
        margin-inline-start: 27px;
    }
    .dashboardFilter .dashboardFilterForm .clearBtn {
        width: 144px;
        height: 41px;
        background: #ffffff;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #184d89;;
        font-size: 12px;
        font-weight: 500;
        border: none;
        outline: none;
        align-self: flex-end;
        margin-inline-start: auto;
        /*margin-inline-end: 0px;*/
        margin-inline-start: 27px;
    }

.stops-orders-view-btns-container .stops-orders-view-btns:first-child {
    border-start-start-radius: 5px;
    border-end-start-radius: 5px;
    border: 1px solid rgba(28, 55, 108, 1);
    background: rgba(20, 37, 67, 1);
    width: 30px;
    height: 34px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.stops-orders-view-btns-container .stops-orders-view-btns:nth-child(2) {
    border-start-end-radius: 5px;
    border-end-end-radius: 5px;
    border: 1px solid rgba(28, 55, 108, 1);
    background: rgba(20, 37, 67, 1);
    width: 30px;
    height: 34px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.stops-orders-view-btns-container .stops-orders-view-btns-active {
    background: rgba(255, 255, 255, 1) !important;
    border: 1px solid rgba(0, 117, 255, 1) !important;
    cursor: default !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}