* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0px;
  display: none;
}

.container {
  padding: 0 16px;
  width: 100%;
}

#telegram #column-right .right-header .profile .edit-btn, #telegram #column-right .right-header .profile .close-btn, #telegram #column-center .main-header .person .search-btn,
#telegram #column-center .main-header .person .more-btn, #telegram #column-left .left-header .left-header-wrapper .toggle-settings {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transition: 300ms;
  border-radius: 35%;
}
#telegram #column-right .right-header .profile .edit-btn:hover, #telegram #column-right .right-header .profile .close-btn:hover, #telegram #column-center .main-header .person .search-btn:hover,
#telegram #column-center .main-header .person .more-btn:hover, #telegram #column-left .left-header .left-header-wrapper .toggle-settings:hover {
  background-color: rgba(128, 128, 128, 0.103);
  border-radius: 50%;
}
#telegram #column-right .right-header .profile .edit-btn i, #telegram #column-right .right-header .profile .close-btn i, #telegram #column-center .main-header .person .search-btn i,
#telegram #column-center .main-header .person .more-btn i, #telegram #column-left .left-header .left-header-wrapper .toggle-settings i {
  color: #707579;
}

#telegram #column-right .right-footer .shared-media, #telegram #column-left .left-navigation .navbar {
  display: flex;
  list-style: none;
  overflow-x: auto;
}
#telegram #column-right .right-footer .shared-media li, #telegram #column-left .left-navigation .navbar li {
  position: relative;
  height: 3rem;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #707579;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  transition: 300ms;
}
#telegram #column-right .right-footer .shared-media li:hover, #telegram #column-left .left-navigation .navbar li:hover {
  background-color: rgba(128, 128, 128, 0.219);
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
#telegram #column-right .right-footer .shared-media li.active, #telegram #column-left .left-navigation .navbar li.active {
  color: #3390ec;
}
#telegram #column-right .right-footer .shared-media li.active::after, #telegram #column-left .left-navigation .navbar li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 70%;
  height: 3px;
  background-color: #3390ec;
}

#telegram {
  grid-template-columns: 27.5% 1fr 0%;
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 100vh;
  display: grid;
}
#telegram #column-left {
  overflow: auto;
  height: 100vh;
}
#telegram #column-left .left-header {
  background-color: #fff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
  position: fixed;
  z-index: 1;
  width: 27.5%;
  z-index: 6;
}
#telegram #column-left .left-header .left-header-wrapper {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: 56px;
  align-items: center;
  justify-items: center;
  position: relative;
}
#telegram #column-left .left-header .left-header-wrapper .settings {
  transition: 300ms;
  position: absolute;
  top: 100%;
  left: 15px;
  background-color: white;
  box-shadow: 0px 2px 20px 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 0.5rem 0;
  font-size: 16px;
}
#telegram #column-left .left-header .left-header-wrapper .settings ul {
  list-style: none;
}
#telegram #column-left .left-header .left-header-wrapper .settings ul li {
  padding: 1rem 2rem 1rem 1.5rem;
  cursor: pointer;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.849);
}
#telegram #column-left .left-header .left-header-wrapper .settings ul li:hover {
  background-color: ghostwhite;
}
#telegram #column-left .left-header .left-header-wrapper .settings ul li i {
  pointer-events: none;
  margin-right: 2rem;
}
#telegram #column-left .left-header .left-header-wrapper .settings a {
  padding: 1rem;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: dodgerblue;
  font-size: 0.9rem;
}
#telegram #column-left .left-header .left-header-wrapper .settings a:hover {
  color: red;
  background-color: ghostwhite;
}
#telegram #column-left .left-header .left-header-wrapper .settings.hide {
  transform: scale(0);
}
#telegram #column-left .left-header .left-header-wrapper .width-correcter {
  padding: 0 7px;
  width: 100%;
}
#telegram #column-left .left-header .left-header-wrapper .search-wrapper {
  width: 100%;
  line-height: 42px;
  border-radius: 22px;
  border: 1px solid #dfe1e5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 40px;
  align-items: center;
}
#telegram #column-left .left-header .left-header-wrapper .search-wrapper i {
  width: 42px;
  text-align: center;
  font-size: 17px;
  color: rgba(128, 128, 128, 0.596);
  border-radius: 50%;
}
#telegram #column-left .left-header .left-header-wrapper .search-wrapper i:last-child {
  opacity: 0;
  cursor: pointer;
  padding: 30% 0;
  font-size: 19px;
  color: #3390ec;
  transition: 300ms;
}
#telegram #column-left .left-header .left-header-wrapper .search-wrapper i:last-child:hover {
  background-color: rgba(0, 102, 255, 0.151);
}
#telegram #column-left .left-header .left-header-wrapper .search-wrapper input {
  height: 40px;
  outline: none;
  font-size: 100%;
  border: none;
  width: 100%;
}
#telegram #column-left .left-navigation {
  padding-left: 11px;
  padding-top: 56px;
}
#telegram #column-left .chats_wrapper .tabs-content {
  width: 100%;
  display: none;
  border-top: 1px solid #dfe1e5;
  padding: 8px;
}
#telegram #column-left .chats_wrapper .tabs-content.active {
  display: block;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item {
  cursor: pointer;
  padding: 0.5625rem;
  border-radius: 10px;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item:hover {
  background-color: rgba(128, 128, 128, 0.082);
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .chat_avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(#72d5fd #2a9ef1);
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .chat_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption {
  padding: 0.0625rem 0.4375rem 0.0625rem 0.5625rem;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .diolog_title {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .diolog_title p {
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .diolog_title .diolog_title_details {
  font-size: 0.75rem;
  color: #707579;
  display: block;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .diolog_title .diolog_title_details i {
  color: green;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .dialog_subtitle {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .dialog_subtitle p {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 27px;
  color: #707579;
}
#telegram #column-left .chats_wrapper .tabs-content .chat_item .user_caption .dialog_subtitle .diolog_subtitle_details {
  margin: 4px 0 0 8px;
  padding: 0 8px;
  background-color: rgba(128, 128, 128, 0.493);
  color: white;
  border-radius: 30px;
  line-height: 1.5rem;
}
#telegram #column-center {
  height: 100vh;
  background: #e6ebee url(https://web.telegram.org/k/assets/img/bg.jpeg) center center no-repeat;
  background-size: cover;
}
#telegram #column-center .container {
  width: 728px;
  margin: auto;
}
#telegram #column-center .main-header {
  background-color: #fff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
  position: fixed;
  z-index: 1;
  width: 72.5%;
  cursor: pointer;
  padding: 0 3px;
}
#telegram #column-center .main-header .container {
  width: 100%;
}
#telegram #column-center .main-header .person {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: 56px;
  align-items: center;
  width: 100%;
}
#telegram #column-center .main-header .person .back_for_mobile {
  display: none;
}
#telegram #column-center .main-header .person .avatar {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  overflow: hidden;
}
#telegram #column-center .main-header .person .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#telegram #column-center .main-header .person .info {
  padding-left: 18px;
  font-size: 16px;
}
#telegram #column-center .main-header .person .info #name {
  font-weight: 500;
}
#telegram #column-center .main-header .person .info #status {
  font-size: 14px;
  margin-top: 1px;
  color: #707579;
}
#telegram #column-center .main-header .person .info #status.typing {
  color: rgba(0, 102, 255, 0.863);
}
#telegram #column-center .main-header .person .search-btn,
#telegram #column-center .main-header .person .more-btn {
  margin-left: 7px;
}
#telegram #column-center .main-header .person .search-btn i,
#telegram #column-center .main-header .person .more-btn i {
  pointer-events: none;
  font-size: 17px;
  color: #707579;
}
#telegram #column-center .main-header .person .more-btn-content {
  position: absolute;
  right: 2%;
  top: 100%;
  transform: scale(0);
  transition: 300ms;
}
#telegram #column-center .main-header .person .more-btn-content.active {
  transform: scale(1);
}
#telegram #column-center .main-header .person .more-btn-content ul {
  margin-top: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  background-color: white;
  border-radius: 10px;
}
#telegram #column-center .main-header .person .more-btn-content ul li {
  display: flex;
  font-size: 16px;
  padding: 0 40px 0 1rem;
  height: 56px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  text-align: left;
  color: rgba(0, 0, 0, 0.781);
}
#telegram #column-center .main-header .person .more-btn-content ul li.red {
  color: rgb(230, 5, 5);
}
#telegram #column-center .main-header .person .more-btn-content ul li.red i {
  color: rgb(230, 5, 5);
}
#telegram #column-center .main-header .person .more-btn-content ul li:hover {
  background: rgba(128, 128, 128, 0.116);
}
#telegram #column-center .main-header .person .more-btn-content ul li i {
  pointer-events: none;
  width: 24px;
  height: 24px;
  display: inline-block;
  font-size: 19px;
  display: grid;
  align-items: center;
  margin-right: 20px;
  color: #707579;
}
#telegram #column-center .main-header .typewriterDot {
  opacity: 0;
  animation: typewriterDot 4s infinite linear;
}
#telegram #column-center .main-header .typewriterDot:nth-of-type(1) {
  animation-delay: 0s;
}
#telegram #column-center .main-header .typewriterDot:nth-of-type(2) {
  animation-delay: 0.5s;
}
#telegram #column-center .main-header .typewriterDot:nth-of-type(3) {
  animation-delay: 1s;
}
@keyframes typewriterDot {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
#telegram #column-center .main-chat {
  padding: 56px 0 0;
  height: 90%;
  overflow-y: auto;
}
#telegram #column-center .main-chat .container {
  padding-right: 83px;
}
#telegram #column-center .main-chat .message {
  font-family: sans-serif;
  padding: 6px 42px 6px 10px;
  margin: 4px 0 8px 0;
  max-width: 480px;
  min-height: 30px;
  display: inline-block;
  line-height: 1.3125;
  word-break: break-word;
  position: relative;
  font-weight: 400;
  border-radius: 10px;
  text-align: left;
}
#telegram #column-center .main-chat .message .message_time {
  font-size: 12px;
  position: absolute;
  bottom: 4px;
  right: 8px;
  color: #4fae4e;
}
#telegram #column-center .main-chat .message .tail {
  position: absolute;
  bottom: 0;
  display: none;
  border: 10px solid transparent;
}
#telegram #column-center .main-chat .message.has-tail .tail {
  display: inline-block;
}
#telegram #column-center .main-chat .message.to-me {
  background-color: white;
}
#telegram #column-center .main-chat .message.to-me .tail {
  border-bottom-color: white;
  left: -10px;
}
#telegram #column-center .main-chat .message.from-me {
  padding-right: 58px;
  background-color: #eeffde;
  margin-left: auto;
}
#telegram #column-center .main-chat .message.from-me .tail {
  border-bottom-color: #eeffde;
  right: -10px;
}
#telegram #column-center .main-chat .message.service_notification {
  text-align: center;
  margin: 4px auto 8px auto !important;
  background-color: rgb(172, 216, 218);
}
#telegram #column-center .main-footer {
  display: none;
  position: fixed;
  z-index: 2;
  bottom: 1rem;
  width: 72.5%;
}
#telegram #column-center .main-footer .main-footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper {
  border-radius: 10px;
  background-color: white;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  position: relative;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .emoji {
  align-self: flex-end;
  cursor: pointer;
  padding: 0 15px 10px;
  color: #707579;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .emoji:hover {
  animation: emo_anim 0.5s 1 linear;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .emoji i {
  font-size: 24px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .keyboard,
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file {
  align-self: flex-end;
  padding-bottom: 10px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .keyboard:hover,
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file:hover {
  transform: scale(1.2);
}
@keyframes emo_anim {
  0% {
    transform: rotate(0) scale(1);
  }
  25% {
    transform: rotate(-45deg) scale(1.1);
  }
  75% {
    transform: rotate(45deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown {
  transform: scale(0);
  cursor: pointer;
  position: absolute;
  width: 72.5%;
  border-radius: 10px;
  background-color: white;
  left: 0;
  bottom: 110%;
  transition: 300ms;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown.active {
  transform: scale(1);
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown:focus {
  outline: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.5rem;
  margin: 0 12px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown button:hover {
  background-color: rgba(135, 207, 235, 0.404);
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown button.active i {
  color: blue;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown button i {
  color: #707579;
  pointer-events: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emoji-tab {
  display: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emoji-tab.active {
  display: block;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis .emoji_nav {
  display: flex;
  border-bottom: 1px solid silver;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis .emoji_nav button {
  margin: 0 5px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis #emoji_here {
  padding: 10px 11px;
  height: 300px;
  overflow-y: auto;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis #emoji_here .emoji-item {
  display: inline-block;
  margin: 0 0.0625rem;
  padding: 0.25rem;
  line-height: inherit;
  border-radius: 8px;
  cursor: pointer;
  width: 2.625rem;
  height: 2.625rem;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis #emoji_here .emoji-item:hover {
  background-color: rgba(128, 128, 128, 0.123);
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-tabs {
  height: 48px;
  border-top: 1px solid silver;
  display: grid;
  grid-template-columns: auto auto auto 0;
  justify-content: center;
  position: relative;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-tabs #backspace {
  position: absolute;
  right: 0;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .new-message-text {
  padding: 5px;
  height: auto;
  display: grid;
  align-items: center;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .new-message-text #input {
  height: -moz-fit-content;
  height: fit-content;
  font-size: 16px;
  font-family: sans-serif;
  border: none;
  width: 100%;
  outline: none;
  display: block;
  resize: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .keyboard {
  cursor: pointer;
  color: #707579;
  transition: 300ms;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .keyboard i {
  font-size: 24px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown {
  position: fixed;
  border-radius: 15px;
  width: 900px;
  height: 365px;
  padding: 20px;
  left: -150vw;
  top: 50%;
  transition: 500ms;
  background-color: #5e5e5e;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -10;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown.active {
  z-index: 10;
  left: 50%;
  opacity: 1;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper {
  display: grid;
  grid-template-rows: 25px repeat(5, 50px);
  row-gap: 10px;
  grid-template-columns: 100%;
  width: 100%;
  height: 100%;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper span:not(.arrows):not(.middle-arrows):active {
  transform: scale(0.95);
  box-shadow: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .button-style {
  box-shadow: 0 0 10px -5px black;
  background: #3e3e3e;
  height: 50px;
  color: white;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  line-height: 45px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .esc.button-style {
  width: 50px;
  height: 25px;
  font-size: 15px;
  line-height: 25px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .capsLock.active::after {
  background-color: gold;
  box-shadow: 0px 0px 5px gold;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .capsLock::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  top: 5px;
  right: 5px;
  background-color: #999999;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .line {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .first-line {
  display: grid;
  grid-template-columns: 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 80px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .second-line {
  display: grid;
  grid-template-columns: 60px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 70px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .third-line {
  display: grid;
  grid-template-columns: 80px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 110px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .forth-line {
  display: grid;
  grid-template-columns: 125px 50px 50px 50px 50px 50px 50px 50px 50px 50px 50px 125px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .fifth-line {
  display: grid;
  grid-template-columns: 50px 50px 50px 50px 250px 50px 50px 50px auto;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .arrows {
  height: 50px;
  display: grid;
  grid-template-columns: 55px 50px 55px;
  grid-column-gap: 10px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .middle-arrows {
  width: 50px;
  height: 50px;
  display: grid;
  grid-template-rows: 24px 24px;
  row-gap: 2px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .up-arrow,
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown .keyboard_wrapper .down-arrow {
  background: #3e3e3e;
  width: 50px;
  height: 24px;
  color: white;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file {
  cursor: pointer;
  padding: 0 15px 10px;
  color: #707579;
  transition: 300ms;
  position: relative;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file i {
  font-size: 24px;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file input {
  cursor: pointer !important;
  position: absolute;
  width: 70%;
  height: 130%;
  left: 8px;
  top: -3px;
  opacity: 0;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-voice {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: white;
  color: #707579;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-voice.active {
  animation: voice_input_animation 500ms infinite;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-voice.active i {
  color: #0093ce;
}
@keyframes voice_input_animation {
  0% {
    box-shadow: 0 0 0px 0px #7cd0f1;
  }
  50% {
    box-shadow: 0 0 5px 5px #0077ff;
  }
  100% {
    box-shadow: 0 0 0px 0px #98dcf7;
  }
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-voice .fa-paper-plane {
  color: blue;
}
#telegram #column-center .main-footer .main-footer-wrapper .new-message-voice i {
  font-size: 24px;
  pointer-events: none;
}
#telegram #column-center.shrinked .main-header,
#telegram #column-center.shrinked .main-footer {
  width: 47.5%;
}
#telegram #column-center.shrinked .container {
  width: unset;
  margin: unset;
}
#telegram #column-center.shrinked .main-chat .container {
  padding-right: 16px;
}
#telegram #column-right {
  height: 100vh;
  overflow-y: auto;
}
#telegram #column-right .right-header {
  background-color: #fff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
  position: fixed;
  z-index: 1;
  width: 0%;
}
#telegram #column-right .right-header .profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 56px;
  align-items: center;
  width: 100%;
}
#telegram #column-right .right-header .profile .close-btn i {
  pointer-events: none;
  font-size: 1.5rem;
  line-height: 1;
}
#telegram #column-right .right-header .profile .profile-text {
  padding-left: 24px;
  font-weight: 500;
  font-size: 1.25rem;
}
#telegram #column-right .right-header .profile .edit-btn i {
  pointer-events: none;
  font-size: 1.2rem;
}
#telegram #column-right .carousel {
  width: 100%;
  padding-top: 56px;
  position: relative;
  cursor: pointer;
}
#telegram #column-right .carousel .carousel-items {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 384px;
}
#telegram #column-right .carousel .carousel-items .carousel-item {
  position: absolute;
  left: 101%;
  width: 100%;
  height: 100%;
}
#telegram #column-right .carousel .carousel-items .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#telegram #column-right .carousel .carousel-items .carousel-item.active {
  left: 0;
}
#telegram #column-right .carousel .carousel-items-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 8.98%, rgba(0, 0, 0, 0) 100%);
}
#telegram #column-right .carousel .carousel-items-info {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  left: 1.5rem;
  bottom: 0.5625rem;
  pointer-events: none;
  color: white;
}
#telegram #column-right .carousel .carousel-items-info .profile-name {
  font-size: 20px;
  line-height: 1.3125;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-word;
  max-width: 340px;
}
#telegram #column-right .carousel .carousel-items-info .profile-subtitle {
  font-size: 14px;
  opacity: 0.7;
}
#telegram #column-right .carousel .carousel-items-tabs {
  display: flex;
  position: absolute;
  top: 15%;
  left: 0.375rem;
  right: 0.375rem;
  height: 0.125rem;
  pointer-events: none;
}
#telegram #column-right .carousel .carousel-items-tabs .carousel-items-tab {
  flex: 1 1 auto;
  border-radius: 4px;
  margin: 0 0.125rem;
  background-color: rgb(255, 255, 255);
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
  height: 2px;
}
#telegram #column-right .carousel .carousel-items-tabs .carousel-items-tab.active {
  opacity: 1;
}
#telegram #column-right .carousel .carousel-items-arrow {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 33.3333333333%;
  opacity: 0;
  background-image: url("./img/icon-left.svg");
  background-position: 1.125rem 55%;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: 300ms;
}
#telegram #column-right .carousel .carousel-items-arrow.arrow-next {
  left: auto;
  right: 0;
  background-image: url("./img/icon-right.svg");
  background-position: calc(100% - 1.125rem) 55%;
}
#telegram #column-right .carousel .carousel-items-arrow:hover {
  opacity: 1;
}
#telegram #column-right .right-main {
  padding: 8px;
}
#telegram #column-right .right-main .right-main-item {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  border-radius: 7px;
  transition: 300ms;
}
#telegram #column-right .right-main .right-main-item:hover {
  background-color: rgba(128, 128, 128, 0.103);
}
#telegram #column-right .right-main .right-main-item .r_icon {
  color: #707579;
  font-size: 24px;
  display: grid;
  place-items: center;
}
#telegram #column-right .right-main .right-main-item .r_text {
  padding: 11px 16px;
  word-break: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.788);
}
#telegram #column-right .right-main .right-main-item .r_text span {
  color: #707579;
  font-size: 0.875rem;
  line-height: 1.3125;
}
#telegram #column-right .right-main .right-main-item .r_text.bell-text {
  display: flex;
  justify-content: space-between;
}
#telegram #column-right .right-main .right-main-item .r_text.bell-text .toggle-notification {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
#telegram #column-right .right-main .right-main-item .r_text.bell-text .toggle-notification i {
  width: 37px;
  pointer-events: none;
  font-size: 25px;
}
#telegram #column-right .right-main .right-main-item .r_text.bell-text .toggle-notification i.fa-toggle-on {
  color: rgba(0, 0, 255, 0.795);
}
#telegram #column-right .right-main .right-main-item .r_text.bell-text .toggle-notification i.fa-toggle-off {
  color: #4e4e4e;
}
#telegram #column-right .right-footer {
  background-color: rgba(128, 128, 128, 0.103);
  padding-top: 12px;
}
#telegram #column-right .right-footer .shared-media {
  background-color: white;
}
#telegram #column-right .right-footer .shared-media li {
  flex: 1 1 auto;
  height: 56px;
}
#telegram #column-right .right-footer .shared-media li:hover {
  border-radius: unset;
}
#telegram #column-right .right-footer .shared-media li.active:hover {
  background-color: rgba(0, 195, 255, 0.11);
}
#telegram #column-right .right-footer .shared_media_content {
  transition: 250ms;
  transform: scale(0);
}
#telegram #column-right .right-footer .shared_media_content.active {
  transform: scale(1);
  padding: 1rem;
  color: rgba(0, 0, 0, 0.658);
}
#telegram #column-right.expanded .right-header {
  width: 25%;
}
#telegram #control_menu_2:focus {
  border: none;
  outline: none;
}
#telegram .contact_modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.836);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transform: scale(0);
  transition: 300ms;
}
#telegram .contact_modal.active {
  transform: scale(1);
}
#telegram .contact_modal .contact_modal_wrapper {
  width: 25%;
  padding: 1rem 1.5rem 0.8125rem;
  border-radius: 10px;
  background-color: rgb(252, 252, 252);
  box-shadow: 0 0 5px 0 black;
  z-index: 11;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 {
  display: grid;
  align-items: center;
  margin: 5% 0;
  grid-template-columns: auto 1fr;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 .row_2 {
  padding-left: 0.6875rem;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 .img_avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(#72d5fd #2a9ef1);
}
#telegram .contact_modal .contact_modal_wrapper .row_1 .img_avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 p,
#telegram .contact_modal .contact_modal_wrapper .row_1 .tel_and_status {
  padding-left: 0.6875rem;
  font-weight: 300;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 p span,
#telegram .contact_modal .contact_modal_wrapper .row_1 .tel_and_status span {
  font-weight: 400;
}
#telegram .contact_modal .contact_modal_wrapper .row_1 h5 {
  color: rgb(60, 104, 128);
}
#telegram .contact_modal .contact_modal_wrapper .row_2 {
  display: flex;
  flex-direction: column;
  margin: 5% 0;
}
#telegram .contact_modal .contact_modal_wrapper .row_2 label {
  color: rgb(100, 133, 151);
  padding-bottom: 2%;
}
#telegram .contact_modal .contact_modal_wrapper .row_2 input {
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(0, 0, 0);
  font-size: 1.15rem;
}
#telegram .contact_modal .contact_modal_wrapper .row_2 input:focus {
  border-color: rgb(100, 133, 151);
}
#telegram .contact_modal .contact_modal_wrapper .row_2 .report_done {
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  padding: 3% 0% 3% 5%;
  background-color: transparent;
}
#telegram .contact_modal .contact_modal_wrapper .row_2 .report_done:hover {
  background-color: rgb(37, 120, 131);
  border: 1px solid rgb(128, 230, 255);
  color: rgb(255, 255, 255);
}
#telegram .contact_modal .contact_modal_wrapper .row_3 {
  text-align: right;
}
#telegram .contact_modal .contact_modal_wrapper .row_3 button {
  background-color: transparent;
  outline: none;
  border: none;
  text-transform: uppercase;
  color: #3390ec;
  font-weight: 500;
  font-size: 100%;
  line-height: 1.15;
  padding: 3%;
  border-radius: 5px;
  transition: 300ms;
  cursor: pointer;
}
#telegram .contact_modal .contact_modal_wrapper .row_3 button:nth-child(2) {
  color: rgb(202, 0, 0);
}
#telegram .contact_modal .contact_modal_wrapper .row_3 button:hover {
  background-color: rgba(31, 110, 153, 0.089);
}
#telegram .contact_modal .contact_modal_wrapper .also_delete_for {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  font-weight: 300;
  margin-bottom: 1rem;
}
#telegram .contact_modal .contact_modal_wrapper .also_delete_for input {
  display: inline-block;
  margin-right: 1rem;
  height: 24px;
  width: 24px;
  line-height: 26px;
  cursor: pointer;
}
#telegram .contact_modal .contact_modal_wrapper .also_delete_for span {
  font-weight: 400;
}
#telegram .contact_modal .contact_modal_wrapper .unique_id_warning {
  display: none;
  color: rgb(182, 0, 0);
  font-size: 0.8rem;
  padding: 0.4rem;
}
#telegram .contact_modal .contact_modal_wrapper .unique_id_warning.show {
  display: block;
}

@media (max-width: 700px) {
  #telegram {
    grid-template-columns: 100% 0 0 !important;
  }
  #telegram #column-left .left-header {
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
    position: fixed;
    z-index: 1;
    width: 100%;
  }
  #telegram #column-left .left-header #search {
    width: 100%;
  }
  #telegram #column-center .container {
    padding: 0 10px;
    width: 100%;
    margin: unset;
  }
  #telegram #column-center .main-header {
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
    position: fixed;
    z-index: 1;
    width: 100%;
  }
  #telegram #column-center .main-header .container {
    width: 100%;
  }
  #telegram #column-center .main-header .person {
    width: 100%;
    grid-template-columns: auto auto 1fr auto auto;
  }
  #telegram #column-center .main-header .person .back_for_mobile {
    cursor: pointer;
    width: 35px;
    height: 40px;
    margin-right: 5px;
    display: grid;
    place-items: center;
    transition: 300ms;
    border-radius: 35%;
    font-size: 16px;
  }
  #telegram #column-center .main-header .person .back_for_mobile:hover {
    background-color: rgba(128, 128, 128, 0.103);
    border-radius: 50%;
  }
  #telegram #column-center .main-header .person .back_for_mobile i {
    color: #707579;
  }
  #telegram #column-center .main-header .person .info {
    padding-left: 8px;
  }
  #telegram #column-center .main-header .person .search-btn,
  #telegram #column-center .main-header .person .more-btn {
    margin-left: 0px;
  }
  #telegram #column-center .main-chat .container {
    padding-right: 10px;
  }
  #telegram #column-center .main-footer {
    display: none;
    bottom: 0.5rem;
    width: 100%;
  }
  #telegram #column-center .main-footer .main-footer-wrapper {
    gap: 5px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper {
    border-radius: 7px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .emoji {
    padding: 0 5px 10px 10px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown {
    width: 95vw;
    border-radius: 10px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown button {
    font-size: 1.4rem;
    margin: 0 3px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis .emoji_nav {
    justify-content: center;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis .emoji_nav button {
    margin: 0 3px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-container .emojis #emoji_here {
    padding: 10px;
    height: 50vh;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #emoji_dropdown .emoji-tabs {
    grid-template-columns: auto auto auto auto;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .keyboard {
    display: none;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper #keyboard_dropdown {
    display: none;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file {
    padding: 0 7px 10px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-wrapper .file i {
    font-size: 22px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-voice {
    margin-right: 0px;
    width: 45px;
    height: 45px;
  }
  #telegram #column-center .main-footer .main-footer-wrapper .new-message-voice i {
    font-size: 24px;
  }
  #telegram #column-center.shrinked {
    display: none;
  }
  #telegram #column-center.shrinked .main-header,
  #telegram #column-center.shrinked .main-footer {
    width: 0px;
    display: none;
  }
  #telegram #column-right .right-header {
    background-color: #fff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.21);
    position: fixed;
    z-index: 1;
    width: 0%;
  }
  #telegram #column-right.expanded .right-header {
    width: 100%;
  }
  #telegram .contact_modal .contact_modal_wrapper {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */