/* IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* MAIN */
.rbutton.rbutton__circle > .wrapper > button > i {
    padding: 6px 0px;
}
body {
    margin: 0;
    background: #fafafa;
}

.content__wrapper {
    position: absolute;
    left: 256px;
    top: 64px;
    height: calc(100% - 64px);
    width: 960px;
    padding: 0 calc((100% - (256px + 960px)) / 2);
}

#content {
    overflow-x: hidden;
    overflow-y: auto;
    width: 958px;
    height: 100%;
    background: #fff;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
}

.content__title,
.user-sets > h2{
    margin: 0;
    padding: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 24px;
    border-bottom: 1px solid #dbdbdb;
}

.card__background,
.notification__background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.card__wrapper {
    position: fixed;
    height: 550px;
    width: 750px;
    top: 50%;
    bottom: 50%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 4px;
}

.card__background > .card__wrapper > .card {
    height: calc(550px - (8px * 2));
    padding: 8px;
}

.card__header > div,
.notification__header > div {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    user-select: none;
}

.card__header > .card__title-holder,
.notification__header > .notification__title-holder {
    vertical-align: top;
    padding-left: 10px;
    width: 680px;
    height: 44px;
}

.card__header > .card__title-holder > span,
.notification__title-holder > span {
    line-height: 44px;
}

.card__header > .card__close-holder,
.notification__header > .notification__close-holder {
    width: 44px;
    height: 44px;
}

.card__header > .card__close-holder > i,
.notification__close-holder > i {
    cursor: pointer;
    padding: 10px;
}

.notification__wrapper {
    position: fixed;
    width: 750px;
    height: 175px;
    top: 30%;
    bottom: 50%;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #fff;
    border-radius: 4px;
}

.notification {
    height: 159px;
    padding: 8px;
}

.notification__message {
    height: 63px;
    margin: 0;
    padding-left: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

.notification__footer-buttons {
    float: right;
}

.notification__footer-buttons > .rbutton {
    display: inline-block;
}

.seperator {
    height: 1px;
    background: #dbdbdb;
    margin: 15px 0px;
}

.set__wrapper {
    padding: 0px 0px 0px 13px;
    height: 44px;
    user-select: none;
    cursor: default;
}

.set__wrapper > div {
    display: inline-block;
    height: 44px;
    vertical-align: top;
}

.set__wrapper > div:not(.set-button__holder) {
    width: calc((100% - 88px) / 2);
}

.set__wrapper > div > span {
    display: block;
    font-size: 20px;
    font-family: 'Roboto', 'Arial', sans-serif;
    padding: 10px 0px;
}

.search-results {
    padding: 15px 15px 0px 15px;
    border-top: 1px solid #dbdbdb;
}

.search-results > h2 {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 400;
    padding-bottom: 15px;
    margin: 0;
}

/* HEADER */
header {
    height: 64px;
    width: 100%;
    background: #2962ff;
    z-index: 2;
}

header > h1.title {
    display: inline-block;
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    height: 64px;
    line-height: 64px;
    padding-left: 32px;
}

header > div {
    float: right;
    display: inline-block;
    padding: 6px 0px;
}

header > div .rbutton {
    display: inline-block;
}

/* NAVIGATION */
nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 256px;
    height: calc(100% - 64px);
    border-right: 1px solid #dbdbdb;
    background: #fff;
}

nav > a:visited {
    color: #000
}

nav > a {
    display: block;
    height: 24px;
    color: #000;
    padding: 10px;
    text-decoration: none;
    transition: 0.2s background;
}

nav > a:hover {
    background: rgba(0, 0, 0, 0.1);
}

nav > a > div {
    display: inline-block;
    font-family: 'Roboto', 'Arial', sans-serif;
    padding-left: 10px;
    vertical-align: top;
}

nav > a > div > span {
    display: block;
    padding: 2.5px 0px;
}

/* SPINNER */
.spinner__background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    user-select: none;
    cursor: default;
    z-index: 1000;
}

.spinner__wrapper {
    display: inline-block;
    position: fixed;
    top: 30%;
    left: calc((100% - 48px) / 2);
}

.spinner__wrapper > .spinner {
    font-size: 48px;
    -webkit-animation-name: spinner;
    -moz-animation-name: spinner;
    animation-name: spinner;
    animation-delay: 0.2s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.54, -0.73, 0.52, 1.4);
    animation-duration: 0.75s;
}

@keyframes spinner {
    100% { transform: rotateZ(360deg); }
}