/*
 * Desktop
 */

@media (min-width: 720px) {
  .img-bg {
    background: url('../img/bg_upscaled.png');
    background-size: cover;
    background-position: center;
    background-color: lightgray;
    background-repeat: no-repeat;
  }

  .brand {
    font-family: 'aileronstrial_version', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 23.40px;
    font-size: 76px;
  }

  .title {
    font-family: 'aileronstrial_version',
      sans-serif;
    color: rgba(255, 255, 255, 0.30);
    word-spacing: 999999px;
    text-align: right;
    line-height: 1.5;
    letter-spacing: normal;
    font-size: 37.781px;
  }
  .messaging {
    font-family: 'ubuntu-mono', monospace;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }  
}


/*
 * Mobile
 */
@media (max-width: 720px) {
  .brand {
    font-family: 'aileronstrial_version',
      sans-serif;
    line-height: 1.3;
    letter-spacing: 14px;
    font-size: 4.8rem;
  }


  .title {
    font-family: 'aileronstrial_version',
      sans-serif;
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: -3px;
  }

  .img-sm-bg {
    background-image: url('../img/bg_upscaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 498px;
    width: 100%;
  }

  .messaging {
    font-family: 'ubuntu-mono', monospace;
    font-weight: 400;
    font-size: 20px;
    font-size: 1.3rem;
    letter-spacing: 1px;
  }  
}

/*
 * Globals
 */

 * {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'aileronstrial_version';
  src: url('../fonts/Ailerons-Typeface.otf');
  font-weight: normal;
  font-style: normal;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none;
  /* Prevent inheritance from `body` */
}

/*
 * Base structure
 */

body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.margin-minus
{
  margin-top: -100px;
}

.yellow-text {
  color: #D0A610;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
span.white-text {
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.input {
  width: 100%;
}

.input::placeholder {
  font-family: 'Ubunu Mono', monospace;
  color: #878787;
  font-size: 1rem;
}

input[type="text"] {
  background-color: rgba(85, 85, 85, .25);
  border: none;
  color: #ffffff;
}

.input-send {
  max-height: 49px;
}

.flex-1 {
  flex: 1;
}

.flex-grow-1 {
  flex-grow: 1;
}

.bg-black {
  background-color: rgba(0, 0, 0, 1);
}


.typing-container {
  display: none;
}

#textInput {
  padding: 10px;
  margin-right: 10px;
}

#submitBtn {
  padding: 10px;
  cursor: pointer;
}

.typing-animation {
  display: inline;
  padding-right: 1px;
}
.typing-cursor {
  animation: typing 1s steps(10) infinite;
  border-right: 1px solid white;
  padding-left: 0px;
  padding-right: 0px;
}
@keyframes typing {
  0%, 50%, 100% {
    border-right-color: transparent;
  }
  25%, 75% {
    border-right-color: white;
  }
}

.air-ship {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  margin-top: 10px;
  margin-bottom: 70px;
}
.chat-input {
  margin-top: 5px;
}
.chat-list {
  max-height: 700px;
  overflow-x: hidden;
  overflow-y: auto;
  margin:0px;
  min-height: 270px;
}
.chat-listl .messaging {
  background: #00000085;
}
.chat-list::-webkit-scrollbar {
  width: 10px;  
  height: 10px;
}

/* Define the thumb style */
.chat-list::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom right, #4f4f4f 0%, #4f4f4f 100%);
  border-radius: 5px;
}

/* Define the track style */
.chat-list::-webkit-scrollbar-track {
  background-color: #ddd;
  border: 1px solid #ccc;
}

/* Define the button style */
.chat-list::-webkit-scrollbar-button {
  background-color: #090e1b;
  border-radius: 5px;
}

/* Define the button style when being hovered over */
.container::-webkit-scrollbar-button:hover {
  background-color: #999999;
}