/**
 * =======================================
 * Root Tooltip
 * =====
 */

.n-root-tooltip-container {
    cursor: help;
    display: inline-block;
    margin-left: 10px;
    font-style: normal;
    margin-top: -5px;
    font-size: 13px;
    text-decoration: none !important;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.n-root-tooltip-container:hover .n-root-tooltip,
.n-root-tooltip-container:active .n-root-tooltip {
    visibility: visible;
    opacity: 1;
}

    .n-root-tooltip-container::before {
        content: '[?]';
        letter-spacing: .1em;
        text-align: center;
        position: relative;
        color: #9E9E9E;
    }

    dd > .n-root-tooltip-container::before {
        top: -4px;
        font-size: 14px;
    }

    .n-root-tooltip {
        background-color: white;
        border-radius: 3px !important;
        border: 1px solid #ccc !important;
        box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.16) !important;
        color: #666;
        margin-left: -3px;
        margin-top: -25px;
        max-height: 400px;
        max-width: 300px;
        opacity: 0;
        overflow-y: scroll;
        padding: .5em 1em;
        position: absolute;
        transition: opacity .3s ease-out;
        visibility: hidden;
        z-index: 1000;
    }

    .n-root-tooltip::-webkit-scrollbar {
        position: absolute;
        -webkit-appearance: none;
        width: 7px;
    }

    .n-root-tooltip::-webkit-scrollbar-thumb {
        border-radius: 3px;
        background-color: #ddd;
        background-color: rgba(0,0,0,.4);
        box-shadow: 0 0 1px rgba(255,255,255,.5) !important;
    }

        .n-root-tooltip-item {
            display: block;
            white-space: normal;
            margin: 6px;
        }

        .n-root-tooltip-title:not(:last-child) {
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
        }

        .n-root-tooltip strong {
            color: #000000;
        }

.root-flex {
    box-sizing: border-box;
    margin: .5em 0 0 0;
    line-height: 40px;
}

    .root-flex > * {
        box-sizing: border-box;
        margin: 0 5px;
    }

.spinning {
    animation: infinite-spinning .8s infinite linear;
}

@keyframes infinite-spinning {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.flash {
    animation: single-flash .8s;
}

@keyframes single-flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Bootstrap Overrides */
.btn-group.open .dropdown-menu {
  padding: 7px 0;
}

.dropdown-menu li > a {
  padding: 5px 15px;
}

.dropdown-menu li > a i {
    margin-right: .5em;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}
