* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  outline: none !important;
  transition: 0.05s linear !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

*::-webkit-scrollbar {
  background-color: transparent !important;
  width: 5px !important;
}

*::-webkit-scrollbar-thumb {
  background-color: #eaeaea !important;
  border-radius: 50px !important;
}

ul,
li {
  list-style-position: inside;
}

h3 {
  font-weight: 600;
  text-align: center;
  font-size: 1.5rem;
}

button {
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: background 0.3s ease;
}

button:hover {
  border: none;
  color: white;
  padding: 10px;
}

button:active {
  transition: 0.1s linear !important;
  transform: scale(1.07, 1.07);
}

button#joinBtn {
  background: linear-gradient(325deg,
      rgba(49, 84, 129, 1) 0%,
      rgba(39, 107, 130, 1) 100%);
}

.hide {
  display: none;
}

.show {
  display: block;
}

.green-bg {
  background-color: #27b652 !important;
  color: #ffffff !important;
}

.green-bg:hover {
  background-color: #1e9141 !important;
  color: #ffffff !important;
}

.green {
  color: #27b652 !important;
}

.orange-bg {
  background-color: #fa6301 !important;
  color: #ffffff !important;
}

.orange {
  color: #fa6301 !important;
}

.gradient {
  background: -moz-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear,
      left top,
      right bottom,
      color-stop(0%, rgba(49, 84, 129, 1)),
      color-stop(100%, rgba(39, 107, 130, 1)));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* ie10+ */
  background: linear-gradient(325deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* w3c */
  background: linear-gradient(325deg, rgba(49, 84, 129, 1) 0%, #3b96b0 100%);
}

.centered-form {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  background: -moz-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear,
      left top,
      right bottom,
      color-stop(0%, rgba(49, 84, 129, 1)),
      color-stop(100%, rgba(39, 107, 130, 1)));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(125deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* ie10+ */
  background: linear-gradient(325deg,
      rgba(39, 107, 130, 1) 0%,
      rgba(49, 84, 129, 1) 100%);
  /* w3c */
  background: none !important;
}

.centered-form__form {
  /* background: rgba(250, 250, 250, 0.9); */
  background: #ffffff;
  /* border: 1px solid #eaeaea; */
  border-radius: 5px;
  padding: 20px 35px;
  margin: 20px;
  width: 300px;
}

.form-field {
  margin: 20px 0;
}

.form-field>* {
  width: 100%;
  border-radius: 5px !important;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
}

.form-field input,
.form-field select {
  border: 1px solid #eaeaea;
  padding: 10px !important;
}

.form-field select {
  height: 40px;
}

.suggestedRoomBlock {
  display: block;
}

.suggestedRoom {
  display: inline-block;
  padding: 5px;
  margin: 2.5px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  cursor: pointer;
}

.alertMessages {
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

.alertMessages span {
  padding: 5px 10px;
  border-radius: 50px;
  background: rgba(49, 84, 129, 1);
}

.userActions {
  float: right;
  font-size: 1.2rem !important;
  margin: 0px 0.2rem;
  background: none;
  color: #ffffff;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
}

.userActions::before {
  text-align: center !important;
}

.userActions.avatar {
  border: 1px solid rgba(49, 84, 129, 1);
  background-color: #eaeaea !important;
}

.userActions.menu {
  font-size: 1.5rem !important;
  color: #3b96b0;
  width: 3rem;
  height: 3rem;
  background-color: #eaeaea !important;
}

.usersWrapper {
  max-height: 60vh;
  overflow-x: hidden;
  overflow: scroll;
}

.highlight {
  color: #3b96b0;
}

.pill {
  background-color: #eaeaea !important;
  border-radius: 5px;
  padding: 5px 0;
}

.addCreditBtn {
  display: flex;
  margin: 10px 0;
}

.addCreditBtn * {
  color: #ffffff;
}