
/* buttons */

.btn {
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.btn:hover {
    opacity: 0.9;
}

.btn:focus,
.btn:active:focus {
    outline: none;
}

.btn.btn-lg {
    font-size: 18px;
}

.btn-default:hover {
    background: #fafafa;
}

.subscriptions-button-filter {
    font-size: 12px;
    padding: 4px 8px;
    margin: 0 2px 8px 0;
}

.btn-primary.btn-outline:active,
.btn-primary.btn-outline:focus {
    background-color: transparent;
    border-color: #2e6da4;
    color: #2e6da4;
}

.btn-outline {
    color: inherit;
    background-color: transparent;
    transition: all .5s;
}
.btn-primary.btn-outline {
    color: #428bca;
}

.btn-primary:hover {
    color: white;
}


/* row-table */

@media (min-width: 1366px) {
    .row.row-table {
        display: table;
        width: 100%;
    }

    .row.row-table > div {
        display: table-cell;
        float: none;
        vertical-align: bottom;
    }
}



/* panel */

.panel {
    margin-bottom: 30px;
}

.panel {
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: rgba(53,64,82,.04) 0 2px 4px 0;
}

.panel-default > .panel-heading {
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.panel-default > .panel-footer {
    background-color: #ffffff;
}

.panel-footer-active {
    color: #3498db;
}

.panel-footer-not-active {
    color: #999;
}



/* alert */

.alert {
    color: #fafafa;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 2px;
}

.alert-success {
    background-color: #5c9843;
    border-color: #5c9843;
}

.alert-danger {
    background-color: #c74b4b;
    border-color: #c74b4b;
}

.alert-warning {
    background-color: #e28d17;
    border-color: #e28d17;
}

.alert-info {
    background-color: #fff;
    border-color: #2572cd;
    color: #222222;
}



/* tables */

table.table > thead > tr > th {
    border-bottom: 0;
    font-weight: 500;
}

table.table > tbody > tr > th {
    border-top: none;
    font-weight: 500;
}



@media screen and (max-width: 767px) {
    .table-responsive {
        border: none
    }
}



/* labels */

.label {
    font-size: 13px;
    font-weight: normal;
    border-radius: 2px;
}

.label.label-info {
    background: #222;
}

.label.label-default {
    background: #fbfbfb;
    color: #222;
    border: 1px solid #555;
}

.label.label-danger {
    background: #c74b4b;
}

.datatable .label {
    display: inline-block;
    margin: 0 0 5px 0;
}

/* dropdowns */

.dropdown-menu {
    font-size: 12px;
}


/* tooltips */

.tooltip {
    z-index: 10000;
}

.tooltip.in {
    filter: alpha(opacity=100);
    opacity: 1
}

.tooltip-inner {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 8px 12px;
    color: #222;
    opacity: 1;
    text-align: left;
    max-width: 400px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .050);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .050);
}

.tooltip .tooltip-arrow {
    border: none !important;
}

.tooltip ul {
    margin: 0;
}

.tooltip ul li {
    margin: 0 0 5px 0;
}