* {
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
}

html.wv, body.wv {
    margin: 0;
    height: 100%;
    font-family: "Quicksand", sans-serif;
    font-size: calc(14px + 0.2vw);
}

body.wv {
    background-color: #161616;
}

div#app {
    height: 100%;
}

.wv-padding-1 {
    padding: 0.75rem;
    padding-right: 0;
}

.wv-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 80rem;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}
.wv-container .wv-container-navigation {
    flex: 0 0 auto;
    width: 21rem;
}
.wv-container .wv-container-content {
    flex: 1 1 auto;
    padding: 1.5rem 2.5rem;
    border-left: 1px solid #242424;
    height: 100%;
    overflow: auto;
    scrollbar-gutter: stable;
}

.wv-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2.5rem;
}
.wv-navigation .wv-navigation-logo {
    width: 100%;
    margin: 0;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #F5C2FA;
    font-family: 'Climate Crisis', sans-serif;
}
.wv-navigation .wv-navigation-label {
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    color: #666666;
}
.wv-navigation .wv-navigation-list {
    padding: 0 1.5rem;
    border-radius: 0.5rem;
}
.wv-navigation .wv-navigation-item {
    width: 100%;
}
.wv-navigation .wv-navigation-item button {
    width: 100%;
    color: #898989;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.35rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background: none;
    outline: none;
}
.wv-navigation .wv-navigation-item:last-child button {
    margin-bottom: 0;
}
.wv-navigation .wv-navigation-item button:hover {
    color: #F5C2FA;
    cursor: pointer;
}
.wv-navigation .wv-navigation-item.router-link-active button {
    color: #F5C2FA;
    border: 1px solid #242424;
    background-color: #1F1F1F;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.wv-navigation .wv-navigation-item button [data-pc-section="icon"] {
    width: 1rem;
    text-align: center;
    margin-right: 0.5rem;
}

.wv-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 4rem;
    margin-bottom: 1rem;
}
.wv-header .wv-breadcrumb, .wv-header .wv-user {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #242424;
    background-color: #1F1F1F;
    color: #aaaaaa;
    font-size: 0.8rem;
    font-weight: 500;    
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
}
.wv-header .wv-user {
    margin-left: auto;
}


.wv-title {
    margin: 0 0 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #F5C2FA;
}
.wv-title i {
    text-align: center;
    margin-right: 1rem;
}

.wv-dropdown {
    position: relative;
}
.wv-dropdown-menu {
    position: absolute;
    right: 0;
    padding: 0.5rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #242424;
    background-color: #1F1F1F;
    color: #aaaaaa;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 3px 6px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.wv-dropdown-menu-item {
    border-radius: 0.5rem;
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;    
}
.wv-dropdown-menu-item:hover {
    background-color: #242424;
    cursor: pointer;
}
.wv-dropdown-menu-item i {
    margin-right: 0.5rem;
}