body {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.2;
  transition: all 0.5s linear;
  background-color: #1a1a1a;
}
@media (min-width: 991px) {
  body {
    overflow-y: visible;
  }
}
:root {
  --main-color: #3498db;
  --padding: 60px;
  --ba-color: #31312e;
}
ul li {
  list-style: none;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: auto;
  margin-left: auto;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 1.2rem;
}
html::-webkit-scrollbar-track {
  background: #1a1a1a;
}
html::-webkit-scrollbar-thumb {
  background: var(--main-color);
  cursor: not-allowed;
}
#chathtml::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
/* very small */
/* small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.main-heading {
  width: 100%;
  min-height: 60px;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eeeeee0a;
  border-top: 1px solid #eeeeee0a;
}
.main-heading h2 {
  color: var(--main-color);
  padding: 10px 0;
  font-size: 30px;
}
.main-heading h2 span {
  color: white;
}

h1.logo {
  color: white;
  font-size: 25px;
}
h1.logo span {
  color: var(--main-color);
}
.chatLink {
  color: white;
  height: 60px;
  width: 60px;
  position: fixed;
  z-index: 999;
  bottom: 50px;
  right: 20px;
  background-color: var(--main-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chatLink .fa-robot {
  font-size: 20px;
}
/* 
/* --------------------------------------------------- */
.header {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 1000;
  background-color: #1a1a1a;
  top: 0;
  left: 0;
  border-bottom: 1px solid #eeeeee0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.header .scroller {
  position: absolute;
  left: 30%;
  bottom: -4px;
  height: 3px;
  width: 70%;
}
@media (max-width: 991px) {
  .header .scroller {
    left: 0;
    width: 100%;
  }
}
.header .scroller .scrollerProgress {
  height: 100%;
  width: 0;
  background-color: var(--main-color);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (min-width: 992px) {
  .header {
    z-index: 1001;
  }
}
.header i {
  color: white;
  font-size: 20px;
}
.header .micons {
  display: none;
}

@media (max-width: 991px) {
  .header .micons {
    display: block;
  }
  .header i#menuBar {
    display: block;
  }
  .header i#xmark {
    display: none;
  }
}

/* --------------------------------------------------------------------------------- */
.content {
  width: 70%;
  position: absolute;
  right: 0;
  top: 60px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  background-color: #111;
}
.overlay {
  height: 100%;
  position: fixed;
  z-index: 999;
  left: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  display: none;
}
@media (min-width: 992px) {
  .overlay {
    display: none !important;
  }
}
.glass-back {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1002;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  display: none;
}
i#cshp {
  position: fixed;
  top: 15px;
  right: 15px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1004;
  font-size: 22px;
  color: white;
  outline: solid;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1003;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  display: none;
}
i#cshp:hover {
  color: var(--main-color);
}
.show-pic {
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.show-pic img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media (max-width: 991px) {
  .content {
    width: 100%;
    padding: 0 30px;
  }
}
.content > div {
  width: 100%;
  padding-top: 60px;
}
.content #home {
  display: flex;
  padding-top: 0;
  flex-direction: column;
  justify-content: center;
  color: white;
  min-height: calc(100vh - 60px);
  gap: 5px;
}

.content #home .text {
  display: flex;
  flex-direction: column;
  width: 60%;
}
@media (max-width: 767px) {
  .content #home .text {
    width: 100%;
  }
}
.content #home .text h3 {
  font-size: 22px;
  text-transform: capitalize;
}
.content #home .text h3 span {
  color: var(--main-color);
}
.content #home .text p {
  line-height: 1.6;
  opacity: 0.8;
}
.content #home a {
  color: white;
  text-decoration: none;
  background-color: var(--ba-color);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.3s;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.content #home a:hover {
  background-color: var(--main-color);
}
.content #home a i {
  margin-left: 5px;
}

/* ------------------------------------------------------- */

#about .card {
  margin-top: 60px;
  display: flex;
  align-items: center;
}

#about .card img {
  height: calc(100vh - 240px);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

#about .card .info {
  flex: 1;
  background-color: #1a1a1a;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  #about .card {
    flex-direction: column;
  }
  #about .card img {
    width: 100%;
    height: auto;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }
  #about .card .info {
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }
}
#about .card .info h5 {
  font-style: italic;
}
#about .card .info p {
  line-height: 1.8;
  opacity: 0.8;
}
#about .card .info a {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: #31312e;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#about .card .info a:hover {
  background-color: var(--main-color);
}
/* -------------------------------------------------------- */
#education .boxes {
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#education .boxes::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#education .boxes .date {
  margin: 10px auto;
  position: relative;
  width: fit-content;
  background-color: var(--main-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  z-index: 2;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#education .boxes .left,
#education .boxes .right {
  width: calc(50% - 25px);
  background-color: #1a1a1a;
  color: white;
  padding: 15px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  border: 1px solid #252523;
}
#education .boxes .left {
  align-self: flex-start;
}
#education .boxes .right {
  align-self: flex-end;
}
#education .boxes .left::before,
#education .boxes .right::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #1a1a1a;
  border: 3px solid var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
#education .boxes .left::before {
  right: -33px;
}
#education .boxes .right::before {
  left: -33px;
}
#education .boxes .left::after,
#education .boxes .right::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
#education .boxes .left::after {
  border-color: transparent transparent transparent #1a1a1a;
  right: -20px;
}
#education .boxes .right::after {
  border-color: transparent #1a1a1a transparent transparent;
  left: -20px;
}
#education .boxes .left h5,
#education .boxes .right h5 {
  color: var(--main-color);
  margin: 5px 0;
  font-weight: bold;
  font-size: 18px;
}
#education .boxes .left p,
#education .boxes .right p {
  color: white;
  opacity: 0.8;
  margin: 5px 0;
  line-height: 1.8;
  text-transform: lowercase;
}

@media (max-width: 767px) {
  #education .boxes {
    gap: 20px;
  }
  #education .boxes::before {
    left: initial;
    right: 5px;
  }
  #education .boxes .left,
  #education .boxes .right {
    align-self: flex-start;
    width: calc(100% - 33px);
  }
  #education .boxes .right::before {
    left: initial;
    right: -33px;
  }
  #education .boxes .right::after {
    left: initial;
    border-color: transparent transparent transparent #1a1a1a;
    right: -20px;
  }
  #education .boxes .date {
    margin: 5px 0;
    align-self: flex-start;
  }
}
/* ------------------------------------------------ */
#skills .skill-prog {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
}
#skills .skill-prog .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  #skills .skill-prog {
    gap: 25px;
  }
  #skills .skill-prog .box {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  #skills .skill-prog .box .c-prog {
    width: 100% !important;
  }
  #skills .skill-prog .sk-name {
    width: 60% !important;
  }
}
#skills .skill-prog .box .sk-name {
  color: white;
  width: 20%;
  font-weight: 500;
  font-size: 20px;
}
#skills .skill-prog .box .c-prog {
  width: 75%;
  height: 20px;
  background-color: white;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#skills .skill-prog .box .c-prog .prog {
  display: block;
  height: inherit;
  background-color: var(--main-color);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
}
#skills .skill-prog .box .c-prog .prog::before {
  content: attr(data-progress);
  position: absolute;
  background-color: var(--main-color);
  color: white;
  padding: 5px;
  font-size: 13px;
  font-family: system-ui;
  right: -17px;
  top: -36px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
#skills .skill-prog .box .c-prog .prog::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px;
  border-color: var(--main-color) transparent transparent transparent;
  top: -12px;
  right: -10px;
}
/* ----------------------------------------------------------- */
.content #contact {
  min-height: 100vh;
}
.content #contact .boxes {
  padding-top: var(--padding);
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content #contact .sm-links {
  display: flex;
  gap: 10px;
}
.content #contact .sm-links a {
  background-color: #1a1a1a;
  padding: 20px 22px;
  color: white;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.content #contact .sm-links a i {
  font-size: 25px;
}
.content #contact .mail {
  color: white;
  text-decoration: none;
  font-size: 18px;
  width: fit-content;
}
.content #contact .mail i {
  margin-right: 10px;
  font-size: 20px;
}
.content #contact .phone a {
  color: white;
  display: flex;
  gap: 10px;
  font-size: 18px;
  width: fit-content;
}
.content #contact .phone a {
  text-decoration: none;
  color: white;
}
.content #contact .phone i {
  font-size: 20px;
}
.content #contact a {
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.content #contact a:hover {
  color: var(--main-color);
}
@media (max-width: 500px) {
  .content #contact .mail,
  .content #contact .mail i,
  .content #contact .phone a,
  .content #contact .phone i {
    font-size: 14px;
  }
}
/* ------------------------------------------------------------- */
.content .copyright {
  position: absolute;
  width: 100%;
  padding: 10px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.8px;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  color: white;
  text-transform: uppercase;
  background-color: var(--main-color);
}
@media (max-width: 400px) {
  .content .copyright {
    font-size: 10px;
  }
}

/* --------------------------------------------------------------------------------- */
.menu {
  height: calc(100% - 60px);
  position: fixed;
  z-index: 1000;
  top: 60px;
  left: 0 !important;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #1a1a1a;
  transition: all 0.5s;
  border-right: 1px solid #eeeeee0a;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
@media (max-width: 991px) {
  .menu {
    left: -100% !important;
    width: 60%;
    height: calc(100%);
    top: 0;
  }
  #mChat {
    left: 0 !important;
  }
}
@media (max-width: 520px) {
  .menu {
    width: 80%;
  }
}
.menu > img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -khtml-border-radius: 50%;
  outline: solid 5px var(--main-color);
  cursor: pointer;
}
.menu .text {
  text-align: center;
  color: white;
}
.menu .text .name {
  display: flex;
  align-items: center;
  gap: 2px;
}
.menu .text .name h2 {
  font-size: 22px;
}
.menu .text .name .ver {
  width: 22px;
  height: 22px;
}
.menu .text h5 {
  opacity: 0.8;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 320px) {
  .menu .text .name h2 {
    font-size: 18px;
  }
  .menu .text h5 {
    font-size: 16px;
  }
}
.menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  gap: 10px;
}
.menu ul li {
  width: 100%;
  cursor: pointer;
}
.menu ul li a {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--ba-color);
  padding: 10px 0;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.menu ul li a:hover {
  background-color: var(--main-color);
}
.menu .settings {
  position: absolute;
  top: calc(-100% + 50px);
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  padding-bottom: 15px;
  color: white;
  background-color: #1a1a1a;
  border-bottom: 2px solid #eeeeee0a;
  z-index: 2;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}
.menu .settings .shBottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: transparent;
  box-shadow: -2px -5px 4px -4px #0000006e;
}
.menu .settings h3 {
  font-size: 20px;
  color: var(--main-color);
  line-height: 60px;
  padding: 0px 15px;
  position: relative;
  box-shadow: -8px -3px 4px 4px #0000006e;
}
.menu .settings .settings-boxes {
  overflow-y: scroll;
  max-height: calc(100% - 65px);
  padding: 15px;
}
.menu .settings .settings-boxes::-webkit-scrollbar {
  width: 0.5rem;
}
.menu .settings .settings-boxes::-webkit-scrollbar-track {
  background: #1a1a1a;
}
.menu .settings .settings-boxes::-webkit-scrollbar-thumb {
  background: #31312e;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.menu .settings .box {
  background-color: #31312e;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.menu .settings .box h4 {
  font-size: 20px;
  cursor: default;
}
.menu .settings .color.box .colors-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.menu .settings .color.box .colors-list span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #31312e;
  outline: 2px solid #31312e;
  opacity: 0.5;
  cursor: pointer;
}
.menu .settings .color.box .colors-list span.active {
  opacity: 1;
  outline-color: #3498db;
}
.menu .settings .color.box .colors-list span:nth-of-type(1) {
  background-color: #3498db;
}
.menu .settings .color.box .colors-list span:nth-of-type(2) {
  background-color: #8a2be2;
}
.menu .settings .color.box .colors-list span:nth-of-type(3) {
  background-color: #4caf50;
}
.menu .settings .color.box .colors-list span:nth-of-type(4) {
  background-color: #e84a5f;
}
.menu .settings .color.box .colors-list span:nth-of-type(5) {
  background-color: #ffa500;
}
.menu .settings .box .toggle-switch {
  width: 65px;
  height: 32px;
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.menu .settings .box .toggle-switch .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu .settings .box .toggle-switch.on .cover {
  background-color: var(--main-color);
  opacity: 0.1;
}
.menu .settings .box .toggle-switch.off .cover {
  background-color: #31312e;
  opacity: 0.4;
}
.menu .settings .box .toggle-switch .circle {
  height: 28px;
  width: 28px;
  font-size: 10px;
  line-height: 28px;
  position: absolute;
  top: -100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.menu .settings .box .toggle-switch .circle.active {
  top: 50%;
}
.menu .settings .box .toggle-switch .circle.on {
  left: 2px;
  background-color: var(--main-color);
}
.menu .settings .box .toggle-switch .circle.off {
  right: 2px;
  background-color: #31312e;
}
.menu .settings .resetBtn {
  background-color: var(--main-color);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.menu .settings .fa-gear {
  position: absolute;
  color: white;
  bottom: 0;
  right: 15px;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  padding: 5px 6px;
  background-color: #1a1a1a;
  border: 2px solid #eeeeee0a;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.menu .settings .fa-gear:hover {
  color: var(--main-color);
}
.menu .menuOverl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  z-index: 1;
  display: none;
}
.menu .settings hr {
  border-color: #eeeeee08;
  margin: 10px;
}
/* -----------------------------------------------Chat Space ----------------------------*/
#chathtml::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
#hChat {
  display: block;
  width: 100%;
  position: relative;
}

#hChat h2 {
  color: white;
  text-transform: capitalize;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
#hChat h2 span {
  color: var(--main-color);
}
#hChat a i,
#hChat .fa-volume-high,
.fa-volume-xmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
#hChat a i {
  left: 15px;
}
#hChat .fa-volume-high {
  right: 15px;
  display: none;
}
.fa-volume-xmark {
  right: 15px;
  display: block;
}
#hChat i:hover {
  color: var(--main-color);
}
#mChat {
  justify-content: flex-start;
  position: fixed;
  height: calc(100% - 50px);
  overflow-y: scroll;
  scroll-behavior: smooth;
  width: 40%;
  z-index: -1;
  border-right: 1px solid #eeeeee08;
}
@media (min-width: 992px) {
  #mChat {
    overflow-y: scroll !important;
    top: 60px !important;
  }
}
#mChat ul #cl {
  position: relative;
  display: none;
}
#mChat ul #cl input {
  position: absolute;
  width: calc(100% - 20px);
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 10px;
  background-color: #111111;
  outline: none;
  border: solid var(--main-color) 1px;
  border-radius: 20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#mChat #closer {
  position: absolute;
  width: 0;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1a1a1a;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transition: 0.1s;
  -moz-transition: 0.1s;
  -ms-transition: 0.1s;
  -o-transition: 0.1s;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
#mChat #downCl,
#mChat #txtCl {
  display: none;
}

#mChat ul {
  width: 100%;
  gap: 0;
  cursor: pointer;
}
#mChat ul li {
  text-transform: capitalize;
  width: 100%;
  height: 50px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  color: #ffffffba;
  border-bottom: 1px solid #eeeeee08;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#mChat ul li:hover {
  background-color: #31312e24;
  color: white;
}
@media (min-width: 768px) {
  #mChat::-webkit-scrollbar {
    width: 1.2rem;
  }
  #mChat::-webkit-scrollbar-track {
    background: #222222b3;
  }
  #mChat::-webkit-scrollbar-thumb {
    background: var(--main-color);
    cursor: not-allowed;
  }
}

#sChat {
  width: 60%;
  color: white;
  overflow-y: auto;
  height: calc(100vh - 110px);
  position: fixed;
  padding: 0 15px 20px;
  border-bottom: 1px solid #eeeeee08;
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  #sChat {
    width: 100%;
    padding: 0 15px 70px;
  }
  #mChat {
    width: 100%;
    border-top: 1px solid #eeeeee08;
    left: 0%;
    top: calc(100% - 50px);
    z-index: 1000;
    gap: 0;
    overflow-y: hidden;
  }
  #mChat #cl {
    display: block !important;
  }
}
#sChat #ups {
  display: block;
  min-height: 20px !important;
  width: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  #sChat::-webkit-scrollbar {
    width: 1.2rem;
  }
  #sChat::-webkit-scrollbar-track {
    background: #222222b3;
  }
  #sChat::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    cursor: not-allowed;
  }
}

#sChat ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0px 0px 0px 30px;
}
#sChat .qst {
  padding: 10px;
  font-size: 16px;
  max-width: 80%;
  line-height: 1.2;
}

#sChat .per {
  background-color: var(--main-color);
  align-self: flex-end;
  border-radius: 15px 3px 15px 15px;
  font-size: 16px;
  position: relative;
  -webkit-border-radius: 15px 3px 15px 15px;
  -moz-border-radius: 15px 3px 15px 15px;
  -ms-border-radius: 15px 3px 15px 15px;
  -o-border-radius: 15px 3px 15px 15px;
}

#sChat .chat {
  background-color: #31312e;
  color: white;
  align-self: flex-start;
  border-radius: 3px 15px 15px 15px;
  font-size: 16px;
  position: relative;
  -webkit-border-radius: 3px 15px 15px 15px;
  -moz-border-radius: 3px 15px 15px 15px;
  -ms-border-radius: 3px 15px 15px 15px;
  -o-border-radius: 3px 15px 15px 15px;
}
#sChat .chat.img {
  position: relative;
  background-color: transparent;
  padding: 0;
  max-width: 50%;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}

@media (max-width: 991px) {
  #sChat .chat.img {
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  #sChat .chat.img {
    max-width: 50%;
  }
}
@media (max-width: 520px) {
  #sChat .chat.img {
    max-width: 80%;
  }
}
#sChat .chat::after,
#sChat .chat.img::after {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../imgs/IMG_20230122_084945_164.jpg);
  background-size: cover;
  position: absolute;
  left: -35px;
  top: 0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid white;
}
#uplink {
  display: none;
}
#upch {
  position: fixed;
  right: 40px;
  bottom: 70px;
  z-index: 999;
  color: #ffffffba;
  background-color: #31312e;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
#sChat .img {
  cursor: pointer;
}
@media (max-width: 767px) {
  #upch {
    right: 20px;
  }
}
#upch:hover {
  color: white;
}
input::placeholder {
  color: rgba(255, 255, 255, 0.837);
}
