/*
Table of Contents
=================
    1. Global
    2. Text
    3. Layout
    4. Components
        4.1. Navigations
        4.2. Images
        4.3. Selects
        4.4. Table
        4.5. Lists 
        4.6. Other Lists 
        4.7. Buttons
        4.8. Waiting and Loader
        4.9. Tooltip image 
    5. Resize
    6. Position
    7. TEST & TEMP
*/


/* === 1. Global =================================================================== */
:root {
    --v-color-1: #fff;
    --v-color-2: #f2f2f2;
    --v-color-3: #f1f0efff;

    --v-color-4: #e1dfdd;
    --v-color-5: #53565a;

    --v-bak-color-1: #ccc;
    --v-bak-color-2: #fbfaf8;
    --v-bak-color-3: #f8f9fa;
    --v-bak-color-4: #f3f3f3;
    --v-bak-color-5: #d8d7d5;
    --v-bak-color-6: #f7f7f7;
    --v-bak-color-7: #3498db;
    --v-bak-color-8: rgba(0, 0, 0, .075);
    --v-bak-color-9: rgba(0, 0, 0, .125);

    --v-bak-color-10: #bbbbbb;
    --v-bak-color-11: #d4d4d4;
    --v-bak-color-12: #eeeeee;

    --v-btn-color-1: #0056d6;
    --v-btn-color-2: #004fbc;

    --v-txt-color-1: #0056b3;
    --v-txt-color-2: #4d4e53;
    --v-txt-color-3: #0000bb;
    --v-txt-color-4: #000099;
    --v-txt-color-5: #000;
    --v-txt-color-6: #222;
    --v-txt-color-7: #333;
    --v-txt-color-8: #111;
    --v-txt-color-9: red;
    --v-txt-color-10: rgb(1, 1, 119);

    /*
    background-color: var(--v-color-1);
    color: var(--v-color-1);
    */
}

* {
    margin: 0px;
    padding: 0px;
    font-size: 1rem;
}

html {
    /* width: 100vw;*/
    height: 100vh;
}

body {
    /* width: 100vw;*/
    height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
}

html,
body {
    background: var(--v-color-1);
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.hide {
    display: none;
}

.full-width {
    width: 100%;
}

.v-container-modal {
    padding: 0px;
    margin: 0px;
    background: var(--v-color-1);
    display: table-cell;
    overflow-x: hidden;
    overflow-y: auto;
}

@media (max-width:575px) {

    .v-container {
        height: calc(100vh - 160px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: auto;
        max-width: 575px;
        /*   background-color: red;*/
    }

    .v-container-frame {
        height: calc(100vh - 140px);
        margin: 0px;
        padding: 0px;
        max-width: 575px;
        /*  background-color: red;*/
    }
}

@media (min-width:576px) {

    .v-container {
        height: calc(100vh - 160px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: auto;
        max-width: 540px;
        /*  background-color: green;*/
    }

    .v-container-frame {
        height: calc(100vh - 164px);
        margin: 0px;
        padding: 0px;
        max-width: 540px;
        /*   background-color: green;*/
    }
}

@media (min-width:800px) {

    .v-container {
        height: calc(100vh - 160px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: auto;
        max-width: 800px;
        /* background-color: blue;*/
    }

    .v-container-frame {
        height: calc(100vh - 164px);
        margin: 0px;
        padding: 0px;
        max-width: 800px;
        /* background-color: blue; */
    }
}


@media (min-width:1000px) {

    .v-container {
        height: calc(100vh - 130px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: auto;

        max-width: 1000px;
        /* background-color: yellow;*/
    }

    .v-container-frame {
        margin: 0px;
        padding: 0px;
        height: calc(100vh - 134px);
        max-width: 1000px;
        /*  background-color: yellow;*/
    }
}

@media (min-width:1320px) {

    .v-container {
        height: calc(100vh - 130px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: none;
        max-width: 1320px;
        /*background-color: black;*/
    }

    .v-container-frame {
        margin: 0px;
        padding: 0px;
        height: calc(100vh - 134px);
        max-width: 1330px;
        overflow-y: none;
        /* background-color: black;*/
    }
}

/*
@media (min-width:1500px) {

    .v-container {
        height: calc(100vh - 130px);
        margin-top: 5px;
        overflow-x: none;
        overflow-y: auto;
        max-width: 1460px;
    }

    .v-container-frame {
        margin: 0px;
        padding: 0px;
        height: calc(100vh - 130px);
        max-width: 1460px;
    }
}
*/
/*
--- Add more width if needed ---
*/


/* === 2. Text =================================================================== */

body {
    /*font-size: 1rem;*/
    font-size: 16px;

    /*     font-family: arial, sans-serif;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  */
    font-family: Volvo Novum Regular, Assistant, Arial, sans-serif, monospaced serif fonts;
    /*  font-family: Arial, sans-serif, "Segoe UI"; */
    font-weight: 400;
    color: var(--v-txt-color-2);
    text-align: left;
    background: var(--v-color-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.8rem;
}

h6 {
    font-size: 0.6rem;
}

A {
    font-size: .8rem;
    COLOR: var(--v-txt-color-3);
}

A:hover {
    color: var(--v-txt-color-4);
}

A:not([href]) {
    font-size: .8rem;
    color: var(--v-txt-color-3);
}

.v-background-1 {
    background-color: var(--v-bak-color-1);
}

.v-background-2 {
    background-color: var(--v-bak-color-2);
}

.v-background-3 {
    background-color: var(--v-bak-color-3);
}

.v-background-4 {
    background-color: var(--v-bak-color-4);
}

.v-background-5 {
    background-color: var(--v-bak-color-5);
}

.v-background-6 {
    background-color: var(--v-bak-color-6);
}

.v-background-7 {
    background-color: var(--v-bak-color-7);
}

.v-background-8 {
    background-color: var(--v-bak-color-8);
}

.v-background-9 {
    background-color: var(--v-bak-color-9);
}

.v-background-10 {
    background-color: var(--v-bak-color-10);
}

.v-background-11 {
    background-color: var(--v-bak-color-11);
}

.v-background-12 {
    background-color: var(--v-bak-color-12);
}

.v-text-1,
.v-text-2,
.v-text-3,
.v-text-4,
.v-text-5 {
    text-align: left;
    padding: 0px 10px 0px 0px;
    /*   white-space: nowrap;*/

    font-weight: 500;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;
}

.v-text-1 {
    font-size: 1.5rem;
}

.v-text-2 {
    font-size: 1.2rem;
}

.v-text-3 {
    font-size: 1rem;
}

.v-text-4 {
    font-size: .85rem;
}

.v-text-5 {
    font-size: .75rem;
}

.v-text-6 {
    font-size: .6rem;
}

.v-text-bold {
    font-weight: 800;
}

.v-text-wrap {
    white-space: wrap !important;
}

.v-text-nowrap {
    white-space: nowrap !important;
}

.v-text-link {
    color: var(--v-btn-color-2);
    cursor: pointer;
}

.v-text-normal {
    font-size: .75rem;
    text-align: left;
    font-weight: 400;
    padding: 0px 10px 0px 0px;
    white-space: nowrap;
}

.v-text-normal-wrap {
    font-size: .75rem;
    text-align: left;
    font-weight: 400;
    padding: 0px 10px 0px 0px;
}

.v-text-small {
    font-size: .6rem;
    text-align: left;
    font-weight: 400;
    padding: 0px 10px 0px 0px;
    white-space: nowrap;
}

.v-text-input {
    font-size: .7rem;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    padding: 0px 2px 0px 2px;
}

.v-text-value,
.v-text-header {
    font-size: .8rem;
    margin: 0px 0px 0px 0px;
    padding: 0px 2px 0px 2px;
}

.v-text-value {
    font-weight: 400;
}

.v-text-header {
    font-weight: 800;
}


.v-text-normal-link {
    font-size: .75rem;
    text-align: left;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    white-space: nowrap;
    color: var(--v-txt-color-10);
}

.v-text-error {
    padding: 0px 10px 0px 0px;
    white-space: nowrap;
    color: var(--v-txt-color-9);
}

input.v-inputNotValid {
    border-style: solid;
    border-color: var(--v-txt-color-9);
}

.v-text-info {
    background-color: var(--v-bak-color-1);
    font-size: 0.8rem;
    text-align: left;
    font-weight: 650;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

.input-group-text {
    font-size: 0.8rem;
    font-weight: 700;
}

.v-input-group-text {
    font-size: 0.8rem;
    font-weight: 700;
}

.form-control {
    font-size: 0.8rem;
}

.v-form-control {
    font-size: 0.8rem;
}

.v-header-text-link {
    color: var(--v-btn-color-2);
    text-decoration: none;
    cursor: pointer;
    padding: 0px;
    margin: 0px;
}

.v-header-text-link:hover,
.v-header-text-link:focus {
    color: var(--v-btn-color-1);
    text-decoration: none;
    cursor: pointer;
}

.v-header-text-link:hover::after,
.v-header-text-link:focus::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px)
}

.v-header-text-link::after {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.v-header-text-link:after {
    content: ">";
    margin-left: 5px;
    display: inline-block;
}

.v-header-text-link-selected {
    color: var(--v-btn-color-1);
    text-decoration: none;
    padding: 0px;
    margin: 0px;

    content: ">";
    margin-left: 5px;
    display: inline-block;
}

.v-mono-text {
    font-family: monospaced serif fonts, sans-serif;

    font-size: .8rem;
    text-align: left;
    font-weight: 400;
    padding: 0px 10px 0px 0px;
    white-space: nowrap;
}

/* === 3. Layout =================================================================== */

iframe {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.v-footer-main-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: var(--v-color-3);
    color: var(--v-txt-color-5);
    text-align: center;
    height: 50px;
}

p.clear {
    clear: both;
}


/* === 4. Components =================================================================== */

.v-nav-icons ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--v-color-4);
}

.v-nav-icons li {
    float: left;
    margin: 0;
    padding: 0;
}

.v-nav-icons li a {
    display: block;
    color: var(--v-color-5);
    text-align: center;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.v-nav-icons li a:hover {
    background-color: var(--v-color-1);
}


/* --- 4.1. Navigations ------------ */
.v-navbar {
    background-color: var(--v-color-4);
    padding: 0px;
    margin: 0px;
}

.v-navbar-nav {
    background-color: var(--v-color-4);
    padding: px;
    margin: 0px;
}

.v-nav-item {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;

    text-decoration: none;
    color: var(--v-color-5);
    line-height: 1;

    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;

    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.v-nav-item a {
    text-decoration: none;
    color: var(--v-color-5);
    line-height: 1;

    height: 40px;

    font-size: 0.75rem;
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;

    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.v-nav-item a:hover {
    position: relative;
    text-decoration: none;
    color: var(--v-color-5);
    line-height: 1;
    background-color: var(--v-color-1);
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.v-nav-home-item {
    padding: 0px;
    margin: 0px;
    /* text-transform: uppercase;*/

    text-decoration: none;
    color: var(v-txt-color-9);
    line-height: 1;

    font-size: 0.7rem;
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;

    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.v-nav-link {
    color: var(--v-color-5);

    height: 100%;
    padding: 0rem;
    margin: 0rem;
}

.v-nav-link-active {
    background-color: var(--v-color-1);

    height: 100%;
    padding: 0rem;
    margin: 0rem;
}

.v-nav-separator {
    background-color: #fff;

    padding: 0rem;
    margin: 0rem;
    width: 1px;
    height: 100%;
}

.v-footer-copyrightText {
    font-size: 0.75rem;
    /*   font-family: "Volvo Novum Light", Arial, sans-serif;*/
    font-weight: 400;
    white-space: nowrap !important;
    letter-spacing: -.1px;
    line-height: 1;
    color: var(--v-color-5);
    padding: 8px 0px 0px 0px;
    margin: 0;
}

.v-footer-navbar {
    background-color: var(--v-bak-color-1);
    margin: 0rem;
    padding: 0rem;
}

.v-footer-nav-item {
    color: var(--v-color-1);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.v-footer-nav-item a {
    color: var(--v-color-1);
    margin: 0rem;
    padding: 0.25rem;
    font-size: 0.8rem;
}

.v-footer-nav-item a:hover {
    background-color: var(--v-bak-color-1);
}

.v-navbar-3 {
    margin: 0px 0px 0px 0px;
    padding: 5px 5px 5px 5px;
}

.v-nav-item-3 {
    color: var(--v-txt-color-5);
    font-size: .85rem;
}

.v-nav-item-3 a {
    color: var(--v-txt-color-6);
    font-size: .85rem;
}

.v-nav-item-3 a:hover {
    background-color: var(--v-bak-color-1);

}

.v-nav-item-3 .v-link {
    color: var(--v-txt-color-3);
    font-size: .85rem;
}

.v-nav-item-3 .v-link:hover {
    color: var(--v-txt-color-4);
    font-size: .85rem;
}


.v-left-menu-card {
    margin: 0px;
    text-align: left;
    width: 20rem;

    background: var(--v-bak-color-2);
    outline: none;
}

.v-card-header-lg,
.v-card-header-lg:focus,
.v-card-header-sm,
.v-card-header-sm:focus,
.v-card-header-content,
.v-card-header-content:focus {
    padding: 2px 5px;
    margin: 0px;

    height: 40px;

    outline: none;
    border: none;
    background: var(--v-color-4);
    text-align: left;
    font-size: .8rem;
    font-weight: 600;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;
    display: table-cell;
    vertical-align: middle;
}

.v-card-header-sm,
.v-card-header-sm:focus {
    height: 25px;
    font-size: .8rem;
}

.v-card-header-content,
.v-card-header-content:focus {
    height: 30px;
    font-size: .8rem;
}

.v-card-footer {
    padding: 5px 5px 0px 5px;
    margin: 0px;

    height: 30px;

    outline: none;
    border: none;
    background: var(--v-color-4);

    font-size: .75rem;
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    letter-spacing: 0px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}


.v-left-menu-header-button,
.v-left-menu-header-button:focus {
    padding: 0px;
    margin: 0px;
    text-align: left;

    border: none;
    background: none;
    outline: none;
}

.v-left-menu-card-body-list li {
    list-style-type: none;
    font-size: 12px;
    /*  font-family: "Volvo Novum Medium", Arial, sans-serif;*/
    text-decoration: none;
    margin: 5px;
    padding: 5px 1px;
    color: var(--v-btn-color-1);
    font-weight: 700;
    border-bottom: 1px solid var(--v-bak-color-9);
}

.v-left-menu-card-body-list li a {
    list-style-type: none;
    font-size: 12px;
    /*  font-family: "Volvo Novum Medium", Arial, sans-serif;*/
    color: var(--v-btn-color-1);
    text-decoration: none;
    cursor: pointer;
    padding: 0px;

    font-weight: 400;
}

.v-left-menu-card-body-list li:hover,
.v-left-menu-card-body-list li:focus {
    text-decoration: none;
    cursor: pointer;
}

.v-left-menu-card-body-list li:hover a,
.v-left-menu-card-body-list li:focus a {
    color: var(--v-btn-color-2);
    text-decoration: none;
}

.v-left-menu-card-body-list li:hover::after,
.v-left-menu-card-body-list li:focus::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.v-left-menu-card-body-list li::after {

    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out
}

.v-left-menu-card-body-list li:after {
    content: ">";
    display: inline-block;
}

.v-card-header-button {
    display: inline-block;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    background: var(--v-txt-color-1);
    color: var(--v-color-1);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 400;

    position: relative;
}

.v-card-header-button:hover {
    background: var(--v-btn-color-1);
    color: var(--v-color-1);
    cursor: pointer;
    transition: background 1s;
}

.v-left-under-menu-header {
    font-size: .8rem;
    font-weight: 800;
    color: var(--v-txt-color-7);
    cursor: pointer;

    text-align: left;
    padding: 0px 10px 0px 10px;
    margin: 0rem;

    outline: none;
}

.v-left-under-menu-header:focus {
    color: var(--v-txt-color-8);
    cursor: pointer;
    outline: none;
}

/* --- 4.2. Images ------------ */

.v-img-home {
    color: var(--v-txt-color-2);
    text-align: left;
    box-sizing: inherit;
    vertical-align: middle;
    border-style: none;
    width: 100%;
    align-self: center;
    flex-shrink: 0;
    margin: auto;
    max-width: 100%;
    height: auto;
}

.v-img {
    background-color: var(--v-color-1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 25px;
}

.v-img-frame {
    margin: 0.55rem;
    /* padding: 0.25rem; */
    border: 1px solid var(--v-bak-color-9);
    padding: 1.25rem 1rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: 1px 1px 5px 1px var(--v-bak-color-1);
    -moz-box-shadow: 1px 1px 5px 1px var(--v-bak-color-1);
    box-shadow: 1px 1px 5px 1px var(--v-bak-color-1);
}


/* --- 4.3. Selects ------------ */

.v-custom-select {
    background: var(--v-color-1) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    -webkit-appearance: none;
    display: flex;
    border-radius: 0.25rem;
    height: 2.25rem;
    padding: 5px;
    background-color: var(--v-bak-color-3);
    border-color: var(--v-bak-color-3);
}

/* --- 4.4. Table ------------ */

.v-table,
.v-table-striped,
.v-table tr,
.v-table td {
    margin: 1px;
    padding: 0px 3px 0px 3px;
    font-size: 0.75rem;
}

.v-table th,
.v-table .v-table-sub-header td {
    margin: 0px;
    padding: 5px;
    font-weight: 600;
    font-size: 0.75rem;
}

.v-table th {
    background-color: var(--v-bak-color-5);
}

.v-table .v-table-sub-header td {
    background-color: var(--v-bak-color-8);
    font-weight: 600;
}


.v-table .v-table-header,
.v-table .v-table-sub-header {
    border-bottom: 1px solid var(--v-bak-color-9);
}

.v-table th,
.v-table td {
    border-top: 0.5px solid var(--v-bak-color-5);
    background-clip: padding-box;
    font-size: 0.75rem;
}

.v-table-striped>tbody>tr:nth-child(odd)>td,
.v-table-striped>tbody>tr:nth-child(odd)>th {
    background-color: var(--v-bak-color-6);
}

.v-scrollbar-table {
    overflow-x: auto;
    overflow-y: auto;
    margin: 0px;
    padding: 0px;
}


.v-scrollbar-table-withFixedHeader {
    overflow-x: auto;
    overflow-y: auto;
    margin: 0px;
    padding: 0px;
}

.v-tablleWithFixedHeader {
    border-collapse: collapse;
    background-color: #eee;
}

.v-tablleWithFixedHeader th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}








/* --- 4.5. Lists ------------ */

.v-menu-list,
.v-card-list {
    list-style-type: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.v-card-list li,
.v-menu-list li {
    list-style-type: none;
    box-sizing: inherit;
    background: transparent;
    padding: 0.5rem;
    width: 100%;
    margin: 0;
    text-decoration: none;
    display: flex;
    flex-flow: row wrap;
    min-width: 0;
    align-self: center;
    color: var(--v-txt-color-2);
    border-bottom: 1px solid var(--v-bak-color-9);
}

.v-card-list li:hover,
.v-menu-list li:hover {
    background: var(--v-bak-color-3);
}

.v-card-list li:hover {
    color: var(--v-txt-color-1);
    text-decoration: underline;
}

.v-menu-list li {
    font-weight: 600;
}

.v-menu-list li:hover {
    text-decoration: none;
}

.v-menu-list .v-menu-selected {
    color: var(--v-txt-color-1);
    background: var(--v-bak-color-3);
    font-size: 0.7rem;
    font-weight: 800;
}

.v-menu-list a {
    color: var(--v-txt-color-1);
    background: var(--v-bak-color-3);
    font-size: 0.7rem;
    font-weight: 600;
}

.v-ul-scrollable-200 {
    height: 200px;
    overflow: hidden;
    overflow-y: scroll;
}

.v-ul-scrollable {
    overflow: hidden;
    overflow-y: scroll;
}



.v-list-item,
.v-left-item-Active {
    font-size: .5rem;
    color: var(--v-txt-color-7);
    text-align: left;
    outline: none;
}

.v-left-menu-item {
    font-weight: 400;
    padding: 0px;
    margin: 0px;
    background-color: none;
}

.v-list-item-Active {
    font-weight: 700;
    padding: 0px 10px;
    margin: 0px;
    background-color: var(--v-bak-color-1);
}





/* --- 4.6. Other Lists ------------ */
.v-text-list {
    font-size: 0.75rem;
    text-decoration: none;
}

a.v-text-list-link:visited,
a.v-text-list-link:link {
    font-size: 0.75rem;
    color: var(--v-txt-color-3);
    text-decoration: none;
}

a.v-text-list-link:hover {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--v-txt-color-3);
    text-decoration: underline;
}

.v-list-link {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


.v-list-link {
    width: 100%;
}

.v-list-link a {
    width: 100%;
    color: var(--v-txt-color-2);
    margin: 0;
    padding: 0;
}

.v-list-link a {
    margin-left: 25px;
    display: flex;
    flex-flow: row wrap;
}

.v-list-link a:hover {
    color: var(--v-txt-color-1);
    background: var(--v-bak-color-3);
    text-decoration: underline;
}

.v-group-list {
    padding: 0px;
    margin: 0px;
}

.v-group-list li {
    padding: 0px 0px;
    margin-top: 2px;

    list-style-type: none;
    list-style-position: outside;
    background: var(--v-bak-color-3);
}

.v-group-list li a {
    padding: 0px;
    margin: 0px;
    color: var(--v-btn-color-1);
}

/* --- 4.7. Buttons ------------ */

.v-btn {
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 5px 5px;
    /* background: var(--v-btn-color-2);*/
    background: var(--v-btn-color-2);
    color: var(--v-color-1);
    transition: background 1s;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 1.5;
    position: relative;
    cursor: pointer;
}

.v-btn:hover {
    background: var(--v-btn-color-1);
    color: var(--v-color-1);
    transition: background 1s;
}

.v-btn-sm {
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 2px;
    margin: 1px;
    background: var(--v-btn-color-2);
    color: var(--v-color-1);
    transition: background 1s;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: .1px;
    line-height: 1;
    position: relative;
    cursor: pointer;
}

.v-btn-sm:hover {
    background: var(--v-btn-color-1);
    color: var(--v-color-1);
    transition: background 1s;
}

.v-btn-img-sm {
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    padding: 3px;
    margin: 2px 0px 0px 0px;

    background: var(--v-btn-color-2);
    color: var(--v-color-1);
    transition: background 1s;

    position: relative;
    cursor: pointer;
}

.v-btn-img-sm:hover {
    background: var(--v-btn-color-1);
    color: var(--v-color-1);
    transition: background 1s;
}

/* --- 4.8. Waiting and Loader ------------ */

.v-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid var(--v-bak-color-4);
    border-radius: 50%;
    border-top: 16px solid var(--v-bak-color-7);

    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.v-loader-small {
    z-index: 1;

    border: 16px solid var(--v-bak-color-4);
    border-radius: 50%;
    border-top: 16px solid var(--v-bak-color-7);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;

    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 2px;
    right: 10px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

/* --- 4.9. Tooltip image ------------ */

.v-tooltip-img {
    /* padding-left: 5px;*/
    margin: 0px;
    position: relative;
    display: inline-block;
    /*  border-bottom: 5px dotted var(--v-btn-color-2);*/
}

.v-tooltip-img .v-tooltip-img-body {
    visibility: hidden;
    height: 150px;
    background-color: #ccc;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    margin-top: -151px;

    position: absolute;
    z-index: 1;
}

.v-tooltip-img:hover .v-tooltip-img-body {
    visibility: visible;
}


/* === 5. Resize =================================================================== */

.v-header-company-1 {
    /*    font-size: .75rem;
font-weight: 400;
letter-spacing: -.1px;
line-height: 2;
padding-top: .21533em;
padding-bottom: .16733em;
line-height: 14px;
*/

    color: var(--v-color-5);

    margin: 0;
    padding: 0;

    font-weight: 400;
    letter-spacing: -.1px;
    font-size: 14px;
    line-height: 16px;
    align-self: flex-end;
    margin-left: 24px;
}

.v-icon {
    width: 16px;
    height: 16px;
}

/* === 6. POSITION =================================================================== */



/* === 7. TEST & TEMP =================================================================== */






/* External links aith target blank */
/*
a[target="_blank"]:after,
a[target="blank"]:after {
content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
margin: 0 0 0 2px;
opacity: 0.2;
}
*/

/* .list-group .active {
font-weight: bold;
background-color: #999;
color: var(--v-color-1);
border-color: #999
} 
*/

/*   color: var(--v-btn-color-1);
color: var(--v-btn-color-2);
*/