/*
    #30beff (48,190,255) - text-theme - cyan
    #0075ff (0,117,255) - text-primary - blue
    #6e8a96 - text-muted - grey
    #c7cdd2 - gray text
    #408740 - text-success - green
    #ff9a22 - text-warning - yellow
    #e51313- text-danger - red
*/

* {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: grey;
}

*::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 20px;
}

.threatyeti-text {
    padding-left: 7px;
    padding-top: 3px;
}

a {
    text-decoration: none;
}

ul.no-bullet {
    padding-left: 0;
    list-style-type: none;
}
.white-transparent {
    background-color: transparent;
    color: white;
    border: none;
}

.bg-theme {
    color: black;
}

.bg-info-transparent {
    background-color: rgba(48,190,255,.05);
}

td.bg-info-transparent {
    background-color: rgba(48,190,255,.15);
}

.fades {
    transition: opacity 0.5s ease-in-out;
}

.pro-tier {
    filter: blur(5px);
}

.community-tier {
    filter: blur(5px);
}

.pro-upsell-msg {
    filter: none;
    z-index: 15;
}

.community-upsell-msg {
    filter: none;
    z-index: 15;
}

.grecaptcha-badge {
    display: none;
}

.rotate-45 {
    display: inline-block;
    transform: rotate(-25deg);
}

.sort-icon { visibility: hidden; }
.host-copy-icon { visibility: hidden; }

th:hover .sort-icon { visibility: visible; }
tr:hover .host-copy-icon { visibility: visible; }

.visible { visibility: visible; }
.hidden { visibility: hidden; }
.no-display { display: none; }
.blur-display {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}
.under-maintenance {
    filter: blur(5px);
    pointer-events: none;
}


.carousel-item {
    transition: transform 2s ease-in-out;
}
.carousel-image {
    width: 100%;
    /* width: auto;
    height: 224px; */
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 4rem;
    height: 4rem;
}
/* table thead {
    position: sticky;
    inset-block-start: 0;
} */
.sidebar {
    transition: top .7s ease-in-out;
    z-index: 10;
}

.toast {
    z-index: 30;
    transition: opacity .5s ease-out, transform .8s;
}

.hide-toast {
    opacity: 0;
    transform: translateX(300px)
}

.hoverable {
    transition: .20s color ease-in-out;
}

.hoverable:hover {
    color: white;
    cursor: pointer;
}

.badge-hoverable {
    color: white;
}

.badge-hoverable:hover {
    color: black;
    cursor: pointer;
}

a.link-hoverable {
    transition: .20s color ease-in-out;
    color: #30beff;
}

a.link-hoverable:hover {
    color: #6e8a96;
    cursor: pointer;
}

a.white-hoverable {
    transition: .10s color ease-in-out;
    color: #c7cdd2;
}

a.white-hoverable:hover {
    color: #30beff;
    cursor: pointer;
}

.icon-hoverable, .icon-hoverable-danger {
    transition: .20s color ease-in-out;
    color: #6e8a96;
}

.icon-hoverable:hover {
    color: #30beff;
    cursor: pointer;
}

.icon-hoverable-danger:hover {
    color: #e51313;
    cursor: pointer;
}

.nobreak { word-break: keep-all;}

.full-screenshot-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 20;
    padding: 1em;
    background-color: rgba(0,0,0,.9);
    transition: opacity .5s ease-in-out;
}

.full-screenshot-image {
    display: block;
    margin: auto;
    width: 80%;
    height: 90%;
    z-index: inherit;
    transition: transform .5s ease-in-out;
}

.flags {
    transition: transform .8s ease-in-out;
}

.screenshot-history {
    height: 95vh;
    overflow-y: auto;
}

.fade-in { opacity: 1; }
.fade-out { opacity: 0; }
.offscreen-top { transform: translateY(-100vh); }
.offscreen-left { transform: translateX(-100vw); }
.offscreen-right { transform: translateX(100vw); }

.tab-hosts-card { overflow-y: auto; }

.btn-back {
    position: absolute;
    top: 1em;
    left: 1em;
}

.asterisk {
    display: none;
    font-weight: bold;
}

.threat_scale {
    border-collapse:collapse;
}

.threat_arrow {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 15px solid black;
    background-color: black;
}

.provider-button {
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.6);
    border-radius: 2px;
    width: 100%;
    max-width: 200px;
    border: none;
}

.legend {
    margin: 0;
    background: linear-gradient(to right, rgb(0,0,0,.5), transparent);
    border-radius: 6px;
}

.text-overflow {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
}

.btn-outline-success { color: #408740; border-color: #408740; }
.btn-outline-warning { color: #ff9a22; border-color: #ff9a22; }
.btn-outline-danger  { color: #e51313; border-color: #e51313; }
.btn-outline-success.disabled { color: #408740; border-color: #408740; }
.btn-outline-warning.disabled { color: #ff9a22; border-color: #ff9a22; }
.btn-outline-danger.disabled  { color: #e51313; border-color: #e51313; }
.btn-outline-success:hover { color: black; border-color: #408740; background-color: #408740; }
.btn-outline-warning:hover { color: black; border-color: #ff9a22; background-color: #ff9a22; }
.btn-outline-danger:hover  { color: black; border-color: #e51313; background-color: #e51313; }

.card-toggler {
    cursor: pointer;
}

[aria-expanded="true"] .fa-plus {
    display: none;
}

[aria-expanded="false"] .fa-minus {
    display: none;
}

.hero-bar-parsed-url-wrapper {
    max-width: 100vw;
}

.spinner-border {
    animation-duration: 1s;
}

.big-font {
    font-size: 3em;
}

.top-z {
    z-index: 100;
}

#threatyeti-chat {
    max-width: 25vw;
    min-width: 12vw;
}

#threatyeti-chatbox-window {
    max-height: 30vh;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .hero-bar-parsed-url-wrapper {
        max-width: 40vw;
    }
}
