* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: var(--cb5);
  width: 100%;
}

html.scroll-locked-modal,
html.scroll-locked {
  overflow: hidden;
  padding-right: var(--scroll-bar-width);
}

body {
  width: 100%;
  background-color: #f5f5f5;
  opacity: 0;
}

[lang='ar'] {
  direction: rtl;
}

img {
  display: block;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

input {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
  outline: none;
}
input:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}
a.active {
  color: var(--cp1) !important;
  fill: var(--cp1) !important;
}

svg {
  width: 1rem;
  aspect-ratio: 1;
}

@media (max-width: 799px) {
  html.scroll-locked-chat {
    overflow: hidden;
    padding-right: var(--scroll-bar-width);
  }
}
