/* Styles common for all the pages in the project */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i&display=swap&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese');

html, body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;

    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

    background-color: #fff;
}

* {
    box-sizing: border-box;
}

.height_full {
    height: 100%;
}

.clickable {
    cursor: pointer;
    user-select: none;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes fadein {
      0% { opacity: 0; }
    100% { opacity: 1; }
}
