@import "../../variables.scss";


.LeadsStatementBlock {
    .BtnCustom {
        font-size: $font + 4;
        border: none !important;
        padding: 0 $pad + 5;
        height: 44px;
        border-radius: $bdr-rds - 2;
        box-shadow: none;
        background-color: #b0b0b0 !important;
    }

    .pagination {
        justify-content: center;
        margin-top: 25px;
    }

    .LeadsLimitationHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: $pad + 10;

        @media (max-width: $xl) {
            display: block;
        }

        @media (max-width: $lg) {
            font-size: $font + 18;
            padding-bottom: $pad + 5;
        }

        h1 {
            padding-bottom: 0 !important;
        }

        .LeadsLimitationHeadRight {
            display: flex;

            flex-wrap: wrap;

            @media (max-width: $xl) {
                justify-content: end;
                padding-top: $pad + 5;
            }

            @media (max-width: $md) {
                justify-content: space-between;
            }

            .SearchFIlterCard {
                position: relative;
                width: 300px;
                margin-right: $mrg;

                @media (max-width: $xxl) {
                    width: 150px;
                }

                @media (max-width: $lg) {
                    width: 65%;
                    margin-bottom: $mrg;
                }

                @media (max-width: $md) {
                    width: 100%;
                    margin-right: 0;
                }

                .ContactInput {
                    box-shadow: none;
                    border-radius: $bdr-rds;
                    height: 45px;
                    line-height: 45px;
                    border: solid 1px #e5e5e5;
                    padding-right: $pad + 25;

                    &::-webkit-input-placeholder {
                        color: $black;
                    }

                    &::-moz-placeholder {
                        color: $black;
                    }

                    &:-ms-input-placeholder {
                        color: $black;
                    }

                    &:-moz-placeholder {
                        color: $black;
                    }
                }

                img {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 15px;
                    cursor: pointer;
                    display: block;
                }
            }

            .FIlterCustomDropdown {
                @media (max-width: $md) {
                    width: 100%;
                    margin-bottom: $mrg;
                }

                button {
                    @media (max-width: $xl) {
                        min-width: 100%;
                    }
                }
            }
        }

        .LeadsLimitationFilterWrapper {
            display: flex;
            gap: 1rem;

            .orangeBtn {
                background-color: #f6931c;
                border: none;
            }
        }

        .LeadsLimitationSearchBox {
            input {
                height: 45px;
                line-height: 45px;
                border: solid 1px #e5e5e5;
                border-radius: 5px;
                font-size: 14px;
                min-width: 100px;
                padding: 10px;
                margin-right: 5px;

                &:focus-visible {
                    outline: none;
                }
            }
        }

    }
}