:root {
    --background: #F2F2F2;
    --background-dark: #303030;
    --surface: #F8F8F8;

    --primary: #C63483;
    --primary-variant: #C01D70;
    --highlight: linear-gradient(90deg, var(--primary-variant) 0%, var(--primary) 100%);
    --secondary: #74CCD5;
    --seconday-variant: #5DC0C8;
    --back-color: #303030;
    --back-color-variant: #212121;

    --on-primary: #FFF;
}

html {
    height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    font-family: muli, sans-serif;
    font-weight: 400;
    font-style: normal;
}

body > div > div {
    background-color: var(--background);
}

.uk-dropdown, .uk-navbar-container {
    background: var(--background) !important;
}

#app {
    height: 100%;
    min-height: 100%;

    background-color: var(--background);
}

h1, h2, h3, .uk-card-title {
    font-family: futura-pt-bold, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal;
}

.o-sidenav, .o-profile {
    font-family: roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.o-dash-text {
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    color: #303030;
}

.o-dash:hover > div > i {
    color: var(--secondary);
}

.o-dash:hover {
    text-decoration: none;
}

.o-sidebar {
    max-height: 100vh;

    display: flex;
    flex-direction: column;
}

.o-sidebar > img {
    height: 65px;
}

.la-angle-right, .la-ellipsis-h {
    font-size: 19px;
}

h1, .uk-card-title {
    font-size: 48px;
}

p {
    font-size: 20px;
}

.o-number-block {
    margin-top: 60px;
    margin-bottom: 60px;
}

.o-number {
    font-size: 61px;
    line-height: 1;
}

.o-number-text {
    font-size: 21px;
    line-height: 1;
}

.o-number-block > h2 {
    display: inline-block;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}

.o-dash-icon {
    font-size: 2rem;
}

.o-profile {
    color: #141821;
}

/**
 * Nav
 */
.o-sidenav {
    overflow-y: auto;
    margin-right: 10px;
}

.o-sidebar {
    width: 20%;
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}

@media only screen and (min-width: 1200px) {
    .o-backdrop {
        margin-left: 45px;
    }
}

.uk-nav li {
    font-size: 17px;
}

.uk-nav > li > a {
    display: flex;
    align-items: center;

    color: #9f9f9f;

    border-radius: 0.8rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;

    transition: background-color 200ms ease-out;
}

.uk-nav > li > a:hover {
    color: inherit;
    background-color: rgba(0, 0, 0, 0.1);
}

.uk-nav > li > a:hover i:nth-of-type(2) {
    transform: translateX(6px);
}

.uk-nav > li i:first-of-type {
    font-size: 2rem;
    padding: 0.5rem;
    margin-right: 0.8rem;
}

.uk-nav > li i:nth-of-type(2) {
    font-size: 1.2rem;

    transition: transform 200ms ease-out;
}

.uk-nav > li.uk-active i:first-of-type {
    color: var(--on-primary);
    background-color: var(--secondary);
    border-radius: 0.8rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.uk-nav > li.uk-active span:first-of-type {
    color: var(--secondary);
}

.o-close-btn {
    color: #C3C6D1 !important;
}

.o-close-btn > svg {
    width: 17px;
}

.o-logo {
    padding-left: 30px;
    width: 200px;
}

.o-toggle {
    padding-right: 30px;
    color: #C3C6D1;
}

.o-toggle > svg {
    width: 25px;
}

/**
 * Profile
 */

.o-profile {
    display: flex;
    align-items: center;
    font-size: 19px;
}

.o-profile .o-profile-avatar {

}

.o-profile .o-profile-menu {
    border-radius: 0.4rem;

    transition: background-color 200ms ease-out;
}

.o-profile .o-profile-menu:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/**
 * Backdrop
 */
.o-backdrop {
    height: 680px;
    left: 0;
    right: 0;

    background-color: var(--primary);
    border-bottom-left-radius: 10rem;
}

/**
 * Fullscreen Backdrop
 */
.o-backdrop-fullscreen {
    height: 100%;
    min-height: 100vh;
    left: 0;
    right: 0;

    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-variant) 100%);
}

/**
 * Content container
 */
.o-backend-container {
    color: var(--surface) !important;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-size: 18px;
}

/**
 * UIkit overrides
 */
.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large,
.uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, .uk-card-title {
    color: var(--on-primary) !important;
}

.uk-card-default {
    border-radius: 0.8rem;
    background: var(--surface);
}

.o-dash:hover > .uk-card-default {
    background: var(--on-primary);
}

.uk-offcanvas-bar {
    width: 100vw;
}

.uk-offcanvas-bar {
    background: var(--background);
}

.uk-button {
    border-radius: 10px;
    text-transform: unset !important;
    font-size: 19px !important;
    font-weight: 200 !important;
}

.uk-input, .uk-select, .select2-selection, .tox {
    border-color: #9E9E9E !important;
    border-radius: 10px !important;
}

.uk-checkbox {
    border-radius: 2px !important;
    border-color: #9E9E9E !important;
}

.uk-checkbox:checked:focus, .uk-checkbox:indeterminate:focus, .uk-radio:checked:focus {
    background-color: var(--seconday-variant);
}

.uk-checkbox:checked, .uk-checkbox:indeterminate, .uk-radio:checked {
    background-color: var(--secondary);
    background-image: none;
}

ul.jqtree-tree .jqtree-toggler.jqtree-toggler-left {
    margin-right: 1.5em;
}

ul.jqtree-tree li.jqtree-selected > .jqtree-element, ul.jqtree-tree li.jqtree-selected > .jqtree-element > a, ul.jqtree-tree li.jqtree-selected > .jqtree-element > span, ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover, table tr:hover, .uk-accordion li:hover {
    background-color: var(--on-primary) !important;
    background: var(--on-primary) !important;
    text-shadow: unset !important;
    color: var(--primary);
    border-radius: 10px;
    outline: none;
}

li .jqtree_common:hover > div, li .jqtree_common:hover > div > a, li .jqtree_common:hover > div span, .uk-accordion li:hover a, .uk-accordion li:hover span {
    color: var(--primary);
}

.uk-modal-dialog, .uk-modal-footer, .uk-modal-header {
    border-radius: 10px;
    background: var(--surface);
}

.uk-button-primary {
    background: var(--secondary) !important;
    /*background-color: var(--secondary);*/
}

.uk-button-primary:hover {
    background: var(--seconday-variant) !important;
    /*background-color: var(--seconday-variant);*/

}

.uk-button-secondary {
    background: var(--primary);
}

.uk-button-secondary:hover {
    background: var(--primary-variant);
}

.uk-form-label {
    color: #606060 !important;
    font-size: 18px !important;
}

thead th {
    color: #606060 !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

#users_table td {
    font-weight: 200;
}

#users_table td:first-child {
    font-weight: unset;
}

.o-search-input {
    border-bottom-right-radius: unset !important;
    border-top-right-radius: unset !important;
}

.o-search-button {
    border-bottom-left-radius: unset;
    border-top-left-radius: unset;
}

.o-back-button {
    background: var(--back-color);
    margin-right: 15px !important;
    border: 1px solid transparent;
}

.o-back-button:hover {
    background: var(--back-color-variant);
    color: unset;
}

.uk-dropdown.uk-open.uk-dropdown-top-right, textarea {
    border-radius: 10px;
}

.uk-label {
    background: transparent;
    color: #9E9E9E;
}

.o-font-200 {
    font-weight: 200 !important;
}

.o-h2 {
    font-size: 25px;
    color: #606060 !important;
}

.uk-tooltip {
    background: unset;
    color: gray;
}

.o-round-border {
    border-radius: 10px;
}

.o-button-margin-right {
    margin-right: 15px !important;
}

.o-edit-button {
    color: var(--secondary);
}

.o-edit-button:hover {
    color: var(--seconday-variant);
}

table tr td a.o-edit-button {
    opacity: 0;
}

table tr:hover td a.o-edit-button {
    opacity: 100%;
}

.o-login-card {
    max-width: 456px;
    padding: 58px;
}

.o-login-card h1 {
    color: #606060 !important;
}

.o-login-card .uk-margin {
    margin-bottom: 36px;
}

.o-login-card .uk-form-label {
    font-weight: 900;
    font-size: 23px;
}

.o-powered-by-pwx {
    margin-top: 72px;
}

.o-configurations-tab {
    width: 150px;
    height: 36px;
    background-color: var(--background);
    display: block;
    text-align: center;
    padding-top: 9px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #666;
}

.o-configurations-tab:hover {
    text-decoration: none;
    color: var(--primary);
}

.o-configurations-tab-active {
    background-color: var(--surface);
    pointer-events: none;
}

.o-configurations-list {
    position: relative;
    z-index: 1;
}
