﻿.cat-select-v2.form-control {
    height: 30px;
    cursor: pointer;
}

    .cat-select-v2.form-control::after {
        content: '\e5c5';
        right: 7px;
        bottom: 2px;
        position: absolute;
        font-family: 'Material Icons';
        font-weight: bold;
    }
    .cat-select-v2.form-control.open::after {
        content: '\e5c7';
    }

.cat-select-v2.ulcontainer li.branch::after {
    content: '\e5df';
    right: 7px;
    bottom: 10px;
    position: absolute;
    font-family: 'Material Icons';
    font-weight: bold;
}

.cat-select-v2.ulcontainer.open > ul{
    border: none;
}

.cat-select-v2.ulcontainer {
    height: auto !important;
    max-height: none !important;
}

    .cat-select-v2.ulcontainer ul {
        list-style: none;
        margin: 0;
        padding-left: 0;
        border: 1px solid #ccc;
        background: white;
        min-width: 250px;
    }

.cat-select-v2 li {
    display: block;
    float: left;
    position: relative;
    text-decoration: none;

    padding: 6px;
    cursor: pointer;
    white-space: nowrap;
    min-height: 44px;
    min-width: 100px;
}

    .cat-select-v2 li .cat-select-text {
        overflow: hidden;
    }

    .cat-select-v2 li:hover,
    .cat-select-v2 li:focus-within {
        background-color: #eee;
        cursor: pointer;
    }

.cat-select-v2 li:focus-within a {
    outline: none;
}

.cat-select-v2 ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: calc(100% - 2px);
    top: 0;
    display: none;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

    .cat-select-v2 ul li:hover > ul,
    .cat-select-v2 ul li:focus-within > ul,
    .cat-select-v2 ul li ul:hover,
    .cat-select-v2 ul li ul:focus {
        visibility: visible;
        opacity: 1;
        display: block
    }

.cat-select-v2 ul li ul li {
    clear: both;
    width: 100%;
}
