@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
  /* font-family: "Roboto", "Lucida Sans", "Lucida Grande", sans-serif; */
  font-family: "Poppins";
}
.menubtns a {
  text-decoration: none;
  color: #00a0ff;
  font-family: Raleway;
  font-weight: 700;
  font-size: 15px;
  margin: 8px;
  padding: 5px;
  border-radius: 4px;
}
.menubtns a:hover {
  outline: 1px solid black;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

header {
  flex-basis: 10%;
  box-shadow: 0px 0px 5px gray;
}
nav {
  height: 100%;
  padding: 0px 10px;
}
.pad-nav {
  padding: 10px 10px;
}

.loader {
  width: 40px;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #000 90%, #0000) 0 /
    calc(100% / 3) 100% no-repeat;
  animation: l2 1s steps(3) infinite;
}
#connectionStatus {
  justify-content: flex-start;
}
@keyframes l2 {
  to {
    background-position: 150%;
  }
}
.container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a img.logo {
  max-height: 30px;
}
.online-status {
  font-size: 20px;
  font-weight: bold;
  color: rgb(248, 248, 248);
  padding: 10px;
}

main {
  height: 100%;
  /* margin: 10px; */
  padding: 0;
  flex-basis: 90%;
}
.index-action-container {
  font-family: "Montserrat" !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: 50%;
  height: 100%;
  gap: 7%;
  top: 0;
  font-weight: 700;
}
.button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.glow-raccoon {
  width: 35%;
  position: fixed;
  right: 5%;
  z-index: 11;
  bottom: 0;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4))
    drop-shadow(0 0 40px rgba(0, 240, 255, 0.3))
    drop-shadow(0 0 60px rgba(179, 0, 255, 0.3));
  transition: 0.3s ease;
}
.abutton {
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  border: none;
  padding: 15px 30px;
  color: white;
  font-size: 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 0, 204, 0.6);
  transition: 0.3s ease;
}

.abutton:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 204, 0.9);
}
.modalpro {
  display: flex;
  align-items: center;
}
.modalpro strong {
  margin-right: 10px;
}
.freeimg {
  width: 20px;
}
.setting-wrap {
  display: inline-block;
  cursor: pointer;
}
.setting-BTN {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 50%;
  border: 3px solid black;
  filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.4))
    drop-shadow(0 0 40px rgba(255, 80, 140, 0.3))
    drop-shadow(0 0 60px rgba(255, 60, 160, 0.3));
}
.setting-BTN img {
  width: 38px;
  border-radius: 50%;
  padding: 2px;
  filter: invert(1);
}
.sub-sel {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 35, 0.85); /* dark glass effect */
  color: white;
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.sub-sel:hover,
.sub-sel:focus {
  border-color: #ff00c8;
  box-shadow: 0 0 8px rgba(255, 0, 200, 0.5);
}
.sub-but {
  font-family: "MONTSERRAT";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 100%;
  margin: 0;
  width: 40%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #ff00c8, #6200ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.can-but {
  font-family: "MONTSERRAT";
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #ff00c8, #6200ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.can-but:hover {
  background: linear-gradient(90deg, #6200ff, #ff00c8);
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.5);
}
.sub-but:hover {
  background: linear-gradient(90deg, #6200ff, #ff00c8);
  box-shadow: 0 0 12px rgba(255, 0, 200, 0.5);
}
.terms {
  margin: 0;
  font-size: 9px;
}
.terms a {
  color: lightblue;
}
@media (max-width: 768px) {
  .index-action-container {
    position: unset;
    width: 100%;
    gap: 30px;
  }
  .glow-raccoon {
    width: 40%;
    position: unset;
    left: 0;
    right: 0;
    /* bottom: 0; */
  }
  .main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    height: 100vh;
    justify-content: space-around;
  }
}
.monitored-text {
  padding: 5px;
  background-color: skyblue;
  justify-content: center;
  flex-direction: column-reverse;
  text-align: center;
  margin: 20px 0;
}
.start-chat {
  font-size: xx-large;
  margin: 0px;
}
.blogss {
  font-family: Poppins;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 25px;
  margin: 5px;
}
.action-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
button.action-button {
  background: -moz-linear-gradient(
    top,
    #7db9e8 3%,
    #1e5799 99%,
    #1e5799 99%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #7db9e8 3%,
    #1e5799 99%,
    #1e5799 99%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    #7db9e8 3%,
    #1e5799 99%,
    #1e5799 99%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 );
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 18px;
}
.action-button a {
  color: white;
  text-decoration: none;
}

/* ...............video_chat.html................. */

.video_chat_main_container {
  height: 100%;
  margin: 0;
  padding: 0;
  flex-basis: 90%;
}
.video_chat_container {
  display: flex;
  height: 100%;
  width: 100%;
}
.video-tag-container {
  margin-top: 10px;
  margin-right: 5px;
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
}
.youare-pro {
  display: flex;
  color: rgb(143, 120, 85);
  align-items: center;
  gap: 5px;
}
.youare-pro img {
  width: 32px;
}
.videos {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.video-player {
  flex-basis: 50%;
  max-height: 350px;
}
video {
  max-width: 100%;
  max-height: 100%;
  background-color: rgb(63, 62, 62);
}

/* ............Chat Area ......... */
.al {
  font-size: 15px;
}
.chat-text-area {
  height: 57vh;
  margin: 0;
  padding: 4px;
  overflow-y: auto;
}
.chat-container {
  flex-basis: 70%;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.chat-text-container {
  flex-basis: 80%;
}

.next-chat-container {
  flex-basis: 20%;
  display: flex;
  width: 100%;
  height: 100%;
}
.next-chat {
  display: flex;
  flex-basis: 15%;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 0 5px gray;
  margin: 5px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  pointer-events: none;
}
.stop-chat {
  display: flex;
  flex-basis: 15%;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 0 5px gray;
  margin: 5px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  pointer-events: all;
}
.footer-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: -webkit-fill-available;
  left: 0;
  padding: 8px 0px;
  border-top: 1px solid;
  background: #87ceeb;
  color: black;
  /* font-family: Helvetica; */
  font-family: Poppins;
}
.type-message {
  flex-basis: 70%;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 0 5px gray;
  height: auto;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}
#msg-input {
  width: 99%;
  height: 91%;
  outline: none;
  /* border: 1px solid lightgray; */
  border: 0;
  padding: 5px;
}
.msg-send-button {
  display: flex;
  flex-basis: 15%;
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 0 5px gray;
  margin: 5px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.strng-txt {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  nav {
    height: 100%;
    padding: 2px 10px;
  }
  .pad-nav {
    padding: 2px 10px;
  }
  .start-chat {
    font-size: x-large;
    margin-top: 20px;
    letter-spacing: 1px;
  }
  /* ............Header Start ..........*/
  header {
    flex-basis: 10%;
    box-shadow: 0px 0px 5px gray;
    max-height: 42px !important;
  }
  #connectionStatus {
    justify-content: center;
  }
  a img.logo {
    max-height: 30px;
  }
  .headerText {
    font-size: 90%;
  }
  .online-status {
    display: none;
  }

  .video_chat_container {
    flex-direction: column;
    padding-left: 2.48px;
  }
  /* ............Header End ..........*/
  /* ............Video Start ..........*/
  .videos {
    position: relative;
  }
  video#user-1 {
    position: absolute;
    right: 0;
    max-width: 110px;
    margin-top: 3px;
  }
  .video-tag-container {
    margin-top: 0px;
    flex-basis: 0;
  }
  .chat-text-area {
    height: 225px;
  }
  .chat-text-container p {
    font-size: 100%;
    line-height: 1;
    text-align: center;
  }
  .video_chat_container {
    flex-direction: column;
    justify-content: space-between !important;
    padding-left: 2.48px;
  }
  main.video_chat_main_container {
    flex-basis: 100%;
  }
  .glow-racoon {
    width: 50%;
  }
  .chat-container {
    flex-basis: 80%;
  }
  .footer-cont {
    font-size: 17px;
  }
  .next-chat-container {
    padding-top: 30px;
  }
}
@media (max-width: 420px) {
  .footer-cont {
    font-size: 13px;
  }
  .glow-raccoon {
    width: 70%;
  }
}
