﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
.nav-bar {
  background-color: #28293D;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  height: 50px;
  z-index: 1;
  filter: drop-shadow(0px 10px 40px #00000040);
}
.nav-bar img {
  width: 50px;
  margin-left: 10px;
}
.nav-bar img:hover {
  cursor: pointer;
}
.nav-bar .btns {
  float: right;
  display: flex;
  margin: auto 0px;
  margin-right: 20px;
}
.nav-bar .btns button {
  height: 50px;
  min-width: 70px;
  border: none;
  background: transparent;
  color: #DCDDDE;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.nav-bar .btns button:hover {
  background-color: #1B1C27;
}
.nav-bar .btns button .active {
  color: #3E7BFA;
}
.nav-bar .btns .spacer {
  width: 1px;
  height: 20px;
  background: #3E7BFA;
  margin-top: 13px;
  margin-left: 50px;
  margin-right: 50px;
}
.nav-bar .fa-bars {
  visibility: hidden;
  position: absolute;
  right: 20px;
  font-size: 30px;
  top: 8px;
  cursor: pointer;
}
.nav-bar .MobileDropdown {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 55px;
  background-color: #28293D;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  text-align: center;
  visibility: hidden;
}
.nav-bar .MobileDropdown a {
  padding: 5px;
  font-size: 25px;
  border-radius: 5px;
  text-decoration: none;
  color: #DCDDDE;
}
.nav-bar .MobileDropdown a:hover {
  background-color: #1B1C27;
}
.nav-bar .MobileDropdown .spacer {
  height: 2px;
  background-color: transparent;
}

@media (max-width: 600px) {
  .nav-bar .btns {
    visibility: hidden;
  }
  .nav-bar .fa-bars {
    visibility: visible;
  }
  .nav-bar .show {
    visibility: visible;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
  }
}
.bg-accents .circle {
  background-color: #3E7BFA;
  border-radius: 50%;
}
.bg-accents .polygon {
  position: absolute;
  right: 0px;
  top: -30px;
}
.bg-accents .polygon g {
  fill: #3E7BFA;
  width: 20vw;
  height: 10vh;
}
.bg-accents .large {
  width: 20vw;
  height: 20vw;
}
.bg-accents .big {
  width: 7vw;
  height: 7vw;
}
.bg-accents .small {
  width: 3vw;
  height: 3vw;
}
.bg-accents .down-right-one {
  position: absolute;
  right: 1vw;
  bottom: 10vh;
}
.bg-accents .down-right-two {
  position: absolute;
  right: 8vw;
  bottom: 12vw;
}
.bg-accents .down-left {
  position: absolute;
  left: -8vw;
  bottom: -5vw;
}
.bg-accents .up-left-one {
  position: absolute;
  left: 1vw;
  top: 3vh;
}
.bg-accents .up-left-two {
  position: absolute;
  left: 8vw;
  top: 8vw;
}

@media (max-width: 800px) {
  .bg-accents .polygon {
    visibility: hidden;
  }
  .bg-accents .large {
    width: 300px;
    height: 300px;
  }
  .bg-accents .big {
    width: 130px;
    height: 130px;
  }
  .bg-accents .small {
    width: 60px;
    height: 60px;
  }
  .bg-accents .down-right-one {
    position: absolute;
    right: 1vw;
    bottom: 10px;
  }
  .bg-accents .down-right-two {
    position: absolute;
    right: 130px;
    bottom: 130px;
  }
  .bg-accents .down-left {
    position: absolute;
    left: -140px;
    bottom: -130px;
  }
  .bg-accents .up-left-one {
    position: absolute;
    left: 1vw;
    top: 3vh;
  }
  .bg-accents .up-left-two {
    position: absolute;
    left: 130px;
    top: 130px;
  }
}
@-webkit-keyframes cssAnimation {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0%;
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.1);
  }
  100% {
    transform: scaleY(1);
  }
}
.pop-outs i {
  margin: auto 20px;
}
.pop-outs .fa-times {
  margin-left: auto;
  margin-right: 20px;
}
.pop-outs .fa-times:hover {
  cursor: pointer;
}
.pop-outs .popout-shared {
  background: #383947;
  max-width: 500px;
  cursor: default;
  display: flex;
  border-top: solid;
  border-width: 3px;
  border-radius: 2px;
  z-index: 1000;
  position: fixed;
  right: 5px;
  bottom: 20px;
  width: 450px;
}
.pop-outs .neutral {
  border-color: #3E7BFA;
}
.pop-outs .success {
  border-color: #2d8e70;
}
.pop-outs .success i {
  color: #2d8e70;
}
.pop-outs .success .fa-times {
  color: #DCDDDE;
}
.pop-outs .error {
  border-color: #cb373b;
}
.pop-outs .error i {
  color: #cb373b;
}
.pop-outs .error .fa-times {
  color: #DCDDDE;
}
.pop-outs .warn {
  border-color: #f08104;
}
.pop-outs .warn i {
  color: #f08104;
}
.pop-outs .warn .fa-times {
  color: #DCDDDE;
}

.mixer {
  padding: 20px;
  padding-bottom: 0px;
  position: relative;
  display: inline-block;
  background-color: #28293D;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  box-sizing: border-box;
  left: 455px;
}

@media (min-height: 500px) {
  .mixer {
    position: absolute;
  }
}
.range-slider {
  display: inline-block;
  width: 40px;
  position: relative;
  text-align: center;
  height: 150px;
  max-height: 100%;
}

.range-slider:before {
  position: absolute;
  top: -2em;
  left: 0.5em;
  color: white;
  font-size: 90%;
}

.range-slider__thumb {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 20px;
  line-height: 30px;
  background: #ABABAB;
  color: #777;
  font-size: 50%;
  box-shadow: 0 0 0 4px #28293D;
  border-radius: 50%;
  pointer-events: none;
}

.range-slider__bar {
  left: 16px;
  bottom: 0;
  position: absolute;
  background: #1B1C27;
  pointer-events: none;
  width: 8px;
  border-radius: 10px;
}

.range-slider input[type=range][orient=vertical] {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  position: relative;
  -webkit-appearance: slider-vertical;
}

.range-slider input[type=range][orient=vertical]::-webkit-slider-runnable-track, .range-slider input[type=range][orient=vertical]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.range-slider input[type=range][orient=vertical]::-webkit-slider-runnable-track {
  border: none;
  background: #1B1C27;
  width: 8px;
  border-radius: 10px;
}

.range-slider input[type=range][orient=vertical]::-ms-fill-lower, .range-slider input[type=range][orient=vertical]::-ms-fill-upper, .range-slider input[type=range][orient=vertical]::-ms-tooltip {
  display: none;
}

.range-slider input[type=range][orient=vertical]::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  opacity: 0;
}

.range-slider input[type=range][orient=vertical]::-ms-thumb {
  width: 30px;
  height: 30px;
  opacity: 0;
}

.range-slider img {
  width: 40px;
  margin: 10px;
  position: relative;
  right: 10px;
  border-radius: 50%;
}

.friend-list h2, .friend-list h3 {
  font-size: 14px;
  font-weight: 800;
  color: #8E9297;
  opacity: 0.6;
  margin-bottom: 5px;
}
.friend-list .user-entry.friend-entry:hover {
  cursor: pointer;
}

.entries {
  margin-top: 4px;
}

.channel, .vc-channel {
  background-color: #1B1C2766;
  border-radius: 4px;
  margin: 5px;
  margin-top: 1px;
  margin-bottom: 7px;
  width: 97%;
  text-align: left;
  z-index: 5;
  cursor: pointer;
  color: #8E9297;
  position: relative;
}

.channel h1 {
  margin: 0px;
  margin-left: 10px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel:hover {
  background-color: var(--button-hover);
}

.vc-channel h2 {
  margin: 0px;
  margin-left: 10px;
  margin-right: 6px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 400;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vc-channel i {
  color: #a5a5a5;
  font-size: 20px;
  margin: 5px;
  margin-top: 10px;
}
.vc-channel i:hover {
  color: var(--contrast-color);
  filter: drop-shadow(0px 0px 3px black);
}
.vc-channel i#leave {
  position: absolute;
  right: 5px;
  color: #FF5353;
  transform: rotate(135deg);
}
.vc-channel i#leave:hover {
  color: #ff2e2e;
}
.vc-channel .fa-microphone-slash {
  color: #FF5353;
}
.vc-channel .fa-microphone-slash:hover {
  color: #ff2e2e;
}

.collapsed {
  padding-left: 10px;
}
.collapsed img {
  width: 35px;
  border-radius: 50%;
}
.collapsed h1 {
  left: 40px;
}

.expanded {
  padding-right: 5px;
}
.expanded .sliders-vertical {
  color: #a5a5a5;
  width: 15px;
  position: absolute;
  right: 10px;
  top: 10px;
}
.expanded img {
  width: 35px;
  border-radius: 50%;
  margin: 5px;
}
.expanded h1 {
  margin: 0px;
  line-height: 32px;
  font-size: 15px;
  color: #B9BBBE;
  margin: 0px;
  font-weight: 400;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-entry {
  width: 98%;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #1B1C2766;
  border-radius: 5px;
  margin-top: 3px;
  margin: 3px;
  position: relative;
  padding-left: 5px;
}
.user-entry img {
  width: 40px;
  height: 40px;
  margin: 5px;
  border-radius: 10px;
}
.user-entry .content {
  overflow: hidden;
}
.user-entry .content h1 {
  font-size: 16px;
  color: #DCDDDE;
  margin: 0px;
  font-weight: 500;
}
.user-entry .content p {
  font-size: 14px;
  color: #B9BBBE;
  margin: 0px;
  font-weight: 300;
}
.user-entry .incoming-buttons {
  position: absolute;
  right: 10px;
}
.user-entry .incoming-buttons button {
  background-color: transparent;
  border: none;
  font-size: 20px;
  width: 20px;
}
.user-entry .incoming-buttons button:hover {
  cursor: pointer;
}
.user-entry .incoming-buttons .fa-check-circle {
  color: #2d8e70;
}
.user-entry .incoming-buttons .fa-times-circle {
  color: #cb373b;
}
.user-entry .outgoing-buttons button {
  background-color: transparent;
  border: none;
  font-size: 15px;
  width: 20px;
  color: #676767;
  position: absolute;
  top: 14px;
  right: 3px;
}
.user-entry .outgoing-buttons button:hover {
  cursor: pointer;
}

.entries {
  margin-left: 5px;
  overflow-x: hidden;
}

h3 {
  margin: 0px;
  margin-top: 10px;
  color: #8E9297;
  opacity: 0.7;
  font-size: 12px;
}

.user-vc-entry {
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-entry {
  background-color: #1B1C2766;
  border-radius: 5px;
  width: 95%;
  display: flex;
  vertical-align: middle;
  margin-bottom: 5px;
  padding-left: 7px;
  cursor: pointer;
}
.server-entry:hover {
  background-color: var(--button-hover);
}
.server-entry img {
  width: 40px;
  height: 40px;
  margin: 3px;
  margin-right: 7px;
  border-radius: 4px;
}
.server-entry h1 {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
  position: relative;
  top: 3px;
  color: #DCDDDE;
}
.server-entry i {
  position: absolute;
  right: 10px;
}

.main-message-field {
  background-color: var(--message-background);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  white-space: normal;
}

.messagebox {
  display: flex;
  margin: 5px;
  margin-bottom: 10px;
}
.messagebox .message-pfp-image {
  border-radius: 10px;
  width: 70px;
  height: 70px;
  margin-left: 10px;
  margin-right: 10px;
}

.info h1 {
  margin: 0px;
  font-size: 18px;
  color: #3E7BFA;
}

.info h2 {
  font-size: 12px;
  position: absolute;
  top: -5px;
  right: 10px;
  font-weight: 500;
  color: #8E9297;
}

.message h3 {
  font-size: 15px;
  color: white;
  font-weight: 400;
}
.message img {
  max-width: 50%;
  margin-top: 20px;
  border-radius: 10px;
}

.skeleton-entry {
  width: 100%;
  height: 40px;
  background-color: #1B1C2766;
  margin-bottom: 3px;
  border-radius: 5px;
  animation: fade 1000ms alternate infinite;
}

.channel-skeleton {
  height: 35px;
}

@keyframes fade {
  0% {
    background-color: #1B1C2766;
  }
  100% {
    background-color: #1B1C27D9;
  }
}
.landing .fa-chevron-down {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: gray;
}
.landing .title h1 {
  margin-top: 40vh;
  margin-bottom: 40vh;
  text-align: center;
  font-size: 4vw;
}
.landing .content {
  background: #28293D;
  position: absolute;
  left: 0px;
  right: 0px;
  margin-top: 130px;
  padding-top: 10px;
  text-align: center;
}
.landing .content h1 {
  font-size: 2.5vw;
  margin-bottom: 50px;
}
.landing .content .entry {
  background-color: #1B1C27;
  padding: 0.5vw;
  margin-bottom: 100px;
}
.landing .content .entry .text {
  padding: 10px;
  padding-left: 2vw;
  padding-right: 2vw;
}
.landing .content .entry .text h2 {
  font-size: 2vw;
  /*font-family: 'Montserrat Alternates', sans-serif;*/
  font-weight: 500;
}
.landing .content .entry .text p {
  /*font-family: 'Montserrat Alternates', sans-serif;*/
  font-size: 1.2vw;
  font-weight: 100;
  padding-top: 0px;
  padding: 20px;
}
.landing .content .entry .text .line {
  background-color: #3E7BFA;
  width: 100px;
  height: 2px;
  margin: auto;
}
.landing .content img {
  width: 35vw;
  height: 100%;
  margin: 30px;
  border-radius: 10px;
}
.landing .content .left {
  margin-right: 15vw;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  flex-direction: row-reverse;
}
.landing .content .right {
  display: flex;
  flex-direction: row;
  margin-left: 15vw;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media (max-width: 800px) {
  .landing .title h1 {
    display: block;
    text-align: center;
    vertical-align: middle;
    line-height: 90px;
    margin-top: 40vh;
    margin-bottom: 30vh;
    font-size: 50px;
  }
  .landing .fa-chevron-down {
    font-size: 40px;
  }
  .landing .content h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .landing .content .entry {
    padding: 5px;
  }
  .landing .content .entry .text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .landing .content .entry .text p {
    font-size: 15px;
    padding: 5px;
  }
  .landing .content img {
    width: 99%;
    text-align: center;
    vertical-align: middle;
    margin: 3px;
  }
  .landing .content .left, .landing .content .right {
    flex-direction: column;
    width: 95%;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}
.login, .signup {
  text-align: center;
  padding-top: 21vh;
}
.login h1, .signup h1 {
  font-size: 5rem;
  font-weight: 100;
}
.login form, .signup form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login input, .signup input {
  border: none;
  background: #28293D;
  color: #DCDDDE;
}
.login input[type=text], .login input[type=email], .login input[type=password], .login input[type=submit], .signup input[type=text], .signup input[type=email], .signup input[type=password], .signup input[type=submit] {
  width: 390px;
  height: 30px;
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 5px;
}
.login input[type=submit], .signup input[type=submit] {
  background-color: #3E7BFA;
  width: 410px;
  height: 50px;
  color: #DCDDDE;
  filter: drop-shadow(0px 6px 6px #6D6D7933);
}
.login .login-options, .signup .login-options {
  display: flex;
}
.login .login-options a, .signup .login-options a {
  text-decoration: none;
  color: #DCDDDE;
  font-size: 18px;
}
.login .clicked-form, .signup .clicked-form {
  -webkit-animation-name: cssAnimation;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
}
.login .g-recaptcha, .signup .g-recaptcha {
  margin: 10px;
}
.login .tandc, .signup .tandc {
  margin: 40px;
  margin-top: 3px;
  position: relative;
  width: 400px;
}
.login .tandc .left, .signup .tandc .left {
  position: absolute;
  left: 0px;
}
.login .tandc .left label, .signup .tandc .left label {
  color: #DCDDDE;
}
.login .tandc .left label a, .signup .tandc .left label a {
  color: #3E7BFA;
  font-weight: 500;
  text-decoration: none;
}

.privacy {
  padding: 10px;
  text-align: center;
}
.privacy h1 {
  font-size: 3vw;
  padding-top: 60px;
}
.privacy .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
}
.privacy .entries {
  padding-top: 60px;
  text-align: left;
}
.privacy .entry {
  margin: auto;
  padding-right: 5vw;
  margin-bottom: 70px;
}
.privacy .entry h2 {
  font-size: 2vw;
  font-weight: 100;
  padding-left: 40px;
  margin: 10px;
  margin-bottom: -15px;
}
.privacy .entry p {
  font-size: 1.1vw;
  font-weight: 100;
  padding-left: 60px;
  margin-bottom: -10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.privacy .entry ul {
  margin-left: 60px;
}

@media (max-width: 800px) {
  .privacy h1 {
    font-size: 50px;
    margin-bottom: -10px;
  }
  .privacy .entry {
    margin-bottom: 30px;
  }
  .privacy .entry h2 {
    font-size: 25px;
    padding-left: 0px;
  }
  .privacy .entry p {
    font-size: 18px;
    padding-left: 20px;
  }
}
.admin-panel {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  display: flex;
}
.admin-panel .column-1 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.admin-panel .reports {
  flex-grow: 1;
  background-color: #28293D;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 10px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.admin-panel .stats-boxes {
  display: flex;
}
.admin-panel .container-1, .admin-panel .container-2, .admin-panel .container-3 {
  background-color: #28293D;
  flex-grow: 1;
  margin-left: 5px;
  margin-right: 5px;
  height: 300px;
}
.admin-panel .user-list, .admin-panel .server-list {
  background-color: #28293D;
  height: 100%;
  width: 240px;
  margin-left: 10px;
  overflow-y: scroll;
}
.admin-panel .server-info {
  display: flex;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #1B1C27;
  color: #DCDDDE;
  font-weight: 500;
  cursor: default;
  overflow-x: hidden;
  width: 100%;
  padding: 0px;
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-thumb {
  background: #3E7BFA;
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

body {
  scrollbar-face-color: #28293D;
  scrollbar-track-color: #1B1C27;
}

.bar-3-bottom {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 240px;
  filter: drop-shadow(0px 0px 10px #161616);
  background-color: var(--color-2);
  padding-left: 5px;
  flex-direction: column;
  cursor: default;
}
.bar-3-bottom .edit-account-btn {
  cursor: pointer;
}
.bar-3-bottom .vc-controls {
  padding: 5px;
  padding-top: 2px;
  position: relative;
  left: -5px;
  width: 100%;
  border-bottom: solid;
  border-width: 1px;
  border-color: #3E7BFA;
  margin-bottom: 10px;
}
.bar-3-bottom .vc-controls i {
  color: #a5a5a5;
  font-size: 20px;
  margin: 5px;
  margin-top: 10px;
  cursor: pointer;
}
.bar-3-bottom .vc-controls i:hover {
  color: var(--contrast-color);
  filter: drop-shadow(0px 0px 3px black);
}
.bar-3-bottom .vc-controls i#leave {
  position: absolute;
  right: 20px;
  color: #FF5353;
  transform: rotate(135deg);
  font-size: 25px;
}
.bar-3-bottom .vc-controls i#leave:hover {
  color: #ff2e2e;
}
.bar-3-bottom .vc-controls .fa-microphone-slash {
  color: #FF5353;
}
.bar-3-bottom .vc-controls .fa-microphone-slash:hover {
  color: #ff2e2e;
}

.channel-header {
  display: flex;
  position: relative;
  z-index: 5;
}
.channel-header svg {
  position: relative;
  top: 4px;
  cursor: pointer;
  color: #8E9297;
}
.channel-header .plus {
  position: absolute;
  top: 10px;
  right: 10px;
}

#video-area {
  position: relative;
  justify-content: center;
}
#video-area video {
  width: 100%;
}
