@import "bootstrap-grid.css";
@font-face {
  font-family: "Manrope";
  font-style: light;
  font-weight: 300;
  src: url("manrope-light.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: regular;
  font-weight: 400;
  src: url("manrope-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: medium;
  font-weight: 500;
  src: url("manrope-medium.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: bold;
  font-weight: 700;
  src: url("manrope-bold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
  transition: 0.3s ease;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

input, textarea {
  outline: none;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.2;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  color: #fff;
  background-color: #131c31;
  margin: 0;
}
body.load-overflow {
  overflow: hidden;
}

.prelouder {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.prelouder .louder {
  width: 280px;
  height: 20px;
  background-color: #fff;
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}

.prelouder .louder span {
  text-transform: uppercase;
  color: #f4f4f4;
  line-height: 20px;
  display: block;
  z-index: 2;
  position: relative;
  font-size: 13px;
  font-weight: 800;
}

.prelouder .louder::before {
  content: "";
  width: 180px;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  z-index: 1;
  animation: line-animated-wait-prelouder 2s linear infinite;
}

.loaded .prelouder {
  display: none;
}

@keyframes line-animated-wait-prelouder {
  0% {
    left: -180px;
  }
  100% {
    left: 100%;
  }
}
h1, h2, h3, h4, p, input, button, a, textarea, select {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}

section {
  position: relative;
}

img {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
img::-moz-selection {
  background-color: transparent;
  color: #fff;
}
img::selection {
  background-color: transparent;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.all-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.container-wrap {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.decor-part-form {
  height: 250px;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.decor-part-form .decor-item {
  position: relative;
}
.decor-part-form .decor-item img {
  transition: 0.3s ease;
}
.decor-part-form .decor-item.i1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.decor-part-form .decor-item.i1 img {
  width: 230px;
  margin-top: 100px;
  animation: i1 10s ease infinite;
}
.decor-part-form .decor-item.i2 {
  position: absolute;
  width: 70px;
  top: 50px;
  left: 0;
  transition: 0.3s ease;
  animation: i2 10s ease infinite;
}
.decor-part-form .decor-item.i2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #000;
  filter: blur(10px);
  border-radius: 50px;
  bottom: -20px;
  opacity: 0;
  animation: i2-2 10s ease infinite;
}
.decor-part-form .decor-item.i3 {
  position: absolute;
  width: 50px;
  top: 90px;
  right: 0;
  animation: i3 10s ease infinite;
}
.decor-part-form .decor-item.i3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  background-color: #000;
  filter: blur(10px);
  border-radius: 50px;
  bottom: -20px;
  opacity: 0;
  animation: i3-3 10s ease infinite;
}

.decor-blur {
  position: absolute;
  width: 120%;
  top: 200px;
  left: -10%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.7;
}

@keyframes i1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes i2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes i2-2 {
  0% {
    transform: translateY(0);
    filter: blur(14px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px);
    filter: blur(7px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    filter: blur(14px);
    opacity: 0.7;
  }
}
@keyframes i3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes i3-3 {
  0% {
    transform: translateY(0);
    filter: blur(7px);
    opacity: 1;
  }
  50% {
    transform: translateY(30px);
    filter: blur(14px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    filter: blur(7px);
    opacity: 1;
  }
}
.form-block {
  padding: 100px 0;
  padding-bottom: 0px;
  position: relative;
}
.form-block.-chat-started {
  padding-top: 61px;
}
.form-block .container-wrap {
  padding: 0;
}
.form-block .container-wrap .up-part-of-form {
  padding: 0 15px;
}
.form-block .up-part-of-form {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-block .up-part-of-form h1 {
  font-size: 60px;
  font-weight: 500;
  max-width: 600px;
  line-height: 70px;
  margin-bottom: 20px;
  margin-top: 32px !important;
}
.form-block .up-part-of-form h1 span {
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(146deg, #00ffc3, #ffed62);
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  margin-top: 20px;
  margin-left: -4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.form-block .up-part-of-form p {
  font-size: 20px;
  letter-spacing: 0.6px;
}
.form-block .up-part-of-form .btns-wrap {
  display: flex;
  align-items: stretch;
  padding-top: 30px;
}
.form-block .up-part-of-form .btns-wrap .btn-s {
  box-shadow: none;
}
.form-block .up-part-of-form .btns-wrap .btn-s:first-child {
  /* margin-right: 15px; */
}
.cw-connect-wallet {
  border-radius: 4px !important;
  background: linear-gradient(146deg, rgb(0, 255, 195), rgb(255, 237, 98));
  border: none;
  font-weight: 900 !important;
  text-align: center;
  display: flex;
  display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80vw;
    border: 0 !important;
    margin-top: 14px !important;
}

.cw-modal-title {
  font-size: 28px !important;
  font-weight: 900 !important;
  margin: 0 !important;
}

.trx-text {
  color:  #7ae57a !important;
  font-size: 18px !important;
}
.cw-wallets__wrapper {
  width: fit-content;
}

.cw-wallets__container {
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

::-webkit-scrollbar {
  width: 5px;
  height: 12px;
  background-color: transparent;
}

::scrollbar {
  width: 5px;
  height: 12px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #00ffc3;
}

::scrollbar-thumb {
  background-color: #00ffc3;
}

.header-nav {
  background-color: #18223b;
  border-bottom: 1px solid #323546;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}
.header-nav .container-wrap {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.header-nav .logo-part {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 16px;
  cursor: pointer;
}
.header-nav .logo-part img {
  width: 36px;
  margin-right: 10px;
}
.header-nav .nav {
  display: flex;
  align-items: stretch;
}
.header-nav .nav li {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
.header-nav .nav li:last-child {
  margin-right: 0;
}

.a-block {
  padding: 4px 8px;
  padding-left: 4px;
  font-size: 14px;
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  background-color: rgba(198, 242, 255, 0.14);
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  height: 100%;
}
.a-block:hover {
  background-color: rgba(198, 242, 255, 0.21);
}
.a-block.-active {
  background-color: rgba(198, 242, 255, 0.28);
}
.a-block img {
  width: 14px;
  margin-right: 8px;
  position: relative;
  z-index: 2;
}
.a-block span {
  position: relative;
  display: block;
  z-index: 2;
  white-space: nowrap;
}
.a-block.chat {
  color: #000;
  overflow: hidden;
  font-weight: 600;
}
.a-block.chat img {
  width: 20px;
}
.a-block.chat::before {
  content: "";
  position: absolute;
  width: 180%;
  left: 0;
  height: 100%;
  background: linear-gradient(103.72deg, #30f844, #00fa64, #19d798, #3cffae, #58f095, #d0f917);
  background-size: 400%;
  animation: chat 10s linear infinite;
}
.a-block.chat.-wallet {
  padding-left: 8px;
}
.a-block.chat.-wallet::before {
  animation: wallet 10s linear infinite;
}

.no-bg {
  background: rgba(198, 242, 255, 0.14) !important;
  color: #fff !important;
}

.no-bg::before {
  content: "";
  background: rgba(198, 242, 255, 0.14) !important;
}


@keyframes chat {
  0% {
    background-position-x: 0;
  }
  50% {
    background-position-x: 100%;
  }
  100% {
    background-position-x: 0;
  }
}
@keyframes wallet {
  0% {
    background-position-x: 100%;
  }
  50% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100%;
  }
}
.btn-s {
  padding: 5px 20px;
  height: 46px;
  background: linear-gradient(146deg, #00ffc3, #ffed62);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.btn-s:hover {
  opacity: 0.9;
}
.btn-s.-low-btn {
  height: 32px;
  font-size: 14px;
}
.btn-s.-border span {
  display: block;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 500;
}
.btn-s.-border::before {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  border-radius: 3px;
  background-color: #131c31;
}

.inner-block {
  border: 1px solid #323546;
  background-color: #18223b;
  background: linear-gradient(146deg, hsla(0, 0%, 100%, 0.06) 5.73%, hsla(0, 0%, 100%, 0.03) 95.79%);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  margin-bottom: 30px;
}
.inner-block .up-part-inner-block {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
.inner-block .up-part-inner-block .s-header-block {
  display: flex;
  align-items: center;
}
.inner-block .up-part-inner-block .s-header-block .icon-div {
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  border-radius: 4px;
  margin-right: 15px;
  background: linear-gradient(146deg, #368fb0, #18223b);
}
.inner-block .up-part-inner-block .s-header-block .icon-div.chat img {
  width: 20px;
}
.inner-block .up-part-inner-block .s-header-block .icon-div img {
  width: 14px;
}
.inner-block .up-part-inner-block .s-header-block .s-header {
  font-size: 24px;
  font-weight: 500;
}
.inner-block .btns-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}
.inner-block .main-txt {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.6px;
}
.inner-block .decor-part-for-block {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 320px;
  width: 100%;
}
.inner-block .decor-part-for-block .decor-img-wrap {
  width: calc(50% - 5px);
  height: 52px;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.inner-block .decor-part-for-block .decor-img-wrap.w60 {
  width: calc(60% - 5px);
}
.inner-block .decor-part-for-block .decor-img-wrap.w40 {
  width: calc(40% - 5px);
}
.inner-block .decor-part-for-block .decor-img-wrap.w70 {
  width: calc(65% - 5px);
  background-position: center 20%;
}
.inner-block .decor-part-for-block .decor-img-wrap.w30 {
  width: calc(35% - 5px);
}
.inner-block .decor-part-for-block .decor-img-wrap.w100 {
  width: 100%;
}
.inner-block .decor-part-for-block .decor-img-wrap.bgpt {
  background-position: center top;
}

.naming {
  margin-bottom: 20px;
  display: none;
  letter-spacing: 0.4px;
}

.mt60 {
  margin-top: 60px;
}

.footer {
  padding-top: 40px;
  margin-top: 60px;
  padding-bottom: 40px;
  border-top: 1px solid #323546;
  background-color: #18223b;
  position: relative;
  overflow: hidden;
}
.footer .decor-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 40%;
  left: inherit;
  right: 0;
  filter: blur(45px);
  z-index: 0;
  opacity: 0.7;
  border-radius: 50%;
  background: linear-gradient(146deg, #368fb0, #18223b);
}
.footer .container-wrap {
  max-width: 1200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
}
.footer .container-wrap .left-part {
  max-width: 800px;
  padding-right: 40px;
}
.footer .container-wrap .left-part p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.4px;
  font-weight: 300;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.footer .container-wrap .left-part p.copyright {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
}
.footer .container-wrap .footer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .container-wrap .footer-nav p {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: bold;
  width: 100%;
}
.footer .container-wrap .footer-nav li {
  margin-top: 15px;
}
.footer .container-wrap .footer-nav a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  padding-right: 10px;
  font-size: 14px;
}
.footer .container-wrap .footer-nav a:hover {
  color: #91ff08;
}

.modal-wrap {
  position: fixed;
  width: 100%;
  min-height: calc(100vh - 61px);
  left: 0;
  z-index: 1005;
  top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(19, 28, 49, 0.9);
  display: none;
}
.modal-wrap.-open {
  display: flex;
}
.modal-wrap .modal-inner {
  overflow-y: scroll;
  height: calc(100% - 55px);
  padding: 15px;
  padding-top: 0;
  padding-bottom: 15px;
}
.modal-wrap .inner-block {
  max-width: 600px;
  margin-bottom: 0;
  padding: 15px;
  height: 100%;
  padding-top: 30px;
  position: relative;
  height: calc(100dvh - 101px);
}
.modal-wrap .inner-block .faq-item {
  background-color: #18223b;
  border: 1px solid #323546;
  border-radius: 7px;
  margin-bottom: 15px;
  overflow: hidden;
}
.modal-wrap .inner-block .faq-item:last-child {
  margin-bottom: 0;
}
.modal-wrap .inner-block .faq-item h4 {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
  padding: 10px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.modal-wrap .inner-block .faq-item h4 .circle {
  width: 10px;
  height: 10px;
  min-width: 10px;
  margin-left: 2px;
  background: linear-gradient(103.72deg, #a4ff44, #bdc257);
  border-radius: 50%;
  margin-right: 10px;
  margin-top: 5px;
}
.modal-wrap .inner-block .faq-item h4 span {
  margin-top: 0;
  height: auto;
}
.modal-wrap .inner-block .faq-item .txt-wrap {
  padding-top: 0;
  position: relative;
}
.modal-wrap .inner-block .faq-item .txt-wrap p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-top: 1px solid #323546;
  color: #fff;
  background-color: #131c31;
  border-radius: 4px;
  padding: 17px 32px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.modal-wrap .inner-block .faq-item .txt-wrap p::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 60%;
  left: inherit;
  right: 10%;
  filter: blur(45px);
  z-index: 0;
  opacity: 0.35;
  border-radius: 50%;
  background: linear-gradient(146deg, #64c8ec, #18223b);
}
.modal-wrap .inner-block p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.6px;
  margin-top: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}
.modal-wrap .inner-block h3 {
  font-size: 20px;
  letter-spacing: 0.4px;
  margin-top: 30px;
  max-width: 400px;
  font-weight: 600;
  line-height: 28px;
}
.modal-wrap .inner-block h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.modal-wrap .inner-block span {
  display: block;
  height: 15px;
}
.modal-wrap .inner-block .decor-part-for-block {
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 100%;
}
.modal-wrap .inner-block .decor-part-for-block .decor-img-wrap {
  height: 74px;
}
.modal-wrap .a-block {
  height: 40px;
  justify-content: center;
  margin-top: 15px;
}

.block5 {
  font-size: 16px;
  line-height: 26px;
}
.block5 p {
  margin-bottom: 20px;
}

.chat-item * {
  box-sizing: border-box;
  overscroll-behavior: none;
}
.chat-item ::-moz-selection {
  background-color: transparent;
  color: #fff;
}
.chat-item ::selection {
  background-color: transparent;
  color: #fff;
}
.chat-item p,
.chat-item a,
.chat-item button {
  margin: 0;
  padding: 0;
}
.chat-item img {
  width: 100%;
  pointer-events: none;
  cursor: default;
}
.chat-item img::-moz-selection {
  background-color: transparent;
  color: #fff;
}
.chat-item img::selection {
  background-color: transparent;
  color: #fff;
}
.chat-item .icon-div {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
}
.chat-item .btn-socials {
  display: flex;
  position: relative;
  align-items: center;
}
.chat-item .btn-socials .btn-social-link {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
  border-radius: 4px;
  min-width: 40px;
  height: 40px;
  padding: 8px;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease !important;
}
.chat-item .btn-socials .btn-social-link:last-child {
  margin-right: 0;
}
.chat-item .btn-socials .btn-social-link:hover {
  background-color: #fff;
  transform: scale(1.06);
}
.chat-item .btn-socials .btn-social-link .icon-div {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-position: center;
}
.chat-item .fixed-chat-wrap.-opened-chat .chat-block {
  width: 100% !important;
}
.chat-item .fixed-chat-wrap.-opened-chat .btn-part-of-chat .close-with-icon .switch-part {
  left: 0;
}
.chat-item .progress-sending {
  position: relative;
  width: 100%;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  margin: 10px 0;
  font-size: 12px;
  overflow: hidden;
}
.chat-item .progress-sending .procent {
  position: relative;
  z-index: 2;
  font-weight: 400;
}
.chat-item .progress-sending .loader {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.3);
  height: 100%;
}
.chat-item .cancel-upload {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  font-weight: 400;
  text-decoration: underline;
  outline: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  font-size: 12px;
  cursor: pointer;
}
.chat-item .cancel-upload:hover {
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block {
  position: relative;
  z-index: 202;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: calc(100% - 200px);
  background: linear-gradient(146deg, hsla(0, 0%, 100%, 0.06) 5.73%, hsla(0, 0%, 100%, 0.03) 95.79%);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  overflow: hidden;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0 !important;
  transition: none;
  border: 1px solid #323546;
  border-radius: 14px;
}
.chat-item .fixed-chat-wrap .chat-block.-full-chat {
  height: calc(100dvh - 61px);
  border-radius: 0;
}
.chat-item .fixed-chat-wrap .chat-block * {
  transition: none;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges,
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block {
  position: relative;
  z-index: 2;
  display: flex;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block {
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-bottom: 1px solid #323232;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 16px;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online .profile {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  margin-right: 16px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(103.72deg, #30f844, #00fa64, #19d798, #3cffae, #58f095, #d0f917);
  background-size: 400%;
  animation: chat 10s linear infinite;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online .profile img {
  width: 22px;
  margin-top: 2px;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online .profile::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 1;
  background-color: #1ad754;
  top: 0;
  right: -6px;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online .right-part-of-consultant-online .f-part-of-right-part-of-consultant-online {
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  font-weight: 600;
  cursor: default;
}
.chat-item .fixed-chat-wrap .chat-block .up-part-of-chat-block .part-consultants-online .right-part-of-consultant-online .s-part-of-right-part-of-consultant-online {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  margin-top: 5px;
  white-space: nowrap;
  cursor: default;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges {
  padding: 0 10px;
  position: relative;
  height: calc(100% - 220px);
  background-color: rgba(0, 0, 0, 0.4);
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .action-of-writing {
  position: absolute;
  width: 220px;
  border-radius: 0 0 14px 14px;
  z-index: 2;
  top: -1px;
  left: calc(50% - 110px);
  font-size: 12px;
  background-color: #252c3f;
  border: 1px solid #323546;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.35);
  border-top: 0;
  text-align: center;
  color: #01ffc3;
  line-height: 1;
  font-weight: 500;
  cursor: default;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  height: 0;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .action-of-writing.active {
  height: 36px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 15px;
  border-radius: 0;
  overflow-y: auto;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item {
  position: relative;
  width: 100%;
  display: flex;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item.-aat-messege-item {
  justify-content: flex-start;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item.-user-messege-item {
  justify-content: flex-end;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item p {
  word-break: break-word;
  font-size: 15px;
  line-height: 22px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item p::-moz-selection {
  background-color: #000;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .messege-item p::selection {
  background-color: #000;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .informer-of-messeges {
  position: relative;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 15px;
  background-color: transparent;
  border-radius: 10px;
  margin-top: 15px;
  padding: 10px;
  color: #bad8e6;
  cursor: default;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .informer-of-messeges span {
  font-weight: 600;
  display: block;
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege {
  max-width: 360px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px;
  border-radius: 10px;
  background-color: #35445c;
  margin-top: 15px;
  position: relative;
  left: 0;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege a,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege a:hover,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege a:hover {
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .img-of-messege {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .img-of-messege {
  width: 100%;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .time-with-date-and-readed,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .time-with-date-and-readed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .new-messege,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .readed {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  cursor: default;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .new-messege {
  color: #bad8e6;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .time-with-date,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .time-with-date {
  display: flex;
  align-items: center;
  cursor: default;
  margin-right: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .time-with-date span,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .time-with-date span {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege .time-with-date span:first-child,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege .time-with-date span:first-child {
  margin-right: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege::-moz-selection, .chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege::-moz-selection {
  background-color: #000;
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege::selection,
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege::selection {
  background-color: #000;
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .greetings-messeges {
  margin-top: 0;
  font-size: 16px;
  line-height: 22px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege {
  right: 0;
  left: inherit;
  background: linear-gradient(146deg, #265672, #18223b);
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block {
  align-items: flex-start;
  justify-content: space-between;
  min-height: 150px;
  padding: 10px 20px;
  border-top: 1px solid #323232;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block textarea {
  resize: none;
  height: 100%;
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  letter-spacing: 1px;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block textarea::-moz-placeholder {
  color: #bad8e6;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block textarea::placeholder {
  color: #bad8e6;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block textarea::-moz-selection {
  background-color: #000;
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block textarea::selection {
  background-color: #000;
  color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block button {
  border: 0;
  outline: 0;
  position: relative;
  cursor: pointer;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block .pin-file {
  width: 20px;
  min-width: 20px;
  height: 30px;
  background-image: url("");
  background-size: 100%;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
  margin-right: 10px;
  transition: 0.3s opacity ease;
  opacity: 0.6;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block .pin-file:hover {
  opacity: 1;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block .btn-send-messege {
  min-width: 40px;
  width: 40px;
  height: 40px;
  position: relative;
  background: linear-gradient(146deg, #00ffc3, #ffed62);
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
  margin-left: 10px;
  transition: 0.3s ease !important;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block .btn-send-messege .send-messege {
  width: 100%;
  height: 100%;
  background-image: url("");
  background-size: 20px;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
}
.chat-item .fixed-chat-wrap .chat-block .down-part-of-chat-block .btn-send-messege:hover {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.45);
}
.chat-item .fixed-chat-wrap .btn-part-of-chat {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 204;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s transform ease;
  border: 1px solid #000;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(186, 216, 230, 0.4);
}
.chat-item .fixed-chat-wrap .btn-part-of-chat:hover .amount-of-notify {
  background-color: #000;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .close-with-icon {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .close-with-icon .switch-part {
  position: absolute;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  left: -42px;
  transition: 0.3s ease;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .close-with-icon .chat {
  width: 40px;
  min-width: 40px;
  height: 40px;
  position: relative;
  background-image: url("");
  background-size: 30px;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .close-with-icon .close {
  width: 40px;
  min-width: 40px;
  height: 40px;
  position: relative;
  background-image: url("");
  background-size: 20px;
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .amount-of-notify {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000;
  color: #1ad754;
  border: 1px solid #434343;
  text-shadow: 0 4px 10px rgba(10, 15, 38, 0.5);
  width: 25px;
  height: 25px;
  right: -5px;
  top: -10px;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
}
.chat-item .fixed-chat-wrap .btn-part-of-chat .amount-of-notify.active {
  display: flex;
}
.chat-item .fixed-chat-wrap .chat-block {
  height: 100%;
}
.chat-item .fixed-chat-wrap.-opened-chat .btn-part-of-chat {
  bottom: inherit;
  top: 5px;
  right: 5px;
  transform: scale(0.8);
  background-color: #000;
  border: 1px solid #323232;
}

.chat-item .fixed-chat-wrap .chat-block .content-of-masseges.-faq-chat {
  height: 100%;
}

.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message.-active .down-part-of-faq-message {
  height: auto;
  margin-top: 10px;
  padding: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message.-active .open-full-info {
  transform: rotate(180deg);
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .up-part-of-faq-message {
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .up-part-of-faq-message .open-full-info {
  width: 34px;
  height: 34px;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
  border-radius: 4px;
  min-width: 34px;
  margin-left: 15px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: 0.3s background-color ease;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .up-part-of-faq-message .open-full-info:hover {
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.45);
  background-color: #fff;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .up-part-of-faq-message .open-full-info .icon-div {
  width: 100%;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  background-image: url("");
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .down-part-of-faq-message {
  padding: 10px;
  background-color: #000;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: 400;
  overflow: hidden;
  padding: 0;
  height: 0;
  margin-top: 0;
  transition: 0.3s ease;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .down-part-of-faq-message a {
  color: #1bd754;
  text-decoration: none;
  font-weight: 500;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-faq-message .down-part-of-faq-message a:hover {
  text-decoration: underline;
}

.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(146deg, #265672, #18223b);
  margin-top: 10px;
  margin-bottom: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message.mb30 {
  margin-bottom: 30px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .up-part-of-faq-message {
  font-size: 20px;
  line-height: 28px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .up-part-of-faq-message span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(146deg, #00ffc3, #ffed62);
  display: block;
  margin: 0 5px;
  margin-top: -7px;
  margin-left: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part {
  padding: 0 10px;
  padding-bottom: 10px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part .btn-send-messege {
  min-width: 40px;
  width: 100%;
  height: 46px;
  position: relative;
  outline: 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.35);
  transition: 0.3s ease !important;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  cursor: pointer;
  padding-left: 12px;
  background: linear-gradient(146deg, #00ffc3, #ffed62);
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part .btn-send-messege:hover {
  opacity: 0.9;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part .send-messege {
  width: 26px;
  height: 26px;
  background-image: url("");
  background-size: 16px;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 12px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part .start-chat {
  width: 26px;
  height: 26px;
  background-image: url("");
  background-size: 26px;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
  margin-left: 8px;
  margin-top: 4px;
  margin-right: 8px;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-aat-messege.-form-message .form-part .btn-send-messege:hover {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(10, 15, 38, 0.45);
}

.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege.-form-message {
  width: 100%;
  background: linear-gradient(146deg, #265672, #18223b);
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege.-form-message.-sended-form .form-part {
  padding: 0;
}
.chat-item .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap .-user-messege.-form-message.-sended-form .up-part-of-faq-message {
  font-size: 16px;
  line-height: 22px;
}

.inputs-wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inputs-wrap .input-wrap {
  width: calc(50% - 15px);
}

.input-wrap {
  position: relative;
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.input-wrap .signature-for-input {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #c6f2ff;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  font-weight: 300;
}
.input-wrap input, .input-wrap textarea {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  outline: none;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px;
  height: 46px;
  width: 100%;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.input-wrap input:focus, .input-wrap textarea:focus {
  border: 1px solid #c3fff5;
}
.input-wrap input::-moz-placeholder, .input-wrap textarea::-moz-placeholder {
  color: rgba(198, 242, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
.input-wrap input::placeholder, .input-wrap textarea::placeholder {
  color: rgba(198, 242, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
.input-wrap input::-moz-selection, .input-wrap textarea::-moz-selection {
  background-color: #000;
  color: #fff;
}
.input-wrap input::selection, .input-wrap textarea::selection {
  background-color: #000;
  color: #fff;
}
.input-wrap textarea {
  resize: none;
  height: 130px;
  padding-top: 15px;
}
.input-wrap .error-msg {
  padding: 5px;
  border-radius: 0 0 5px 5px;
  background-color: #94393b;
  line-height: 1;
}

.input-wrap select {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  outline: none;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px 15px;
  height: 46px;
  width: 100%;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.input-wrap select:focus {
  border: 1px solid #bad8e6;
}
.input-wrap select::-moz-placeholder {
  color: rgba(198, 242, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
.input-wrap select::placeholder {
  color: rgba(198, 242, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
.input-wrap select::-moz-selection {
  background-color: #000;
  color: #fff;
}
.input-wrap select::selection {
  background-color: #000;
  color: #fff;
}
.input-wrap select {
  color: #bad8e6;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("") no-repeat right 10px center, rgba(0, 0, 0, 0.4);
  background-size: 12px;
}

.chat-item .select {
  position: relative;
  width: 100%;
}
.chat-item .select.-need-select .inner-data-for-select .token .name-for-token {
  color: rgba(198, 242, 255, 0.7);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}
.chat-item .select.-need-select .inner-data-for-select .token .icon-for-token-wrap .icon-for-token img {
  filter: blur(2px);
}
.chat-item .select.-active .inner-data-for-select {
  border: 1px solid #c3fff5;
}
.chat-item .select.-active .inner-data-for-select .dropdown-for-select-icon {
  transform: rotate(180deg);
}
.chat-item .select.-active .dropdown-for-select {
  display: block;
}
.chat-item .select .inner-data-for-select {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  outline: none;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  height: 46px;
  width: 100%;
  letter-spacing: 1px;
  transition: 0.3s ease;
  overflow: hidden;
  justify-content: space-between;
  cursor: pointer;
}
.chat-item .select .inner-data-for-select .dropdown-for-select-icon {
  background: url("") no-repeat center 3px, linear-gradient(146deg, #00ffc3, #ffed62);
  background-size: 10px, cover;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 2px;
  margin-right: 15px;
  transition: 0.3s ease;
}
.chat-item .select .inner-data-for-select .token {
  display: flex;
  align-items: center;
}
.chat-item .select .inner-data-for-select .token .name-for-token {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 15px;
  padding-left: 0;
}
.chat-item .select .inner-data-for-select .token .icon-for-token-wrap {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.chat-item .select .inner-data-for-select .token .icon-for-token-wrap .icon-for-token {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #000, rgba(14, 14, 14, 0.21)) padding-box, linear-gradient(135deg, rgba(200, 215, 210, 0.35), #00ffc3) border-box;
  padding: 2px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-item .select .inner-data-for-select .token .icon-for-token-wrap .icon-for-token img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.chat-item .select .dropdown-for-select {
  display: block;
  position: absolute;
  width: 100%;
  top: 54px;
  background-color: rgba(44, 50, 70, 0.94);
  border-radius: 5px;
  border: 1px solid rgba(198, 242, 255, 0.35);
  z-index: 2;
  height: 180px;
  overflow-y: scroll;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  display: none;
}
.chat-item .select .dropdown-for-select .item-dropdown .token {
  padding: 10px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  border-bottom: 1px solid rgba(198, 242, 255, 0.35);
}
.chat-item .select .dropdown-for-select .item-dropdown .token:last-child {
  border-bottom: 0;
}
.chat-item .select .dropdown-for-select .item-dropdown .token:hover {
  background-color: rgba(198, 242, 255, 0.1);
}
.chat-item .select .dropdown-for-select .item-dropdown .token.-active {
  background-color: rgba(198, 242, 255, 0.21);
}
.chat-item .select .dropdown-for-select .item-dropdown .token .icon-for-token {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid rgba(198, 242, 255, 0.21);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-item .select .dropdown-for-select .item-dropdown .token .icon-for-token img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.chat-item .fixed-chat-wrap.-start-form-wrap .chat-block .content-of-masseges {
  background-color: transparent;
}
.chat-item .fixed-chat-wrap.-start-form-wrap .chat-block .content-of-masseges .-aat-messege.-form-message {
  background: transparent;
}
@media only screen and (max-width: 800px) {
  .chat-item .fixed-chat-wrap .fixed-chat-wrap.-opened-chat .btn-part-of-chat {
    bottom: 10px;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block {
    bottom: 0;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block {
    height: 100%;
    border-radius: 0;
  }
}
@media only screen and (max-width: 500px) {
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block {
    border-radius: 0;
    max-width: 100%;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block .up-part-of-chat-block {
    padding: 10px;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block .content-of-masseges {
    height: calc(100% - 200px);
    padding: 0;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block .content-of-masseges .content-of-masseges-wrap {
    border-radius: 0;
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .chat-item .fixed-chat-wrap .fixed-chat-wrap .chat-block .content-of-masseges {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

/*==========  Desktop First  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 991px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 800px) {
  /**/
  .inputs-wrap .input-wrap {
    width: 100%;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 768px) {
  /**/
  .decor-part-form {
    max-width: 340px;
    height: 200px;
  }
  .decor-part-form .decor-item.i1 img {
    width: 180px;
    margin-top: 75px;
  }
  .decor-part-form .decor-item.i2 {
    width: 60px;
  }
  .decor-part-form .decor-item.i3 {
    width: 44px;
  }
  .decor-blur {
    top: 170px;
  }
  .form-block .up-part-of-form h1 {
    font-size: 38px;
    line-height: 46px;
    max-width: 400px;
  }
  .form-block .up-part-of-form p {
    font-size: 18px;
    letter-spacing: 0.4px;
  }
  .header-nav .logo-part {
    font-size: 14px;
  }
  .form-block {
    padding-top: 120px;
  }
  .modal-wrap .modal-inner {
    padding-left: 5px;
    padding-right: 10px;
  }
  .modal-wrap .inner-block {
    padding-right: 10px;
    padding-top: 20px;
  }
  .form-block .up-part-of-form h1 span {
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-top: 10px;
  }
  .chat-item .fixed-chat-wrap .chat-block.-full-chat {
    height: calc(100dvh - 61px);
    border-radius: 0;
  }
  .fixed-chat-wrap .chat-block.-full-chat .content-of-masseges .content-of-masseges-wrap .-aat-messege, .fixed-chat-wrap .chat-block.-full-chat .content-of-masseges .content-of-masseges-wrap .-user-messege {
    max-width: 320px !important;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 570px) {
  /**/
  .inner-block .btns-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .inner-block .decor-part-for-block {
    margin-top: 30px;
    max-width: 100%;
  }
  .header-nav .logo-part p {
    display: none;
  }
  .naming {
    display: block;
  }
  .inner-block .main-txt {
    font-size: 16px;
    line-height: 26px;
  }
  .inner-block {
    padding: 20px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 480px) {
  /**/
  .chat-item .fixed-chat-wrap.-start-form-wrap .chat-block .content-of-masseges .-aat-messege.-form-message {
    padding: 0;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 380px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 320px) {
  /**/
}
/*==========  Mobile First  ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {
  /**/
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {
  /**/
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  /**/
  .chat-item .fixed-chat-wrap .chat-block.-full-chat {
    height: calc(100dvh - 81px);
    margin-top: 20px;
    border-radius: 14px 14px 0 0;
  }
}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  /**/
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  /**/
}/*# sourceMappingURL=main.css.map */