
.bootstrap .btn.dropdown-toggle {
    height: 46px;
}

.bootstrap .btn .paw-icon {
    line-height: 22px;
}

/**
 * Generic Close Button
 */

.bootstrap .close {
    color: #000;
}

.bootstrap .close:hover {
    color: #e14c43;
}

/**
 * Radio Button / Checkbox
 */

.bootstrap .nxj-radio.inline,
.bootstrap .nxj-checkbox.inline {
    position: relative;
    display: inline-block;
}

.bootstrap .nxj-radio.inline + .nxj-radio.inline,
.bootstrap .nxj-checkbox.inline + .nxj-checkbox.inline {
    margin-left: 10px;
}

.bootstrap .nxj-radio > input,
.bootstrap .nxj-checkbox > input{
    position: absolute;
    visibility: hidden;
}

.bootstrap .nxj-radio > label,
.bootstrap .nxj-checkbox > label {
    padding-left: 0;
    position: relative;
}

.bootstrap .nxj-radio > label::before,
.bootstrap .nxj-checkbox > label::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    transition: all .25s ease-out;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
}

.bootstrap .nxj-radio > label::before {
    background: #fff;
    border-radius: 50%;
    border: 3px solid;
}

.bootstrap .nxj-radio > input:enabled + label::before {
    border-color: #D1D2D4;
}

.bootstrap .nxj-radio > input:disabled + label::before {
    border-color: #F0F0F0;
}

.bootstrap .nxj-radio > input + label:hover::before,
.bootstrap .nxj-radio > input:checked + label::before {
    box-shadow: inset 0 0 0 4px #FFF;
}

.bootstrap .nxj-radio > input:enabled:checked + label::before {
    background: #01ACD6;
    border-color: #01ACD6;
}

.bootstrap .nxj-radio > input:disabled:checked + label::before {
    background: #F0F0F0;
}

.bootstrap .nxj-radio > input:enabled:not(:checked) + label:hover::before {
    background: #D1D2D4;
}

.bootstrap .nxj-checkbox > label::before {
    border-radius: 4px;
    font-size: 10px;
    font-family: 'paw';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 16px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bootstrap .nxj-checkbox > input:enabled + label::before {
    color: #D1D2D4;
    background: #D1D2D4;
}

.bootstrap .nxj-checkbox > input:disabled + label::before {
    color: #F0F0F0;
    background: #F0F0F0;
}

.bootstrap .nxj-checkbox > input:enabled + label:hover::before,
.bootstrap .nxj-checkbox > input:checked + label::before {
    color: #FFF;
    content: "\e965";
}

.bootstrap .nxj-checkbox > input:enabled:checked + label::before {
    background: #01ACD6;
}

.bootstrap .nxj-checkbox > input:disabled {
    background: #F0F0F0;
}