* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*:root {*/
/*    --test: black*/
/*}*/

*::-webkit-scrollbar {
    width: 4px;
    background-color: white;
}

*::-webkit-scrollbar-thumb {
    background-color: #E6E6ED;
}

*::-webkit-scrollbar-track {
    background-color: #F8F9FA;
}

body {
    font-family: "Ubuntu", sans-serif;
    background-color: #f1f2f4;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.body_s {
    font-size: small;
    font-weight: 300;
    line-height: 170%
}

.body_m {
    font-size: medium;
    font-weight: 300;
    line-height: 170%
}

.subtitle_2 {
    font-size: medium;
    font-weight: 500;
    line-height: 140%
}

/*content component*/

.container {
    background: #fff;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -100px;
    height: calc(100vh - 90px);
    border-radius: 16px;
    position: relative;
}

@media only screen and (min-height: 1000px) {
    .container {
        height: calc(100vh - 85px);
    }
}

/*Modal Component*/

.modal-overlay {
    position: fixed;
    inset: 0;
    opacity: 1;
    background: #11172733;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-window {
    background: white;
    border-radius: 8px;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

* {
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

*, body, html {
    font-family: 'Ubuntu', sans-serif;
}

html, body {
    min-height: 100%;
    height: 100%;
}

button {
    color: #000;
    padding: 0;
    cursor: pointer;
    border: none;
    background-color: transparent;
    outline: transparent !important;
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

a:hover, a:active, a:focus {
    text-decoration: none;
}

.app {
    height: 100%;
}

.wrapper {
    height: 100%;
    width: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
}

.main {
    flex: 1 0 auto;
}

[v-cloak] {
    opacity: 0;
}
