.newHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.back2,
.alertsContainer {
    width: 32px;
    height: 32px;
    background: #282828;
    border-radius: 50%;
    background-image: url(/images/icons/navBack.svg);
    background-position: 50%;
    background-repeat: no-repeat;
}

.alertsContainer {
    background-image: url(/images/icons/navNotifications.svg);
}

.authContainer>*>h1 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -1px;
    padding: 0 90px;
}

.centered {
    text-align: center;
}

button.rounded {
    height: 40px;
    line-height: 36px;
    min-width: 278px;
    border-radius: 20px;
    border: 2px solid #282828;
    background: transparent;
    color: white;
}

.tgAfter::after {
    content: url(/images/icons/tgAfter.svg);
    padding-left: 10px;
    vertical-align: sub;
}

.mailAfter::after {
    content: url(/images/icons/mailAfter.svg);
    padding-left: 10px;
    vertical-align: sub;
}

div#tg-script-error2 {
    background: var(--demi);
    padding: 16px;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    align-items: baseline;
    margin-top: 16px;
}


.plusCotainer.flex.spread {
    background: #093338;
    padding: 16px;
    border-radius: 20px;
    margin-top: 20px;
    font-size: 18px;
    width: 100%;
    box-sizing: border-box;
}

.plusCotainer>.white {
    background: white;
    color: black;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding:  0 20px;
    border-radius: 20px;
}

.itemsBlock {
    background: var(--demi);
    margin-top: 20px;
    padding: 16px;
    border-radius: 20px;
}

.menuLine {
    height: 36px;
    margin-bottom: 16px;
    line-height: 36px;
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.menuLine>img {
    background: #ffffff17;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: none;
}

.menuLine:last-child {
    margin-bottom: 0px;
}

button.block {
    display: block;
    margin: 0 auto;
    margin-bottom: 16px;
}


input.rounded {
    background: transparent;
    border: 1px solid var(--demi);
    border-radius: 28px;
    height: 56px !important;
    padding: 0 15px;
}

span.white {
    color: white;
}

input.rounded::placeholder {
    color: white;
}


button.block.rounded.white {
    width: 100%;
    background: white;
    color: var(--bg);
    height: 56px;
    border-radius: 28px;
    font-size: 14px;
}

.input-wrap { position: relative; margin-bottom: 4px; }
input.rounded.error { border-color: #d13033; }
p.input-error { color: #d13033; font-size: 12px; margin: 4px 0 12px 16px; }

.g {
    background: var(--demi);
    padding: 20px;
    color: white;
}

.r {
    border-radius: 20px;
}


img.roundMicro {
    border-radius: 50%;
    width: 70px;
    box-shadow: 0px 0px 120px rgba(255, 81, 81, 0.4);
    margin-top: 60px;
}

.box{
    margin-bottom: 20px;
}

.profilePic { width: 120px; height: 120px; border-radius: 50%; background: #2a2a2a; cursor: pointer; margin: 24px auto 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.profilePic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profilePicLabel { display: flex; align-items: center; gap: 8px; color: #6e6e6e; font-size: 14px; margin: 0 0 24px; }
.profilePicLine { flex: 1; height: 1px; background: #3a3a3a; }


.shortener.before {
    font-size: small;
    color: var(--grey);
    margin-bottom: -10px;
    margin-top: 20px;
}


.blur {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    top: 0;
    left: 0;
    z-index: 10000;
}

.blur[data-open="true"] {
    display: block;
}

.errorPopup {
    background: white;
    margin: 0 auto;
    position: fixed;
    left: 16px;
    right: 16px;
    max-width: 600px;
    bottom: 120px;
    padding: 24px 20px 20px;
    box-sizing: border-box;
    color: black;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.errorPopup h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    padding-right: 36px;
}

.errorPopup p.shortener {
    margin: 0 0 16px;
    color: #888;
    font-size: 14px;
}

.errorPopup textarea {
    width: 100%;
    min-height: 100px;
    resize: none;
    padding: 12px;
    box-sizing: border-box;
    font-size: 15px;
    border-radius: 10px;
    margin-bottom: 14px;
    display: block;
}

.errorPopup__submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #1a1a1a !important;
    color: white !important;
    border: none !important;
    cursor: pointer;
    line-height: 0!important;
}

.errorPopup__submit:disabled {
    opacity: 0.4;
    cursor: default;
    background: black;
}

.errorPopup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #333;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

textarea.white {
    background: white;
    border: 1px solid var(--demi);
    color: black;
}

.input-wrap[data-caption]:before {
    content: attr(data-caption);
    font-size: x-small;
    color: var(--grey);
    position: absolute;
    left: 16px;
    top: 6px;
}


img.ava {
    width: 120px;
    border-radius: 50%;
}