@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "reset.min.css";

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #22222100 inset;
    transition: background-color 5000s ease-in-out 0s;
}

html,
body {
    height: 100%;
}

body {
    color: #ffffff;
    height: 100%;
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    min-height: 100%;
    background: #020222;
    background-attachment: fixed;
    position: relative;
}

.pv05osm0q-pattern {
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    position: relative;
    background-image: url(../images/bg-decor-pv05osm0q.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Header */
.pv05osm0q-header {
    padding: 24px 30px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pv05osm0q-menu {
    position: relative;
    z-index: 99;
    pointer-events: none;
    opacity: 0;
}

.form-on .pv05osm0q-menu {
    opacity: 1;
    pointer-events: all;
}

/* Main */
.pv05osm0q-content {
    flex-grow: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.pv05osm0q-box {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    animation: slide-in-bottom 0.6s linear both;
}

@keyframes slide-in-bottom {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.pv05osm0q-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.pv05osm0q-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 52px;
    width: 100%;
    background: linear-gradient(138.47deg, #FF63FA 18.91%, #8146FF 99.53%);
    color: #ffffff;
    border-radius: 100px;
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    margin: 0;
    outline: none;
    border: none;
    cursor: pointer;
}

.pv05osm0q-btn--primary {
    background: #ffffff;
    color: #25194B;
}

.pv05osm0q-pic {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    width: 100%;
    margin: 0 auto 20px;
}

.pv05osm0q-title {
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pv05osm0q-text {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.pv05osm0q-subtitle {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.pv05osm0q-subtitle span {
    font-weight: 400;
}

/* Menu */
.pv05osm0q-menu--box {
    display: none;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 34, 0.8);
}

.pv05osm0q-menu--nav {
    max-width: 220px;
    width: 100%;
    margin: 60px 30px 0 auto;
    background: #FFFFFF;
    color: #020222;
    border-radius: 30px 0 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
}

.pv05osm0q-menu--item {
    text-transform: uppercase;
    font-weight: 700;
    padding: 2px;
    transition: .2s;
    text-align: center;
}

.pv05osm0q-menu--item:hover,
.pv05osm0q-menu--item.active {
    color: #DD5BFB;
}

.pv05osm0q-back--arrow {
    position: relative;
    z-index: 99;
}

/* Form */
.pv05osm0q-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.pv05osm0q-label {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 10px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#formAcount .pv05osm0q-label::after {
    content: '';
    background-image: url(../images/icons/label-pv05osm0q.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 20px;
    height: 18px;
    display: block;
}

label.error {
    position: absolute;
    bottom: -24px;
    left: 30px;
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #DD5BFB;
}

.pv05osm0q-input {
    width: 100%;
    position: relative;
}

.pv05osm0q-input::before {
    content: '';
    background: linear-gradient(135.07deg, rgba(255, 255, 255, 0.6) 8.08%, rgba(255, 255, 255, 0.06) 54.39%, rgba(255, 255, 255, 0.6) 94.26%);
    position: absolute;
    z-index: -1;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 100px;
}

.pv05osm0q-input--block {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    background: #514068;
    border: none;
    height: 52px;
    width: 100%;
    border-radius: 100px;
    padding: 10px 30px;
    outline: none;
}

.pv05osm0q-input.error::before {
    background: linear-gradient(135.07deg, #FF63FA 8.08%, #8146FF 94.26%);
}

.pv05osm0q-input--block::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.pv05osm0q-form .pv05osm0q-btn {
    margin-top: 30px;
}

.pv05osm0q-link {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: #DD5BFB;
}


/* level */

.pv05osm0q-level--list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.pv05osm0q-level--item {
    position: relative;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: #514068;
    color: #ffffff;
    border-radius: 100px;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.pv05osm0q-level--item::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135.07deg, rgba(255, 255, 255, 0.6) 8.08%, rgba(255, 255, 255, 0.06) 54.39%, rgba(255, 255, 255, 0.6) 94.26%);
    border-radius: 100px;
}

.pv05osm0q-level--item.star::before {
    background: linear-gradient(135.07deg, #FF63FA 8.08%, #8146FF 94.26%);
}

.pv05osm0q-step--list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto 40px;
}

.pv05osm0q-step--item {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #FFFFFF40;
}

.pv05osm0q-step--item.active {
    background: #ffffff;
}

/*  */

.pv05osm0q-result--item {
    display: none;
}

.pv05osm0q-result--item.active {
    display: block;
}

.pv05osm0q-result--pic {
    position: relative;
    width: 290px;
    height: 290px;
    margin: 0 auto 30px;
}

.pv05osm0q-result--pic::before,
.pv05osm0q-result--pic::after {
    content: '';
    position: absolute;
    top: 0;
    width: 290px;
    height: 290px;
    background-image: url(../images/icons/ellipse-2-pv05osm0q.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pv05osm0q-result--pic::before {
    left: -20px;
    top: -20px;
    z-index: -1;
}

.pv05osm0q-result--pic::after {
    background-image: url(../images/icons/ellipse-1-pv05osm0q.svg);
    width: 310px;
    height: 310px;
}

.pv05osm0q-result--pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Chat */
.pv05osm0q-chat {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pv05osm0q-chat--box {
    max-height: calc(100vh - 280px);
    flex-grow: 1;
    overflow: auto;
}

.pv05osm0q-chat--pic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pv05osm0q-chat--pic img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
}

.pv05osm0q-btn--report {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.pv05osm0q-btn--report img {
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.pv05osm0q-chat--report {
    display: none;
    position: absolute;
    z-index: 9;
    top: 112%;
    left: 0;
    border-radius: 30px 0 30px 30px;
    padding: 26px 10px;
    max-width: 248px;
    width: 100%;
    background: #FFFFFF;
    color: #020222;
    text-align: center;
    border: 3px solid #8146ff66;
}

.pv05osm0q-chat--report.pv05osm0q-chat--report-mess {
    left: 20px;
}

.pv05osm0q-chat--report a {
    display: inline-block;
}

.pv05osm0q-chat--report a + a {
    margin-top: 4px;
}

.pv05osm0q-chat--name {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}

.pv05osm0q-chat--message {
    position: relative;
    margin-bottom: 26px;
    gap: 8px;
}

.pv05osm0q-chat--message.bot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pv05osm0q-chat--message.user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pv05osm0q-chat--message.user .pv05osm0q-report--mess {
    display: none;
}

.pv05osm0q-chat--message p {
    border-radius: 0 30px 30px 30px;
    background: linear-gradient(138.47deg, #FF63FA 18.91%, #8146FF 99.53%);
    color: #ffffff;
    padding: 14px 30px;
    max-width: 260px;
    word-break: break-word;
}

.pv05osm0q-chat--message.user p {
    background: #FFFFFF;
    color: #020222;
}

.osyz6c587-chat--bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.osyz6c587-chat--btn {
    cursor: pointer;
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
}

.osyz6c587-chat--btn img {
    min-width: 34px;
}

.pv05osm0q-report--mess {
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
}


/* Check */
.pv05osm0q-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pv05osm0q-checkbox-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.pv05osm0q-checkbox-btn input {
    display: none;
}

.pv05osm0q-check {
    width: 30px;
    height: 30px;
    border: 3px solid #020222;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: 0.3s;
}

.pv05osm0q-checkbox-btn:hover {
    border-color: #DD5BFB;
}

.pv05osm0q-checkbox-btn input:checked + .pv05osm0q-check {
    background: transparent;
    border-color: #DD5BFB;
}

.pv05osm0q-checkbox-btn input:checked + .pv05osm0q-check::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #DD5BFB;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.pv05osm0q-checkbox-btn input:checked ~ .pv05osm0q-text {
    color: #111;
}

/* Chat list */
.pv05osm0q-room--list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.pv05osm0q-room--item {
    cursor: pointer;
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: #514068;
    border-radius: 30px;
}

.pv05osm0q-room--item.pv05osm0q-room--item-last {
    display: flex;
}

.pv05osm0q-room--item.pv05osm0q-room--item-last a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pv05osm0q-room--item::before {
    content: '';
    background: linear-gradient(135.07deg, rgba(255, 255, 255, 0.6) 8.08%, rgba(255, 255, 255, 0.06) 54.39%, rgba(255, 255, 255, 0.6) 94.26%);
    position: absolute;
    z-index: -1;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 30px;
}

.pv05osm0q-room--item.active {
    display: flex;
}

.pv05osm0q-room--pic {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.pv05osm0q-room--pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv05osm0q-room--name {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
}

/* Footer */
.pv05osm0q-footer {
    padding: 10px 14px;
}

.pv05osm0q-footer--nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 20px;
}

.pv05osm0q-footer--item {
    padding: 2px;
    opacity: .8;
}

/* Modal */
.pv05osm0q-bg--pattern {
    position: absolute;
    z-index: 1;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 34, 0.8);
}

.modal {
    padding: 80px 24px 24px;
}

.modal-backdrop {
    background: rgba(2, 2, 34, 0.8) !important;
}

.modal-dialog {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.modal-content {
    background: #FFFFFF;
    color: #020222;
    border-radius: 30px;
    padding: 44px 24px;
    border: none;
}

.modal-content::after {
    content: '';
    background: linear-gradient(135.07deg, rgba(255, 255, 255, 0.6) 8.08%, rgba(255, 255, 255, 0.06) 54.39%, rgba(255, 255, 255, 0.6) 94.26%);
    position: absolute;
    z-index: -1;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 30px;
}

.modal-content h2 {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.modal-content p {
    text-align: center;
}

.pv05osm0q-modal--close {
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 2px;
}

.pv05osm0q-btn--check {
    margin-top: 24px;
}

.pv05osm0q-modal--btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Info */
.pv05osm0q-info {
    word-break: break-word;
}

.pv05osm0q-info h1 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
}

.pv05osm0q-info h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pv05osm0q-info h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pv05osm0q-info p {
    margin-bottom: 14px;
}

.pv05osm0q-info ul {
   padding-left: 20px;
   list-style-type: disc;
}

.pv05osm0q-info ol {
   padding-left: 20px;
   list-style-type: decimal;
}

.pv05osm0q-info li {
   margin-bottom: 10px;
}

.pv05osm0q-info strong {
    font-weight: 700;
    color: #DD5BFB;
}