/*----------------------------
    Toolbox
----------------------------*/

.toolbox-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;

    .toolbox-right {
        display: flex;
        justify-content: flex-end;
    }

    .toolbox-item {

        &.toolbox-layout {

            .layout-list {

                .layout-item {
                    display: inline-block;
                    margin-left: 20px;

                    .grid-layout,
                    .list-layout {
                        display: inline-block;
                        font-size: 25px;
                        color: #999999;

                        &.current {
                            color: $white;
                            background-color: var(--main-color-one);
                            padding: 0px 7px;
                        }
                    }
                }
            }
        }

        &.toolbox-show,
        &.toolbox-sort {
            position: relative;
            z-index: 0;

            &::after {
                position: absolute;
                right: 10px;
                top: 20%;
                content: "";
                font-weight: 600;
                font-family: "Font Awesome 5 Free";
                color: var(--heading-color-two);
                z-index: 0;
                height: 0px;
                font-size: 17px;
            }

            select {
                font-size: 16px;
                font-weight: 600;
                text-transform: capitalize;
                color: var(--heading-color);
                cursor: pointer;
            }

            .select-box {
                border: none;
                padding: 6px 0px 7px;
                appearance: none;
            }
        }

        .showing {
            font-size: 16px;
            font-weight: 600;
            text-transform: initial;
            color: var(--heading-color);
            padding: 6px 0px 7px;
        }
    }
}