
/* SELECT CATEGORY */
.select_category{
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
    text-align: right;
}

.btn.select_category-toggle{
    position: relative;
    width: 264px;
    background: #fff;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 18px;
    color: #555;
    text-align: left;
}

.select_category.open .btn.select_category-toggle,
.btn.select_category-toggle:active,
.btn.select_category-toggle:focus,
.btn.select_category-toggle:hover{
    background-color: #fff !important;
    outline-color: #019961;
}

.select_category-toggle.dropdown-toggle::after {
    content: none;
}

.btn.select_category-toggle .fa{
    position: absolute;
    font-size: 30px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.select_category-dropdown-menu.dropdown-menu{
    width: 264px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    font-size: 16px;
    top: 110%;
    padding-top: 0;
    padding-bottom: 0;
}

.select_category-dropdown-menu.dropdown-menu li.dropdown-item {
    background-color: transparent;
    padding: 0;
}

.select_category-dropdown-menu.dropdown-menu li a{
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
    text-decoration: none;
    color: #333;
}

.select_category-dropdown-menu.dropdown-menu li a:hover {
    background-color: #ddd;
}

.select_category-dropdown-menu.dropdown-menu li:last-child a{
    border-bottom: 0;
}

.select_category-dropdown-menu.dropdown-menu li.active a{
    color: #019961;
    background-color: transparent;
    font-weight: 600;
}

.select_category-dropdown-menu.dropdown-menu li.active a:after{
    position: absolute;
    content: '';
    width: 20px;
    height: 10px;
    border-radius: 50rem;
    background-color: #019961;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}