﻿:root {
    --h-top-hgt: 10rem;
    --left-area: 19rem;
    --star: #ff6a00;
}

.tt{
    position: relative;
}

.tt:hover::after{
    content: attr(data-tt);
    position: absolute;
    top: -3.5rem;
    left: -2rem;
    background-color: var(--cbgo);
    color: var(--t2);
    font-family: 'Roboto';
    padding: .2rem 1rem;
    border-radius: 1rem;
    cursor: initial;
}

.container-w {
    width: 100%;
    text-align: center;
    top: var(--h-top-hgt);
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    display: inline-flex;
    text-align: left;
    margin-top: 2.5rem;
}

.stretch-menu{
    display: none;
}

.stretch-teams{
    height: 100%;
    display: flex;
    text-align: right;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

.team-members {
    position: relative;
    display: inline-block;
    flex: 1;
    user-select: none;
}

.teams-title{
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 1.7rem 0 2.2rem;
}

.teams-title p{
    margin: 0;
    font-family: Verdana;
    font-size: 2.2rem;
    letter-spacing: .15rem;
    color: var(--t4);
}

.team-member {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5rem;
    margin: 0 .75rem;
    opacity: .73;
    cursor: pointer;
}

.op-tx1 {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.team-member:hover{
    opacity: 1;
}

.team-member p{
    margin: 0;
    flex: 1;
    padding: .5rem 0;
    font-size: 1.30rem;
    font-family: 'Roboto';
    font-weight: 400;
    max-width: 5rem;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.team-member p:first-child{
    opacity: 0;
}

.op-tx2 {
    -webkit-transition: opacity .7s ease;
    transition: opacity .7s ease;
}

.team-members:hover > .team-member > p:first-child {
    opacity: 1;
}

.team-member p:last-child{
    font-size: 1.15rem;
    font-weight: 100;
    opacity: .75;
}

.member-profile {
    width: 100%;
    max-width: 5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0 1rem 0 1rem;
    position: relative;
}

.member-profile img {
    width: 90%;
    border-radius: 50%;
}

.member-online::after{
    content: '';
    position: absolute;
    width: .65rem;
    height: .65rem;
    background-color: var(--online);
    bottom: -.45rem;
    left: 1rem;
    border-radius: 50%;
    z-index: 999;
}

/****************************** END HEADER *********************************/

.hl-active{
    font-weight: 600;
    color: var(--t3) !important;
}

.h-left{
    z-index: 1000;
}

.h-left-title{
    color: var(--t3);
    user-select: none;
}

.h-left-opt {
    text-indent: 2rem;
    cursor: pointer;
    color: var(--t4);
}

.h-left-team-name {
    color: var(--cbg100blue) !important;
    opacity: 1 !important;
    padding: 10px 0 0 10px;
}

.h-left-teams {
    padding: 1rem 0;
    background-color: var(--cbg2);
    position: absolute;
    left: 100%;
    white-space: nowrap;
    top: .75rem;
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
    display: none;
    -webkit-animation: tfi .7s ease;
    animation: tfi .7s ease;
}

.teams-active{
    color: var(--cbg100blue) !important;
}

#hl-works:hover{
    font-weight: 600;
}

@-webkit-keyframes tfi{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100;
    }
}

@keyframes tfi{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}

.teams-show{
    display: grid !important;
}

.h-left-teams p{
    margin: 0;
    padding: .5rem 2rem;
    cursor: pointer;
}

.h-left-teams p:hover{
    background-color: var(--cbg3);
}

.h-left-opt:hover{
    opacity: 1;
    font-weight: 600;
    color: var(--t3);
}

.h-left-team-name i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 55% 0%;
    transform-origin: 55% 0%;
    color: var(--t3);
    opacity: .35;
}

.h-left-team-name:hover i{
    opacity: 1;
}

.h-left-cur{
    margin-top: 2.15rem;
    user-select: none;
}

.h-left-prem{
    margin-top: 2.15rem;
    user-select: none;
}

/* END LEFT COL */

.content {
    width: 100%;
    position: relative;
}

.dash-header{
    display: flex;
    font-size: 1.6rem;
    font-family: Roboto;
    justify-content: center;
    user-select: none;
    border-bottom: 2px solid var(--cbg2);
    margin-bottom: 2.2rem;
}

.dash-header > *{
    margin: 0 2rem;
    cursor: pointer;
}

.dash-header > *:hover img{
    filter: unset;
    -webkit-filter: unset;
}

.dash-header > *:hover p{
    opacity: .8;
}

.dash-novels{
    padding-bottom: calc(.33rem + 3px);
}

.dash-novels::after{
    background-color: rgb(192, 75, 0);
}

.dash-active{
    position: relative;
}

.dash-active::after{
    position: absolute;
    width: 130%;
    height: 3px;
    content: '';
    left: -15%;
    bottom: 1px;
    filter: grayscale(.58);
    -webkit-filter: grayscale(.58);
}

.dash-active img{
    filter: unset !important;
    -webkit-filter: unset !important;
}

.dash-active p{
    opacity: 1 !important;
}

.dash-uni::after {
    background-color: rgb(102, 81, 203);
}

.dash-header p{
    margin-left: .8rem;
    letter-spacing: .15rem;
    opacity: .6;
}

.dash-header img{
    max-height: 3.2rem;
    background-color: var(--cbg4);
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

.dash-header > * > *{
    display: inline-block;
    vertical-align: middle;
}

.cnu-show {
    opacity: 1 !important;
    -webkit-transition: opacity .8s ease, margin-top .45s ease;
    transition: opacity .8s ease, margin-top .45s ease;
}

.cnu-hide{
    display: none !important;
}

.create-novels {
    width: 95%;
    left: 2.5%;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    opacity: 0;

}

.cn-grid .c-novel {
    position: relative;
    width: 145px;
    height: 218px;
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
    margin: 1rem 2rem 5rem 2rem;
    user-select: none;
    cursor: pointer;
} .cn-list .c-novel {
      width: 100%;
      padding: .5rem 0;
      user-select: none;
      cursor: pointer;
  } .cn-list .c-novel:hover{
        background-color: var(--cbg2);
    }

.cn-grid .c-novel-o{
    width: 100%;
    height: 100%;
    position: relative;
} .cn-list .c-novel-o{
      display: none;
  }

.cn-grid .c-novel-o img{
    width: calc(100% + 2px);
    min-height: calc(100% + 0px);
    position: absolute;
    top: calc(50% + 0px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cn-grid .c-novel-t {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--a1);
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    user-select: none;
} .cn-list .c-novel-t{
      display: flex;
      align-items: center;
  }

.cn-grid .c-novel-t p {
    margin: 0 4%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cn-grid .c-novel-t p:first-child{
    font-family: 'Open Sans';
    font-size: 1.5rem;
    font-weight: 600;
    padding: .75rem 0 .75rem 0;
    color: var(--a1t);
    display: none;
} .cn-list .c-novel-t p:first-child{
    font-family: 'Open Sans';
    font-size: 1.75rem;
    font-weight: 600;
    padding: .25rem 0;
    margin: 0;
    color: var(--t4);
  }

.cn-grid .c-novel-t p:last-child{
    padding: .5rem 0;
    font-family: 'Roboto';
    color: var(--t4);
    font-size: 1.1rem;
    display: none;
} .cn-list .c-novel-t p:last-child{
    font-family: 'Roboto';
    font-size: 1.4rem;
    font-weight: 600;
    padding: .25rem 0;
    margin: 0;
    flex: 1;
    text-align: right;
  }

.c-btns{
    width: 100%;
    margin: 2rem auto 0 auto;
    font-size: 0;
}

.c-view-c, .c-create-c{
    width: 50%;
    display: inline-flex;
    user-select: none;
}

.c-view-c{
    justify-content: flex-end;
}

.c-view-c i{
    margin-right: 1rem;
}

.c-view-c > p{
    cursor: pointer;
}

.c-create-c{
    justify-content: flex-start;
}

.c-btns p{
    display: inline-block;
    font-family: 'Roboto';
    font-weight: 600;
    border-radius: 2rem;
    text-align: center;
    font-size: 1.4rem;
    color: var(--t3);
    margin: 0;
}

.c-create-c > a > p {
    padding: .5rem 2.5rem;
    background-color: var(--a2);
    color: var(--a2t);
}

.create-uni {
    opacity: 0;
    position: absolute;
    width: 95%;
    margin-left: 2.5%;
}

.unis{
    display: flex;
    flex-wrap: wrap;
}

.uni-c {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 3px 3px 15px black;
    margin: 4rem 5rem 6.5rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
}

.uni-c:first-child{
    margin-left: 0 !important;
}

.uni-c:last-child{
    margin-right: 0 !important;
}

.uni-c::before{
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cbg2);
    opacity: .88;
    filter: drop-shadow(4px 4px 4px cbgo);
    border-radius: 50%;
    z-index: -1;
}

.uni-c::after{
    position: absolute;
    left: -4px;
    top: -4px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--cbg2);
    border-radius: 50%;
    z-index: -1;
    content: '';
    opacity: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.uni-c:hover::after{
    opacity: 1 !important;
}

.uni-c:hover p{
    box-shadow: 0 0 12px black;
}

.uni-c p {
    font-family: 'Roboto';
    font-size: 1.4rem;
    padding: .3rem 2.4rem;
    background-color: var(--a2);
    color: var(--a2t);
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 0 0px black;
    -webkit-transition: all .7s ease;
    transition: all .7s ease;
    max-width: 95%;
    overflow: hidden;
}

.cu-info{
    font-size: 1.5rem;
    font-family: 'Open Sans';
    max-width: 50%;
    text-align: justify;
    color: var(--t4);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.cu-info:hover{
    color: var(--t3);
}

/* Members area */

.m-headers{
    font-size: 1.5rem;
    font-family: 'Roboto';
    user-select: none;
}

.m-headers p{
    display: inline-block;
    margin: 0;
    color: var(--t4);
    font-weight: 400;
}

.m-headers > *:nth-child(1), .member-c > *:nth-child(1){
    width: 5%;
    min-width: 5rem;
    max-width: 6rem;
    margin: 0 .5rem;
}

.m-headers > *:nth-child(2), .member-c > *:nth-child(2){
    width: 20%;
    min-width: 16rem;
    max-width: 20rem;
    margin: 0 .5rem;
}

.m-headers > *:nth-child(3), .member-c > *:nth-child(3){
    width: 15%;
    min-width: 13rem;
    max-width: 17rem;
    margin: 0 1rem;
}

.m-headers > *:nth-child(4), .member-c > *:nth-child(4){
    width: 15%;
    min-width: 13rem;
    max-width: 17rem;
    margin: 0 1rem;
}

.m-headers > *:nth-child(5), .member-c > *:nth-child(5){
    width: 25%;
    min-width: 19rem;
    max-width: 22rem;
    margin: 0 1rem;
}

.member-c{
    margin-top: .5rem;
    user-select: none;
}

.member-c > *{
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-family: 'Roboto';
    font-weight: 500;
    margin: 0;
    text-indent: 2px;
}

.perms > div{
    margin: 0;
    position: relative;
    display: inline-block;
    padding: .25rem .65rem;
    cursor: pointer;
}

.perms > div:first-child{
    margin-left: -.65rem;
}

.member-c img{
    border-radius: 50%;
}

.noperm{
    color: var(--t4);
    position: relative;
}

.noperm > i{
    opacity: .55;
}

.noperm::after{
    content: unset; /* Disabled for now */
    position: absolute;
    width: 3px;
    height: 110%;
    background-color: var(--t4);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    left: calc(50% + 1px);
    top: -5%;
    opacity: .55;
}

.noperm:hover::after{
    content: unset;
}

.noperm:hover{
    color: var(--t3) !important;
}

.perms > div > p{
    position: absolute;
    top: calc(-1.5rem - 1.5rem);
    left: -100%;
    font-size: 1.4rem;
    background-color: var(--cbgo);
    border-radius: .6rem;
    color: var(--t1);
    margin: 0;
    padding: .1rem 1rem;
    display: none;
}

.perms > div:hover > p{
    display: initial;
}

/* End Members*/

.req-t{
    font-size: 1.8rem;
    font-family: Verdana;
    width: 95%;
    color: var(--cbg100blue);
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--cbg3);
    margin: 2rem auto;
}

.r-headers, .req-s-c{
    font-size: 1.5rem;
    font-family: 'Roboto';
    user-select: none;
    display: flex;
    width: 95%;
    align-items: center;
    margin: auto;
}

.r-headers p{
    display: inline-block;
    margin: 0;
    color: var(--t4);
    font-weight: 400;
    flex: .33;
}

.r-headers > *:nth-child(1), .req-s-c > *:nth-child(1){
    flex: .05;
    width: 0;
    margin-left: .5rem;
    border-radius: 50%;
}

.r-headers > *:nth-child(2), .req-s-c > *:nth-child(2){
    text-indent: 1rem;
}

.r-headers > *:last-child, .req-s-c > *:last-child{
    flex: .03;
    color: var(--error);
    opacity: .6;
    padding: .35rem;
}

.req-s-c > *:last-child{
    cursor: pointer;
    position: relative;
    font-size: 1.8rem;
}

.req-s-c > *:last-child:hover{
    opacity: 1;
}


.req-s-c > *{
    display: inline-block;
    font-size: 1.5rem;
    font-family: 'Roboto';
    font-weight: 500;
    margin: 0;
    flex: .33;
}

.r-status i{
    color: var(--cbg100blue);
    opacity: 1;
    font-size: 1.8rem;
}

.req-s-c > div > p {
    position: absolute;
    top: calc(-1.5rem - 1.5rem);
    left: -100%;
    font-size: 1.4rem;
    background-color: var(--cbgo);
    border-radius: .6rem;
    color: var(--t1);
    margin: 0;
    padding: .1rem 1rem;
    display: none;
}

.req-s-c > div:hover > p {
    display: initial;
}

.space{
    margin-bottom: 12rem;
}

.rr-c{
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: auto;
    max-width: 1024px;
    user-select: none;
}

.rr-stats{
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: 'Roboto';
    flex: .25;
}

.rr-s{
    display: inline-block;
    position: relative;
    padding: 1rem 1rem;
    cursor: pointer;
    color: var(--t4);
}

.rr-s section{
    display: inline-block;
    margin-right: 1rem;
}

.rr-s > div > p{
    position: absolute;
    top: calc(-1.6rem * 2);
    left: -100%;
    white-space: nowrap;
    font-size: 1.4rem;
    font-family: 'Roboto';
    background-color: var(--cbgo);
    border-radius: .6rem;
    color: var(--t1);
    margin: 0;
    padding: .1rem 1rem;
    display: none;
}

.rr-s:hover > div > p{
    display: initial;
}

.rr-prof{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: .45;
}

.rr-prof img{
    width: 100%;
    max-width: 55px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3rem;
}

.rr-prof > p{
    font-size: 1.8rem;
    display: inline-block;
    vertical-align: middle;
    font-family: 'Open Sans';
    font-weight: 600;
}

.rr-c:hover > .rr-prof > *:last-child{
    display: initial;
}

.rr-actions {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex: .2;
}

.rr-actions > *:first-child{
    color: var(--check);
}

.rr-actions > *:nth-child(2){
    color: var(--error);
}

.rr-actions > *:nth-child(3){
    color: var(--t3);
}

.rr-ad {
    display: inline-block;
    position: relative;
    padding: 1rem 1rem;
    cursor: pointer;
    border: 1px solid var(--cbg3);
    border-radius: 50%;
    font-size: 1.4rem;
}

.rr-ad > div > p {
    position: absolute;
    top: calc(-1.6rem * 2);
    left: -100%;
    white-space: nowrap;
    font-size: 1.4rem;
    font-family: 'Roboto';
    background-color: var(--cbgo);
    border-radius: .6rem;
    color: var(--t1);
    margin: 0;
    padding: .1rem 1rem;
    display: none;
}

.rr-ad:hover > div > p {
    display: initial;
}

/* Create Settings */

.setting-w{
    width: 90%;
    margin: auto;
}

.setting-select * {
    display: inline-block;
    font-family: 'Roboto';
    letter-spacing: .07rem;
    font-size: 1.5rem;
    margin: 0;
}

.setting-select select{
    color: var(--t3);
    margin-top: 2rem;
    margin-right: 2rem;
    border: none;
    padding: .4rem .5rem;
    background-color: var(--cbg3);
}

.setting-select select:focus{
    outline: none;
}

.chk-w{
    display: flex;
    align-items: center;
    margin: 2.25rem 0;
}

.chk-w > p{
    display: inline-block;
    font-family: 'Roboto';
    font-size: 1.5rem;
    margin: 0 0 0 2rem;
    letter-spacing: .07rem;
}

.setting-chk-c {
    min-width: 5.6rem;
    height: 2.15rem;
    background-color: var(--cbg3);
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    opacity: .8;
    user-select: none;
    cursor: pointer;
}

.setting-chk-c input{
    display: none;
}

.setting-chk-btn{
    position: absolute;
    left: .3rem;
    width: 1.6rem;
    height: 1.6rem;
    background-color: var(--cbg2);
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: .7;
}

.setting-chk-c > .checked ~ .setting-chk-btn{
    left: calc(100% - 2rem);
    background-color: var(--cbg100blue);
    opacity: 1;
}

#setting-save, #setting-cancel{
    font-size: 1.5rem;
    font-family: Verdana;
    padding: .4rem 2.5rem;
    background-color: var(--a2);
    width: auto;
    border-radius: 2rem;
    user-select: none;
    cursor: pointer;
    display: none;
    color: var(--a2t);
}

.setting-show-btn{
    display: inline-block !important;
}

#setting-cancel{
    background-color: var(--cbg3);
    margin-left: 2rem;
    color: var(--t3);
}

.s-delete-c{
    position: fixed;
    bottom: .5rem;
    font-family: Verdana;
    font-size: 1.4rem;
    color: var(--t1);
    padding: .5rem 2rem;
    background-color: var(--important);
    border-radius: 3px;
    cursor: pointer;
}

.s-delete-c > p{
    margin: 0 ;
}

/* END Create Settings */

/* Objects */

.obj-c{
    font-family: Verdana;
    cursor: pointer;
    opacity: 1;
    position: relative;
    color: var(--t3);
    width: 90%;
    margin: 1.65rem auto;
}

.obj-c > i{
    position: absolute;
    right: 2rem;
    font-size: 2.2rem;
    top: calc(50% - 1.1rem);
}

.obj-c:hover > i{
    color: var(--cbg100blue);
}

.coe-chars > div:nth-child(2){
    margin-top: .65rem;
}

.obj-info > *{
    border: 1px solid var(--cbg3);
}

.obj-info {
    display: flex;
    font-family: 'Open Sans';
    flex: 1;
    justify-content: center;
    align-items: center;
    background-color: var(--cbg2);
}

.obj-info p{
    margin: 0;
    font-size: 1.5rem;
    opacity: .75;
    padding: 2rem;
}

.obj-info > *:nth-child(1){
    flex: .11;
}

.obj-info > *:nth-child(2){
    flex: .22;
}

.obj-info > *:nth-child(3){
    flex: .13;
}

.obj-info > *:nth-child(4){
    flex: .13;
}

.obj-info > *:nth-child(5){
    flex: .13;
}

.obj-info > *:nth-child(6){
    flex: .28;
}

.obj-info-e {
    background-color: var(--cbg2);
    border-top: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
}

.obj-e > i{
    display: none;
}

.obj-e > .obj-info-e {
    padding: .5rem;
    border: 1px solid var(--cbg3);
    height: unset;
}

.obj-e > *{
    background-color: var(--cbg3);
}

.obj-e > .obj-info > * {
    border: 1px solid var(--cbg2);
}

.obj-e > .obj-info-e{
    border: 1px solid var(--cbg2);
}

.obj-info-e > div{
    display: inline-block;
    text-align: center;
    width: 33%;
    opacity: .7;
    display: none;
}

.obj-info-e > .obj-desc{
    display: block;
    width: 100%;
    text-align: left;
    margin: .5rem 0;
    opacity: 1;
    white-space: pre-line;
}

.obj-desc > p:first-child {
    font-size: 1.5rem;
    opacity: .45;
    position: relative;
    top: -1rem;
}

.obj-desc > p:last-child{
    font-size: 1.5rem;
}

.obj-info-e > div > p{
    font-size: 1.2rem;
    color: var(--t3);
    opacity: .7;
    margin: 0;
    display: inline-block;
}

.obj-info-e > .obj-opts-c{
    font-size: 1.4rem;
    color: var(--t3);
    display: block;
    width: 100%;
    text-align: right;
    cursor: initial;
}

.obj-opts-c > i{
    cursor: pointer;
    margin: 0 .5rem;
    padding: .25rem .5rem;
}

.obj-opts-c > i:hover{
    color: var(--cbg100blue);
}

.obj-c:hover > * {
    opacity: 1;
}

.obj-parent {
    height: calc(100vh - var(--h-top-hgt) - 6rem);
    overflow: hidden;
    white-space: nowrap;
}

.objects {
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    margin-left: 0%;
    -webkit-transition: margin .3s ease;
    transition: margin .3s ease;
    display: inline-block;
}

.obj-left{
    margin-left: -100%;
}

.new-obj > div{
    -webkit-animation: newobj 2.4s ease;
    animation: newobj 2.4s ease;
}

@-webkit-keyframes newobj{
    0%{
        background-color: var(--cbg100blue);
    }
    100% {
        background-color: var(--cbg2);
    }
}

@keyframes newobj {
    0% {
        background-color: var(--cbg100blue);
    }

    100% {
        background-color: var(--cbg2);
    }
}

.new-object-c{
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.no-c {
    font-family: 'Open Sans';
    margin: 1rem 0 2rem 0;
}

.no-c > p{
    font-size: 1.4rem;
    margin: 0 0 .75rem 0;
    color: var(--t4);
    display: none;
}

.no-c > select{
    color: var(--t3);
    width: 15rem;
    font-size: 1.6rem;
    padding: .25rem;
    background-color: var(--cbg2);
    border: 1px solid var(--cbg3);
    height: 3rem;
}

.no-c > select:focus{
    outline: none;
}

.no-c > input{
    font-size: 1.6rem;
    padding: .6rem 0;
    width: 25rem;
    text-indent: 5px;
    background-color: var(--cbg2);
    color: var(--t3);
    border: 1px solid var(--cbg3);
}

.no-c > input:focus{
    outline: none;
}

#coe-desc {
    resize: none;
    overflow: hidden;
    min-height: 13rem;
    max-height: 20rem;
    width: 94%;
    font-family: 'Roboto';
    font-size: 1.6rem;
    background-color: var(--cbg2);
    color: var(--t3);
    padding: 1rem .5rem;
    border: 2px solid var(--cbg3);
}

#coe-desc:focus{
    outline: none;
}

.coe-header{
    width: 90%;
    margin: 0 auto;
}

.coe-header > div{
    display: flex;
}

.coe-header > div > p {
    margin: 0 0 1rem 0;
    padding: 1rem 2rem;
    font-family: 'Open Sans';
    font-size: 1.5rem;
    color: var(--cbgo);
    position: relative;
    cursor: pointer;
}

.coe-header > div > p > i{
    position: absolute;
    top: calc(50% - .8rem);
    margin-left: 1rem;
    font-size: 1.8rem;
    color: var(--t4);
    display: none;
}

.coe-header > div > p:hover > i{
    color: var(--cbg100blue);
}

.obj-fd i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block !important;
}

.obj-fu i {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    display: inline-block !important;
}

.coe-header > div > *:nth-child(1) {
    flex: .11;
}

.coe-header > div > *:nth-child(2) {
    flex: .22;
}

.coe-header > div > *:nth-child(3) {
    flex: .13;
}

.coe-header > div > *:nth-child(4) {
    flex: .13;
}

.coe-header > div > *:nth-child(5) {
    flex: .13;
}

.coe-header > div > *:nth-child(6) {
    flex: .28;
}

.add-center{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 1rem;
    left: calc(50% - 2.5rem);
    z-index: 1;
}

#ac-cs{
    display: none;
}

#ac-cs > p{
    margin: 0 1rem;
    font-size: 1.6rem;
    padding: .4rem 2rem;
    border-radius: 1rem;
    font-family: 'Roboto';
    cursor: pointer;
}

#ac-cs > p:first-child{
    background-color: var(--cbg3);
    color: var(--t3);
}

#ac-cs > p:last-child{
    background-color: var(--a2);
    color: var(--a2t);
}

#ac-cs > p > i{
    margin-right: 1rem;
}

.ac-cs-show{
    left: 0;
    width: 100%;
    bottom: 2rem;
}

.ac-cs-show > div:first-child{
    display: none !important;
}

.ac-cs-show > div:nth-child(2){
    display: flex !important;
    width: 100%;
    justify-content: center;
}

#add-new-item{
    font-size: 2rem;
    color: var(--a2t);
    cursor: pointer;
}

#add-new-item > p{
    background-color: var(--a2);
    padding: 1rem 1.25rem;
    border-radius: 50%;
    margin: 0;
}

/* END OBJECTS */

/* BOARD */

.board-parent {
    height: calc(100vh - var(--h-top-hgt) - 6rem);
    overflow-y: auto;
}

.board-selectors{
    margin: 1rem 2% 0 2%;
    width: 96%;
    display: flex;
    align-items: center;
    font-family: 'Roboto';
}

.board-selectors > *{
    display: inline-block;
    margin-right: 1.5rem;
}

.board-selectors > p{
    margin: 0;
    font-size: 1.9rem;
}

.b-sel{
    font-size: 0;
    font-family: Verdana;
    position: relative;
}

.b-sel > *{
    font-size: 1.4rem;
    background-color: var(--cbg3);
    color: var(--t3);
    border: none;
    margin: 0;
    padding: .5rem;
}

.b-sel input:focus{
    outline: none;
}

.b-sel > p{
    width: 13rem;
    display: inline-block;
}

#arc-s {
    width: 9.5rem;
    font-family: Verdana;
    margin-left: -14rem;
    padding-left: 4rem;
    background-color: transparent;
}

.sel2 > p{
    width: 11rem;
}

#chap-s {
    width: 4.5rem;
    font-family: Verdana;
    margin-left: -12rem;
    background-color: transparent;
    padding-left: 7rem;
}

#chap-options, #arc-options{
    display: none;
    position: absolute;
    z-index: 2;
}

#chap-options input, #arc-options input{
    width: 13rem;
    padding: .15rem 0;
    margin: .25rem 0;
    border: 0;
    font-size: 1.5rem;
    background-color: var(--cbg3);
    color: var(--t3);
    cursor: pointer;
    opacity: .65;
    display: none;
}

#chap-options input{
    width: 11rem;
}

#chap-options > .show-row, #arc-options > .show-row{
    display: initial ;
}

#chap-options input:hover, #arc-options input:hover{
    background-color: var(--cbg2);
}

/* END BOARD */

/* NOTES */

.notes-list{
    display: flex;
    flex-flow: row wrap;
    margin: 4rem 4% 0 4%;
}

.notes-list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: var(--cbg2);
}

.notes-list::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.notes-list::-webkit-scrollbar-thumb {
    background-color: var(--cbg1);
}

#no-notes{
    font-size: 1.6rem;
    font-family: 'Roboto';
    text-align: left;
    width: 95%;
    display: none;
}

.note {
    width: 95%;
    max-width: 21.25rem;
    height: 20rem; /* Old was max-height 16rem, height 95% */
    background-color: var(--note1);
    -webkit-transform-origin: 50% -50%;
    transform-origin: 50% -50%;
    box-shadow: -7px 10px 5px var(--notebg);
    margin-left: 1.5rem;
    color: var(--nt);
    user-select: none;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    display: none;
    flex-direction: column;
}

.show-note{
    display: flex !important;
}

.fa-trash-alt{
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 1.6rem;
    color: var(--t4);
    cursor: pointer;
    padding: .5rem;
    background-color: inherit;
}

.fa-trash-alt:hover{
    color: var(--error);
}

.note-title{
    margin: .5rem 0;
    text-indent: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.75rem;
    font-family: 'Roboto';
    font-weight: 600;
    width: 70%;
    background-color: transparent;
    border: 0;
}

.note-text{
    font-size: 1.625rem;
    margin: .5rem 1rem;
    font-family: 'Roboto';
    flex: 1;
    background-color: transparent;
    border: 0;
    resize: none;
}

.note-num{
    position: absolute;
    right: .5rem;
    top: .5rem;
    font-size: 1.8rem;
    margin: 0;
    font-family: Verdana;
    font-weight: 600;
    text-align: right;
    width: 20%;
    background-color: transparent;
    border: 0;
}

.note:hover {
    position: relative;
    z-index: 1;
}

.note:nth-child(2n+1):focus-within {
    -webkit-transform: rotate(0deg) scale(1.25) !important;
    transform: rotate(0deg) scale(1.25) !important;
    -webkit-transform-origin: 25% 50% !important;
    transform-origin: 25% 50% !important;
}

.note:nth-child(2n+2):focus-within {
    -webkit-transform: rotate(0deg) scale(1.25) !important;
    transform: rotate(0deg) scale(1.25) !important;
    -webkit-transform-origin: 62.5% 50% !important;
    transform-origin: 62.5% 50% !important;
}

.note:focus-within > p{
    opacity: 1 !important;
}

.note:nth-child(2n+1) {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
    margin-right: 3rem;
}

.note:nth-child(2n+2) {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    margin-left: 3rem;
    margin-top: 1.5rem;
}

.note:nth-child(2n+1):hover {
    -webkit-transform: rotate(0deg) scale(1.25);
    transform: rotate(0deg) scale(1.25);
    -webkit-transform-origin: 25% 50%;
    transform-origin: 25% 50%;
}

.note:nth-child(2n+2):hover {
    -webkit-transform: rotate(0deg) scale(1.25);
    transform: rotate(0deg) scale(1.25);
    -webkit-transform-origin: 62.5% 50%;
    transform-origin: 62.5% 50%;
}

.note:nth-child(3n+1) {
    background-color: var(--note1);
}

.note:nth-child(3n+2) {
    background-color: var(--note2);
}

.note:nth-child(3n+3) {
    background-color: var(--note3);
}

.note:nth-child(4n+4) {
    background-color: var(--note4);
}

/* Dialogs */

.dia1{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.dia1-z{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--diabg);
    top: 0;
    left: 0;
    opacity: .7;
    z-index: -1;
}

.dia1-a {
    width: 40rem;
    max-width: 90%;
    height: 70rem;
    max-height: 100%;
    background-color: var(--cbg2);
    box-shadow: 0 0 10px var(--cbg3);
    border: 1px solid var(--cbg3);
    position: relative;
}

.dia1-ht {
    margin: 0;
    text-align: left;
    font-family: Verdana;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--t1);
    background-color: var(--cbg1);
    padding: .5rem .25rem;
    text-indent: .5rem;
}

.dia1-ht i{
    margin-right: 1rem;
    color: var(--t4);
}

.dia-co-info{
    display: flex;
    height: 100%;
    width: 100%;
    text-align: left;
    flex-direction: column;
}

.dia-co-info > div{
    width: 100%;
    font-size: 1.4rem;
    font-family: 'Roboto';
}

.dci-name > p:first-child, .dci-seen > p:first-child{
    width: 20%;
    margin-left: 2.5%;
    font-weight: 500;
    color: var(--t4);
    user-select: none;
}

.dci-name > p:last-child, .dci-seen > p:last-child{
    color: var(--t3);
    margin-left: 2.5%;
    width: calc(75% - 5px);
    vertical-align: top;
}

.dci-name p{
    display: inline-block;
}

.dci-seen{
    padding-bottom: 1.8rem;
}

.dci-seen p{
    display: inline-block;
}

.dci-seen > div{
    display: inline-flex;
    flex-direction: column;
    margin-left: 2.5%;
}

.dci-seen > div > p{
    margin: .25rem 0;
}

.dci-ed {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    width: 90%;
}

.dci-ed p{
    margin: .25rem 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
}

.dci-ed > p:first-child{
    color: var(--t4);
    opacity: .8;
}

.dci-ed > p:last-child{
    color: var(--error);
    opacity: .8;
}

.dci-ed p:hover{
    opacity: 1;
}

#confirm-delete-c {
    position: fixed;
    background-color: var(--cbgo);
    color: var(--t1);
    min-width: 35rem;
    width: 35%;
    max-width: 48rem;
    top: 0;
    left: calc(50% - 17.5%);
    border-radius: .5rem;
    box-shadow: 0 0 5px var(--cbgo);
    display: none;
    --webkit-animation: cdc-in .3s ease forwards;
    animation: cdc-in .3s ease forwards;
    font-family: 'Open Sans';
}

@-webkit-keyframes cdc-in {
    0% {
        top: calc(50% - 17.5% - 15rem);
        opacity: .3;
    }

    100% {
        top: calc(50% - 27.5%);
        opacity: 1;
    }
}

.show-cdc{
    display: block !important;
}

#confirm-delete-c > i{
    color: var(--error);
    font-size: 6rem;
    width: 100%;
    text-align: center;
    margin: 2rem 0;
}

#confirm-delete-c > p:nth-child(2){
    font-size: 2.6rem;
    font-family: Verdana;
    text-align: center;
}

#confirm-delete-c > p:nth-child(3){
    font-size: 1.6rem;
    text-align: center;
    margin-top: 3rem;
}

#confirm-delete-c span{
    font-weight: 600;
}

.cd-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3.5rem 0;
}

.cd-btns > p{
    padding: .5rem 3rem;
    font-weight: 600;
    margin: auto 1rem;
    cursor: pointer;
    user-select: none;
    font-size: 1.4rem;
}

.cd-btns > p:first-child{
    background-color: var(--cbg1);
}

.cd-btns > p:last-child {
    background-color: var(--error);
    color: white;
}

@media screen and (min-width: 0px) and (max-width: 1023px) {
    .h-left-fixed{
        padding: 0 1rem;
    }

    .container{
        margin-top: 0;
    }

    .stretch {
        -webkit-transition: top .4s ease !important;
        transition: top .4s ease !important;
        height: 50px !important;
        display: flex !important;
        white-space: nowrap !important;
        overflow: auto !important;
        max-width: calc(100% - 10rem) !important;
        width: 100% !important;
    }

    .searchUp .stretch {
        top: 0 !important;
    }

    .searchUp .stretch .stretch-menu::after{
        all: unset;
    }

    .stretch-menu {
        display: initial;
        position: relative;
    }

    .stretch-menu::after{
        content: '';
        position: absolute;
        width: 100%;
        border-bottom: 1px solid var(--cbg1);
        bottom: 0;
        left: 0;
        opacity: .3;
        z-index: 9999;
    }

    .stretch-menu p{
        font-family: Verdana;
        font-size: 1.4rem;
        letter-spacing: .08rem;
        margin: 0;
    }

    .stretch-menu i{
        margin-top: .25rem;
        opacity: .65;
    }

    #create-m{
        display: none;
    }

    #mode {
        padding-left: calc(calc(var(--container-left-margin) / 2));
    }

    .team-members{
        display: none;
    }

    .team-member{
        width: 3rem;
        margin: 0 .3rem;
        display: none;
    }

    .member-online::after{
        height: .4rem;
        width: .4rem;
        bottom: -.6rem;
        left: 46%;
    }

    .team-member p{
        display: none;
    }

    .teams-title{
        display: none;
        margin: 0 0 0 .5rem;
    }

    .teams-title p{
        font-size: 1.8rem;
        letter-spacing: .11rem;
    }

    .dash-header{
        margin-bottom: 1rem;
    }

    .create-novels{
        justify-content: center;
    }

    .cn-grid .c-novel {
        width: 120px;
        height: 180px;
        margin: .8rem 1.8rem 4rem 1.8rem;
    }

    .c-novel-o{
        height: 100%;
    }

    .cn-grid .c-novel-t p:first-child{
        display: none;
    }

    .cn-grid .c-novel-t p:last-child{
        margin: 0 2%;
        font-size: 1.1rem;
    }

    .create-uni {
        opacity: 0;
    }

    .unis {
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .uni-c {
        width: 150px;
        height: 150px;
        margin: 2.5rem 0 1.5rem 0;
    }

    .uni-c p {
        font-size: 1.25rem;
        padding: .3rem 2.2rem;
        font-weight: 600;
        max-width: 92%;
    }

    .cu-info{
        font-size: 1.4rem;
        max-width: 98%;
        margin: auto;
        -webkit-transition: unset;
        transition: unset;
    }

    .m-headers{
        font-size: 1.4rem;
        font-family: 'Roboto';
        display: flex;
        overflow: hidden;
    }

    .m-headers p{
        display: inline-block;
        margin: 0;
        color: var(--t4);
        font-weight: 400;
    }

    .m-headers > *:nth-child(1), .member-c > *:nth-child(1){
        width: 8%;
        min-width: 2.5rem;
        max-width: 2.75rem;
        margin: 0 .25rem 0 .5rem;
    }

    .m-headers > *:nth-child(2), .member-c > *:nth-child(2){
        width: 10%;
        min-width: 8rem;
        max-width: 8rem;
        margin: 0 .25rem 0 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .m-headers > *:nth-child(3), .member-c > *:nth-child(3){
        width: 10%;
        min-width: 8rem;
        max-width: 8rem;
        margin: 0 .25rem;
    }

    .m-headers > *:nth-child(4), .member-c > *:nth-child(4){
        width: 15%;
        min-width: 13rem;
        max-width: 17rem;
        margin: 0 1rem;
        display: none;
    }

    .m-headers > *:nth-child(5), .member-c > *:nth-child(5){
        width: 20%;
        min-width: 12rem;
        max-width: 12rem;
        margin: 0 .25rem;
    }

    .member-c{
        margin-top: 1.5rem;
        display: flex;
        overflow: hidden;
        align-items: center;
    }

    .member-c > *{
        display: inline-block;
        vertical-align: middle;
        font-size: 1.5rem;
        font-family: 'Roboto';
        font-weight: 500;
        margin: 0;
        text-indent: unset;
    }

    .perms > div{
        margin: 0;
        position: relative;
        display: inline-block;
        padding: .25rem .65rem;
        cursor: pointer;
    }

    .perms > div:first-child{
        margin-left: -.65rem;
    }

    .member-c img{
        border-radius: 50%;
    }

    .noperm{
        color: var(--t4);
        position: relative;
    }

    .noperm > i{
        opacity: .55;
    }

    .noperm::after{
        content: unset; /* Disabled for now */
        position: absolute;
        width: 3px;
        height: 110%;
        background-color: var(--t4);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: center;
        transform-origin: center;
        left: calc(50% + 1px);
        top: -5%;
        opacity: .55;
    }

    .noperm:hover::after{
        content: unset;
    }

    .noperm:hover{
        color: var(--t3) !important;
    }

    .perms > div > p{
        position: absolute;
        top: calc(-1.5rem - 1.5rem);
        left: -100%;
        font-size: 1.4rem;
        background-color: var(--cbgo);
        border-radius: .6rem;
        color: var(--t1);
        margin: 0;
        padding: .1rem 1rem;
        display: none;
    }

    .perms > div:hover > p{
        display: initial;
    }

    .rr-stats{
        display: none;
    }

    .rr-prof{
        flex: .4;
    }

    .rr-prof img{
        max-width: 3.2rem;
        margin-right: 1rem;
    }

    .rr-prof > p{
        font-size: 1.4rem;
    }

    .rr-actions {
        flex: .6;
    }

    .rr-ad {
        padding: .9rem .9rem;
    }

    .rr-ad:hover > div > p {
        display: none;
    }

    .r-headers, .req-s-c{
        font-size: 1.4rem;
    }

    .r-headers p{
        display: inline-block;
        margin: 0;
        color: var(--t4);
        font-weight: 400;
        flex: unset !important;
    }

    .r-headers > *:nth-child(1), .req-s-c > *:nth-child(1){
        display: none;
    }

    .r-headers > *:nth-child(2), .req-s-c > *:nth-child(2){
        text-indent: unset;
        width: 25%;
        flex: unset;
        font-size: 1.4rem;
    }

    .r-headers > *:nth-child(3), .req-s-c > *:nth-child(3){
        flex: unset;
        width: 40%;
        font-size: 1.4rem;
    }

    .r-headers > *:nth-child(4), .req-s-c > *:nth-child(4){
        flex: unset;
        width: 25%;
    }

    .r-headers > *:last-child, .req-s-c > *:last-child{
        flex: unset;
        width: 10%;
        color: var(--error);
        opacity: .6;
        padding: 0;
        font-size: 1.4rem;
        text-align: center;
    }

    .r-status i{
        font-size: 1.4rem;
    }

    .req-s-c > div:hover > p {
        display: none;
    }

    /* OBJECTS */

    .obj-parent {
        min-height: calc(100vh - var(--h-top-hgt-mobile) - 8rem);
    }

    .obj-info > p{
        font-size: 1.3rem;
    }

    #add-new-item{
        bottom: 5rem;
    }

    .obj-c{
        width: 100%;
    }

    .coe-header{
        width: 100%;
    }

    .coe-header > div > *:nth-child(1) {
        flex: .35;
        min-width: 60px;
    }

    .coe-header > div > *:nth-child(2) {
        flex: .45;
    }

    .coe-header > div > *:nth-child(3) {
        flex: .2;
    }

    .coe-header > div > *:nth-child(4) {
        display: none;
    }

    .coe-header > div > *:nth-child(5) {
        display: none;
    }

    .coe-header > div > *:nth-child(6) {
        display: none;
    }

    .obj-info > *:nth-child(1){
        flex: .25 1;
        min-width: 60px;
    }

    .obj-info > *:nth-child(2){
        flex: 1 0;
    }

    .obj-info > *:nth-child(3){
        flex: 1;
        max-width: 80px;
        white-space: normal;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .obj-info > *:nth-child(4){
        display: none;
    }

    .obj-info > *:nth-child(5){
        display: none;
    }

    .obj-info > *:nth-child(6){
        display: none;
    }

    .obj-info p{
        padding: 1.25rem;
    }

    .new-object-c{
        width: 98%;
        margin-left: 2%;
    }

    .obj-info-e > div {
        display: inline-block;
    }

    .obj-desc > p{
        font-size: 1.4rem !important;
    }

    .coe-header > div > p > i {
        top: calc(50% - .55rem);
        margin-left: .8rem;
        font-size: 1.5rem;
    }

    .obj-c > i{
        display: none;
    }

    /* END OBJECTS */

    .board-parent{
        overflow-x: hidden;
    }

    .notes-list {
        display: flex;
        flex-flow: row wrap;
        margin: 2.5rem auto;
        justify-content: center;
    }

    .add-center {
        position: fixed;
    }

    #confirm-delete-c {
        position: fixed;
        background-color: var(--cbgo);
        color: var(--t1);
        min-width: 25rem;
        width: 95%;
        max-width: 40rem;
        top: 0;
        left: unset;
        right: 2.5%;
        border-radius: .5rem;
        box-shadow: 0 0 5px var(--cbgo);
        display: none;
        --webkit-animation: cdc-in .3s ease forwards;
        animation: cdc-in .3s ease forwards;
    }

    @-webkit-keyframes cdc-in{
        0%{
            top: calc(50% - 17.5% - 15rem);
            opacity: .3;
        }
        100% {
            top: calc(50% - 27.5%);
            opacity: 1;
        }
    }

    .show-cdc{
        display: block !important;
    }

    #confirm-delete-c > i{
        color: var(--error);
        font-size: 6rem;
        width: 100%;
        text-align: center;
        margin: 2rem 0;
    }

    #confirm-delete-c > p:nth-child(2){
        font-size: 2.6rem;
        font-family: Verdana;
        text-align: center;
    }

    #confirm-delete-c > p:nth-child(3){
        font-size: 1.6rem;
        text-align: center;
        margin-top: 3rem;
    }

    #confirm-delete-c span{
        font-weight: 600;
    }

    .cd-btns{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 3.5rem 0;
    }

    .cd-btns > p{
        padding: .5rem 3rem;
        font-weight: 600;
        margin: auto 1rem;
        cursor: pointer;
        user-select: none;
    }

    .cd-btns > p:first-child{
        background-color: var(--cbg1);
    }

    .cd-btns > p:last-child {
        background-color: var(--error);
        color: white;
    }
}