@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600,700|Raleway&display=swap');

:root {
    --header-height: 65px;
}

html, body {
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
    font-weight: 300;
}

h1 {
    font-weight: 100;
    font-size: 2.5em;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #B21D12;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 9pt;
}

pre > code {
    color: #000;
}

.app {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.app > * {
    margin: 0;
    padding: 0;
}

.fill {
    width: 100%;
    height: 100%;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.bottom {
    position: absolute;
    bottom: 0%;
    left: 0;
    right: 0;
}

.header {
    font-family: 'Montserrat';
    padding: 0 20px;
    border-bottom: 1px solid #f6f6f6;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header-menu {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-end;
}

.header-menu a {
    text-decoration: none;
    color: #444;
    background: #fff;
    line-height: var(--header-height);
    padding: 0 20px;
    vertical-align: middle;
    transition: 0.25s ease background;
}

.header-menu a:hover {
    background: #eee;
}

.header-menu div {
    text-decoration: none;
    color: #444;
    background: #fff;
    line-height: var(--header-height);
    padding: 0 20px;
    vertical-align: middle;
}

.header__name {
    font-weight: 100;
    text-decoration: none;
    color: #000;
}

.header__separator {
    opacity: 0.3;
}

.header__user {
    font-weight: 100;
}

.header__collection {
    font-weight: 300;
    text-transform: lowercase;
}

.sidebar-menu {
    position: fixed;
    left: 0;
    top: var(--header-height);
    bottom: 0;
}

.content {
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.collection-card {
    margin-bottom: 40px;
}

.collection-card__buttons {
    float: right;
    margin: 12px;
}

.idea {
    margin-left: 30px;
    margin: 30px;
    position: relative;
    display: inline-block;
    text-align: left;
}

.idea__title {
    font-weight: 100;
}

.idea__title::before {
    position: absolute;
    content: "\201C";
    display: inline-block;
    opacity: 0.3;
    font-weight: 400;
    top: 10px;
    left: -40px;
    font-size: 40px;
    width: 40px;
    text-align: right;
}

.idea__description {

}

.new-idea-form {
    margin: 0 auto;
    max-width: 960px;
}

.el-tag + .el-tag {
    margin-left: 10px;
}

.button-new-tag {
    margin-left: 10px;
    height: 32px;
    line-height: 30px;
    padding-top: 0;
    padding-bottom: 0;
}

.input-new-tag {
    width: 90px;
    margin-left: 10px;
    vertical-align: bottom;
}

.el-avatar {
    vertical-align: middle;
    margin: 20px
}

.el-select .el-input {
    width: 140px;
}