/*
 * user bootstrap edit btn
 */

.btn-group {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    z-index: 100;
}
.btn-group > .btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fff none;
    border: 1px solid #ccc;
    color: #333;
    position: relative;
    float: left;
    border-radius: 0;
}
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 2;
    outline: none;
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn-group > .btn:focus {
    border-color: #8c8c8c;
}

.btn-group > .btn:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.btn-group > .btn:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.btn-group > .btn.dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-left: -1px;
}
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Icons";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}
.glyphicon-cog:before {
    content: "\e800";
}

.btn-group > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}
.dropdown-menu > li > a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu > li > a.is-active,
.dropdown-menu > li > a:focus.is-active,
.dropdown-menu > li > a:hover.is-active {
    color: #fff;
    text-decoration: none;
    background-color: var(--current_light_color);
    outline: 0;
}

.open > .btn.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.open > .dropdown-menu {
    display: block;
}
