﻿.limit-menu-hieght {
    visibility: visible;
    overflow-x: hidden;
    overflow-y: auto;
}
.limit-menu-hieght a{
    padding-right: 27px !important; 
}

.ui-acti-dropdown-div {
    /* Size and position */
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding-left: 7px;
    padding-right: 27px;

    /* Styles */
    cursor: pointer;
    outline: none;

    /* Font settings */
    color: #000000;
    font-size: 13px;
    
    
    border: 1px solid #999999;
    background-color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.ui-acti-dropdown-div:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 7px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #666666 transparent;
}

.ui-acti-dropdown-div .DropdwonText 
{
    min-height: 15px;
    overflow-x: hidden;
    text-align: left;
}

.ui-acti-dropdown-div .ui-acti-dropdown
{
    font-size: 14px;
    z-index: 9999;
    white-space: nowrap;
    min-width: 100%;
    /* Size & position */
    position: absolute;
    top: 25px;
    left: -1px;

    /* Styles */
    background: white;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-weight: normal;
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    list-style: none;

    /* Hiding */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.ui-acti-dropdown-div .ui-acti-dropdown a{
    text-align: left;
}



.ui-acti-dropdown-div .ui-acti-dropdown li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #8aa8bd;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.ui-acti-dropdown-div .ui-acti-dropdown li{
    line-height: 14px;
}


/* Hover state */
.ui-acti-dropdown-div .ui-acti-dropdown li:hover a {
    background: #E9EEEE;
}

/* Active state */
.ui-acti-dropdown-div.active {
    background: #7396B0;
    border-color: #7396B0;
    color: white;
}

.ui-acti-dropdown-div.active:after {
    border-width: 0 6px 6px 6px;
}

.ui-acti-dropdown-div.active .ui-acti-dropdown 
{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.ui-acti-dropdown-div .selector{
    cursor: pointer;
}

/* No CSS3 support */

.no-opacity       .ui-acti-dropdown-div .ui-acti-dropdown,
.no-pointerevents .ui-acti-dropdown-div .ui-acti-dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .ui-acti-dropdown-div.active .ui-acti-dropdown,
.no-pointerevents .ui-acti-dropdown-div.active .ui-acti-dropdown {
    display: block;
}   