.auth-window {
    position: absolute;
    left: 35%;
    right: 35%;
    top: 35%;
    height: 30%;
    width: 30%;
    padding: 30px;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 5px;
}

* {

    transition: all 0.5s ease-out;
}

@media (max-width: 767px) {
    .auth-window {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
    }
}

@media (max-height: 920px) {
    .auth-window {
        position: absolute;
        top: 25%;
        height: 35%;
    }
}

@media (max-height: 800px) {
    .auth-window {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
}

.float-center {
    text-align: center;
}

.con-btn {
    width: 100px;
    text-align: center;
    padding: 10px;
    border-radius: 3px;
    background-color: green;
}

.name {
    color: white;
}
.message-list {
    overflow-y: scroll;
    height: 85vh;
    background-color: rgba(0, 0, 0, .7);
}

.left-pane {
    position: absolute;
    width: 100%;
}

#chatwindow {
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
}

.message {
    color: #505050;
    width: 100%;
    padding: 10px;
    overflow-wrap: break-word;
    margin-bottom: 10px;
}

.message-text {
    color: lightgray;
}

.message-author {
    font-size: 120%;
    font-weight: bold;
}

.my-message-author {
    color: white;
}

.form-control {
    background-color: #21212F;
    color: lightgray;
    border: none;
    border-radius: 20px;
}

.lang-select {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, .8);
    float: right;

}

.lang-url {
    color: #7A7A7A;
}

.lang-url:hover {

    color: #606060;
}

.error-center {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    width: 100%;
    top: 5%;
    color: white;
}

.hash-control {
    width: 20vw;
    display: inline-flex;
    margin-right: 10px;
}

h1 {
    font-size: 400%;
}

.connection-lost {
    position: absolute;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
}
.input-group-addon {
    background-color: #21212F;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.form-control-check {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0;
    background-color: black;
    border-radius:10%;
    width: 20px;
    height: 20px;
    border:  hidden;

  }
  .form-control-check:checked:before {
    content:"\2713";
    color: white;
    padding: initial;
    font-weight: bold;
    margin-left: 4.5px;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
