body {
    font-family: Roboto,Noto,Helvetica,Arial,sans-serif;
    line-height: 1.15;
    padding-top: 64px;
    transition: all .2s cubic-bezier(.4,0,.2,1);
}

@media (prefers-color-scheme: dark) {
    .layout-auto {
        color: #fff !important;
        background-color: #303030 !important;
    }
}

.layout-dark {
    color: #fff !important;
    background-color: #303030 !important;
}

header {
    top:0;
    left:0;
    right:0;
    position:absolute;
    height: 64px;
    line-height: 64px;
    color: #fff !important;
    display:flex;
    width:100%;
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    z-index: 999;
}

@media (prefers-color-scheme: dark) {
    .layout-auto header {
        background-color: #212121;
    }
}

@media (prefers-color-scheme: light) {
    .layout-auto header {
        background-color: #3f51b5;
    }
}

.layout-dark header {
    background-color: #212121;
}

.layout-light header {
    background-color: #3f51b5;
}

header .title {
    margin: 0 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 64px;
}

header .subTitle {
    margin: 0 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .02em;
    color: #EEEEEE;
}

@media (prefers-color-scheme: dark) {
    .layout-auto header .subTitle {
        color:#a2a2a2;
    }
}

.layout-dark header .subTitle {
    color:#a2a2a2;
}

header .space {
    flex-grow: 1;
}

header .btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items:center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    transition: all .2s cubic-bezier(.4,0,.2,1),box-shadow .2s cubic-bezier(.4,0,1,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

header .btn:hover {
    background-color: rgba(255,255,255,.1);
}

header .btn:disabled {
    display: none;
}

.container {
    padding-top: 2em;
    position: relative;
    width: 92%;
    max-width: 1280px;
    box-sizing: border-box;
    padding-right: 8px;
    padding-left: 8px;
    margin-right: auto;
    margin-left: auto;
    display:grid;
    grid-template-columns: 25% 5% 70%;
}

@media only screen and (max-width:600px) {
    .container {
        padding-top:1em;
        grid-template-columns: 100%;
        width: 100%;
    }
}

.card {
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
    margin-bottom: 1em;
}

.card:last-child {
    margin-bottom: 0;
}

#col-1 .up {
    position: sticky;
    top:2em;
}

#col-1 .down {
    position: fixed;
    bottom: 1em;
}

@media only screen and (max-width:600px) {
    #col-1 .down {
        display: none;
    }
}

#col-1 .hide {
    display: none;
}

.card:hover {
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
    transition: box-shadow .25s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .25s cubic-bezier(.4,0,.2,1);
}

.card .img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card .card-body {
    padding: 1.25rem;
}

.card .card-title {
    margin-bottom: .75rem;
    font-size: 1.6rem;
    margin-top: 0;
}

.card .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    border-top: inherit;
    border-top-width: inherit;
    border-bottom: inherit;
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color:inherit;
    border: 1px solid rgba(0,0,0,.125);
    transition: background-color .3s cubic-bezier(.4,0,.2,1);
    font-size: 1.2rem;
}

.list-group a {
    text-decoration: none;
    color: inherit;
}

.layout-light .list-group-item:hover {
    background-color: rgba(0,0,0,.08);
}

.layout-dark .list-group-item:hover {
    background-color: rgba(255,255,255,.08);
}

@media (prefers-color-scheme: dark) {
    .layout-auto .list-group-item:hover {
        background-color: rgba(255,255,255,.08);
    }
}

@media (prefers-color-scheme: light) {
    .layout-auto .list-group-item:hover {
        background-color: rgba(0,0,0,.08);
    }
}

#col-1 .icon {
    margin-right: 20px;
}

#col-3 .icon {
    margin-right: 12px;
}

.card .typo {
    line-height: 1.8;
    word-wrap: break-word;
}

.card .typo p:last-child {
    margin-bottom: 0;
}

.card .typo b {
    font-size: 1.2rem;
}

.card .right {
    float:right;
    position: relative;
    box-sizing: border-box;
    min-width: 88px;
    height: 28px;
    padding: 0 16px;
    overflow: hidden;
    color: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: .04em;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border: none;
    border-radius: 2px;
    color:#fff;
}

@media only screen and (max-width:600px) {
    .card .right {
        float: none;
        display: inline-block;
        margin-left: 0.5em;
    }
}

.card .pink {
    background-color: #ff4081;
}

.card .indigo {
    margin-right: 0.5em;
    background-color: #536DFE;
}

.card .right .icon {
    margin-left: 4px;
    margin-right: 0 !important;
}

.list-group .func {
    background-color: #3f51b5;
    color:#fff;
    cursor: pointer;
    transition: opacity .3s cubic-bezier(.4,0,.2,1);
    font-size:1rem;
}

.list-group .func:hover {
    opacity: .87;
    background-color: #3f51b5;
}

#toTop {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px);
}