* {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
ul[class],
ol[class] {
    padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}
h1 {
    margin-bottom: .5em;
}
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
    background:
        -o-radial-gradient(100% 20%,
        900px 900px,
        rgba(255, 120, 180, 0.45) 0%,
        rgba(160, 120, 255, 0.22) 35%,
        rgba(30, 60, 120, 0) 70%),
        -o-linear-gradient(45deg, #050C14, #333B52);
    background:
        radial-gradient(900px 900px at 100% 20%,
        rgba(255, 120, 180, 0.45) 0%,
        rgba(160, 120, 255, 0.22) 35%,
        rgba(30, 60, 120, 0) 70%),
        linear-gradient(45deg, #050C14, #333B52);
}
ul[class],
ol[class] {
    list-style: none;
}
a {
    color: #333;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: ease all 350ms;
    -o-transition: ease all 350ms;
    transition: ease all 350ms;
}
a:hover {
    opacity: .5;
}
a:not([class]) {
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
}
p {
    line-height: 100%;
}
img {
    max-width: 100%;
}
article > * + * {
     margin-top: 1em;
}
input,
button,
textarea,
select {
    font: inherit;
    -webkit-transition: ease all 350ms;
    -o-transition: ease all 350ms;
    transition: ease all 350ms;
}
hr {
    background-color: #e0e0e0;
    color: #e0e0e0;
    height: 1px;
    border: none;
}
*::-webkit-scrollbar {
    width: 5px;               
    height: 5px;
    cursor: pointer;
}

*::-webkit-scrollbar-track {
    background: transparent;        
    cursor: pointer;
}

*::-webkit-scrollbar-thumb {
    background-color: #303030;    
    border-radius: 20px;
    border: 1px solid transparent;  
    cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
                animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
             -o-transition-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.logo {
    width: 200px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
}
.wrap-block {
    max-width: 760px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
}
.wrap-block a {
    width: calc(100% / 3 - 30px);
    padding: 10px;
    background: rgb(221 221 221 / 40%);
    border-radius: 12px;
}
.wrap-block a.active {
    background: #00456b;
    color: #fff;
}
.wrap-block a .name {
    font-size: 16px;
    font-weight: 700;
}
.wrap-block a .description {
    font-size: 12px;
    line-height: 1.1;
}
.chat-wrap {
    margin-left: 270px;
}
.chat {
    width: 100%;
    max-width: 780px;
    margin: 0px auto;
    padding: 20px;
}
.chat-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    color: #f3f3f3;
}
.chat-header a img, .chat-header a i {
    width: 50px;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
    font-size: 50px;
}
.chat-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
    font-size: 20px;
    font-weight: 700;
}
.chat-body {
    position: relative;
    max-height: calc(100vh - 140px);
    min-height: calc(100vh - 400px - 100px);
    overflow: auto;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.chat-body.active {
    display: block;
}
.chat-body > h4 {
    font-size: 30px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #f3f3f3;
}
.chat-body > .post-title {
    text-align: center;
    color: #999999;
    margin-top: 1em;
}
.chat-body .down {
    cursor: pointer;
    position: sticky;
    bottom: 0px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #303030;
    -webkit-transition: ease .5s all;
    -o-transition: ease .5s all;
    transition: ease .5s all;
}
.chat-body .down img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
}
.chat-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 5px 10px;
    align-items: end;
}
.chat-footer label input {
    display: none;
}
.chat-footer label i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: rgb(154 161 181 / 10%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.chat-footer textarea {
    width: 100%;
    border: none;
    outline: none;
    padding: 8px 15px;
    font-size: 19px;
    margin-right: 20px;
    background: #333B52;
    color: #fff;
    border-radius: 5px;
}
.chat-footer button {
    cursor: pointer;
    width: 50px;
    height: 44px;
    min-height: 100%;
    font-size: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(#41B772), to(#208541));
    background: -o-linear-gradient(top, #41B772, #208541);
    background: linear-gradient(180deg, #41B772, #208541);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 3px;
}
.chat-footer button.empty {
    opacity: .75;
    cursor: auto;
}
.chat-footer button img {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    -webkit-transform: rotate(-27deg);
        -ms-transform: rotate(-27deg);
            transform: rotate(-27deg);
}
.chat-message {
    max-width: 550px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.chat-message.out {
    margin-left: auto;
}
.chat-message .chat-message-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-top: 25px;
}
.chat-message .chat-message-header img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid #f2f2f2;
}
.chat-message .chat-message-body {
    background: rgb(0 0 0 / 45%);
    padding: 20px 20px 10px;
    margin-top: 10px;
    border-radius: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.chat-message.out .chat-message-body {
    background: #333B52;
    margin-left: auto;
}
.chat-message .chat-message-info {
    margin-top: 5px;
    color: #99a1b7;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.chat-message.out .chat-message-info {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
}
.block-not-message {
    margin: 180px auto;
    text-align: center;
}
.block-not-message i {
    font-size: 100px;
    display: inline-block;
    margin: auto;
}
.block-not-message > span {
    display: block;
}
.chat-footer button img:last-child {
    display: none;
}
.chat-footer button[disabled] img:first-child {
    display: none;
}
.chat-footer button[disabled] img:last-child {
    display: block;
}
.chat-footer button img:last-child {
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
}
.toggle-menu {
    display: none;
}
.menu {
    width: 270px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: -o-linear-gradient(45deg, #050C14, #333B52);
    background: linear-gradient(45deg, #050C14, #333B52);
}
.menu-top, .menu-medium {
    padding: 10px;
}
.menu-medium {
    overflow: auto;
    max-height: calc(100vh - 220px);
}
.menu-top a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 5px;
    gap: 5px;
}
.menu-medium a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    display: inline-block;
}
.menu-medium a:hover, .menu-medium a.active {
    background: rgb(221 221 221 / 10%);
}
.menu-top a.logo img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
}
.menu-top a.logo {
    border-bottom: 1px solid rgb(222 222 222 / 30%);
    border-radius: 0;
    margin: 0 -10px;
    width: calc(100% + 20px);
    padding-bottom: 10px;
    font-size: 30px;
}
.menu-top a.start img {
    width: 30px;
    height: 30px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 30px;
}
.menu-top a.start {
    background: -webkit-gradient(linear, left top, left bottom, from(#41B772), to(#208541));
    background: -o-linear-gradient(top, #41B772, #208541);
    background: linear-gradient(180deg, #41B772, #208541);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    font-weight: 500;
}
.menu-top a.settings {
    background: #050C14;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
.menu-top a.settings img {
    width: 25px;
    height: 25px;
}
.menu-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    border-top: 1px solid rgb(222 222 222 / 30%);
}
.menu-bottom a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.menu-bottom a svg {
    width: 25px;
    fill: #8f8f8f;
}
.faq-wrap {
    width: 740px;
    margin: 100px auto 30px;
    color: #fff;
}
.faq-wrap div {
    margin-bottom: 2rem;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}



/* Markdown */
.msg-content {
    line-height: 1;
    color: rgb(255 255 255 / 85%);
}

.msg-content p,
.msg-content h1,
.msg-content h2,
.msg-content h3,
.msg-content ul,
.msg-content ol,
.msg-content pre,
.msg-content blockquote {
  margin: 0em 0;
}

.msg-content p {
    margin: 0.2em 0 1.25em;
    line-height: 1.25em;
}

.msg-content a {
    color: #41B772;
}

.msg-content h1,
.msg-content h2,
.msg-content h3 {
  margin: 0.4em 0 0.2em;
}

.msg-content ul,
.msg-content ol {
    margin: 0.2em 0;
    padding-left: 1em;
    padding-bottom: 1em;
}

.msg-content li {
  margin: .75em 0 0;
}

.msg-content > li {
  margin: 1.25em 0;
}

.msg-content pre {
  margin: 0.3em 0;
}

.msg-content blockquote {
  margin: 0.3em 0;
  padding-left: 0.6em;
}

.toggle-menu .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    padding: 0px 20px;
    margin: 0;
    margin-left: auto;
    width: auto;
}

.toggle-menu .logo img {
    width: 40px;
}