/* Bootstrap overrides */
.btn-outline-secondary:hover {
    background-color: #3e424d;
    border-color: #3e424d;
}


/* Normal CSS */
:root {
    --omni-purple: #2D0A58;
    --omni-container-width: 675px;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

html {
    overflow: hidden;
}

body {
    overflow-y: scroll;
    font-family: 'Lato', sans-serif;
    color: rgba(0,0,0,0.89);
}

.nav-link:not(.active) {
    border-bottom-color: rgb(222,226,230);
    background: rgba(222,226,230,0.45);
}

.omni-navbar {
    color: white;
    justify-content: center;
    background: url(../img/texture-purple.png);
    background-size: 100%;
}
.omni-navbar-inverted {
    color: black;
    background-color: white;
}
.omni-navbar-dark {
    color: white;
    background: #3e424d;
}
.omni-navbar-title {
    justify-content: center;
}
body:not(.loaded) .omni-navbar-user {
    visibility: hidden;
}
.omni-navbar-user {
    justify-content: center;
}
.omni-navbar-user > .user-name {
    max-width: 250px;
    max-width: fit-content;
}
#responder-name {
    transition: background-color 300ms;
    border-top-right-radius: .25em;
    border-bottom-right-radius: .25em;
}
#respond-link > button {
    border-top-right-radius: .25em;
    border-bottom-right-radius: .25em;
}
#responder-name:not(.show) {
    display: none;
}
#responder-name.show + #respond-link {
    display: none;
}
@media only screen and (max-width: 767px) {
    .omni-navbar-user {
        color: white;
        background: #3e424d;
    }
}
@media only screen and (min-width: 768px) {
    .omni-navbar-user {
        padding-top: 12px !important;
    }
}

.omni-navbar-subnav {
    font-size: 0.9em;
    text-transform: uppercase;
}
.omni-navbar-subnav-tabs {
    width: 100%;
    max-width: var(--omni-container-width);
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.omni-navbar-subnav-tab {
    position: relative;
    width: 100%;
    flex: 1;
    text-align: center;
    user-select: none;
}
.omni-navbar-subnav-tab:hover,
.omni-navbar-subnav-tab:focus {
    cursor: pointer;
}
.omni-navbar-subnav-tab.active:before {
    left: 0;
    border-right: 1.3em solid white;
}
.omni-navbar-subnav-tab.active:after {
    right: 0;
    border-left: 1.3em solid white;
}
.omni-navbar-subnav-tab.active:before,
.omni-navbar-subnav-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1.1em;
    height: 0;
    z-index: 1;
    width: 50%;
    border-bottom: 1.1em solid transparent;
}

.page-title {
    font-size: 1.2em;
}

.omni-container {
    max-width: var(--omni-container-width);
}
.omni-container-fluid {
    max-width: 100%;
}

.omni-card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    background: white;
    border-radius: 3px;
}

@supports (position: sticky) {
    .omni-sticky-left {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        z-index: 1019;
    }
}

.omni-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    transition: transform 200ms;
}
.omni-fab.hide {
    transform: scale(0);
}

.omni-fab-btn {
    display: inline-block;
    width: 56px;
    height: 56px;
    padding: 0;
    vertical-align: middle;
    line-height: 54px;
    font-size: 15px;
    color: white;
    overflow: hidden;
    transition: box-shadow 200ms;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    background: var(--omni-purple);
    border-radius: 50%;
    text-align: center;
 }

 .omni-fab-btn:hover,
 .omni-fab-btn:focus {
    box-shadow: 0 3px 3px 0 rgba(0,0,0,0.14), 0 1px 7px 0 rgba(0,0,0,0.12), 0 3px 1px -1px rgba(0,0,0,0.2)
 }

 .omni-fab-btn i {
    font-size: 1.2rem;
    vertical-align: middle;
    color: white;
 }