:root{
    --sidebar-width: 290px;
    --fontColor: #fff;
    --fontColorInv: #000;
    --background: #1D1D1F;
    --background2: #262728;
    --background3: #353637;
    --selected-color: #1E75FE;
}
* {
    color: var(--fontColor);
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    outline: none;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
.rotate-45 {
    transform: rotate(-45deg);
    font-size: 35px !important;
}
.main-wrap {
    width: 100vw;
    height: 100vh;
    background: red;
    background: var(--background);
    display: flex;
}
#canvas-wrap {
    padding: 20px 20px 20px 0;
    width: 100%;
    height: 100%;
}
#setup-canvas {
    width: 100%;
    height: 100%;
}
button{
    height: 56px;
    border-radius: 4px;
    margin: 0 auto 0 auto;
    color: #E5E5E5;
    border: none;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 21px;
    text-align: center;
    cursor: pointer;
}

.enter-wrap {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
}
.center-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 624px;
    height: 415px;
    background: var(--background2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.desc {
    margin: 0 64px 35px 58px;
    color: var(--textColor);
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
}
.name-input {
    font-size: 15px;
    width: 428px;
    height: 56px;
    background: var(--background1);
    border: 1px solid var(--background3);
    box-sizing: border-box;
    border-radius: 4px;
    margin: 0 auto 27px auto;
    padding: 0 10px;
    color: var(--textColor);
}
.sign-in {
    border: none;
    background: #1E75FE;
    margin-bottom: 26px;
    width: 420px;
}
.title {
    margin-bottom: 10px;
}

.sidebar-wrap {
    height: 100%;
    padding: 20px;
    min-width: var(--sidebar-width);
    display: flex;
    flex-direction: column;
}
.controls {
    background: var(--background2);
    width: 100%;
    height: 140px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
span.section-title {
    display: inline-block;
    height: 20px;
    margin-bottom: 20px;
}
.controls .buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.controls .buttons input {
    display: none;
}
.controls .buttons label {
    width: 56px;
    height: 56px;
    background: var(--background3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.controls .buttons label span {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#app .controls .buttons input:checked + label {
    background: var(--selected-color);
}
.color-picker {
    background: var(--background2);
    width: 100%;
    height: auto;
    padding: 15px;
    margin-bottom: 20px; 
}
.color-input {
    width: calc(100% - 2px);
    height: 20px;
    margin: 0 auto 10px;
    border: 1px solid var(--background3);
}
.color-input input {
    display: none;
}
.color-input label {
    position: relative;
    width: 100%;
    height: 100%;
}
.color-input label .color-rect {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 4px);
    height: calc(100% - 4px);
}
.slider {
    width: 100%;
    margin: 5px 0;
}
.slider-title {
    font-size: 12px;
}
.users-wrap {
    background: var(--background2);
    width: 100%;
    flex-grow: 1;
    padding: 25px;
    overflow: hidden;
}
.users-inner-wrap {
    height: calc(100% - 40px);
    overflow: auto;
}
.user {
    position: relative;
    height: 60px;
    line-height: 60px;
}
.user::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
}

.buttons .active > span {
    color: #fff !important;
}

.material-icons{
    color: var(--fontColor) !important
}

