@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Open+Sans:wght@300;400;600&family=Open Sans:wght@300;400;500;600&display=swap');


label{
	margin-bottom: 0;
}


.container-acc-err{
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;   

    /*margin-bottom: -30px;
    top: 50%;
    left: 50%;
    
    transform: translate(-50%, 10%)
    */
}


.container-acc{
    position: relative;
    max-width: 430px;
    /*width: 100%;*/
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /*margin: 20px;
    top: 50%;
    left: 50%;
    
    transform: translate(-50%, 10%)
    */
}

.container-acc .forms{
    display: flex;
    align-items: center;
    height: 440px;
    width: 200%;
    transition: height 0.2s ease;
}


.container-acc .form{
    width: 50%;
    padding: 30px;
    background-color: #fff;
    transition: margin-left 0.18s ease;
}

.container-acc.active .login{
    margin-left: -50%;
    opacity: 0;
    transition: margin-left 0.18s ease, opacity 0.15s ease;
}

.container-acc .signup{
    opacity: 0;
    transition: opacity 0.09s ease;
}
.container-acc.active .signup{
    opacity: 1;
    transition: opacity 0.2s ease;
}

.container-acc.active .forms{
    height: 600px;
}
.container-acc .form .title{
    position: relative;
    font-size: 27px;
    font-weight: 600;
}

.form .title::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: #74b7ff;
    border-radius: 25px;
}

.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}


.input-field input:is(:focus, :valid){
    border-bottom-color: #74b7ff;
}

.input-field input.error{
    border-bottom-color: red;
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i{
    color: #74b7ff;
}

.input-field i.icon{
    left: 0;
}
.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.checkbox-content input{
    margin: 0 8px -2px 4px;
    accent-color: #4c4c4c;
}

.form .text{
    color: #333;
    font-size: 14px;
}

.form a.text{
    color: #4584c8;
    font-weight: 600;
    text-decoration: none;
}
.form a:hover{
    text-decoration: underline !important; 
}

.form .button{
    margin-top: 35px;
}

.form .button input{
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    background-color: #ff4057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button input:hover{
    background-color: #d92238;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}

*{
font-family: 'Open Sans', sans-serif;	
}

.error{
    color: red !important;
}

/* ===== NOVETRA PUBLIC ===== */

/*
 * Novetra public landing page
 * Guest-only presentation layer.
 */

:root {
    --novetra-dark: #342b3b;
    --novetra-dark-soft: #46394f;
    --novetra-primary: #ff5368;
    --novetra-primary-dark: #ed3d54;
    --novetra-primary-soft: #fff0f3;
    --novetra-text: #29242e;
    --novetra-muted: #716b77;
    --novetra-border: #ebe7ed;
    --novetra-bg: #ffffff;
    --novetra-soft: #f8f6f9;
    --novetra-radius: 22px;
}


/* --------------------------------------------------
   GLOBAL PUBLIC
-------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    background: var(--novetra-bg);
    color: var(--novetra-text);
}

.novetra-public-main {
    overflow: hidden;
}

.novetra-public-section {
    padding: 95px 0;
}

.novetra-public-section-soft {
    background: var(--novetra-soft);
}

.novetra-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--novetra-primary-dark);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 2px;
}

.novetra-eyebrow-light {
    color: #ff9aa7;
}


/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.novetra-public-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--novetra-border);
}

.novetra-public-header-row {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.novetra-public-logo {
    display: inline-flex;
    align-items: center;
}

.novetra-public-logo img {
    display: block;
    width: auto;
    height: 58px;
}

.novetra-public-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.novetra-public-actions form,
.novetra-hero-actions form,
.novetra-public-cta form {
    margin: 0;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */

.novetra-public-btn {
    min-height: 42px;
    padding: 10px 20px;
    border: 0;
    border-radius: 11px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.novetra-public-btn:hover {
    transform: translateY(-1px);
}

.novetra-public-btn-light {
    color: var(--novetra-dark);
    background: #f4f1f5;
}

.novetra-public-btn-light:hover {
    background: #ebe6ee;
}

.novetra-public-btn-primary {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--novetra-primary-dark),
        var(--novetra-primary)
    );
    box-shadow: 0 9px 24px rgba(237, 61, 84, .22);
}

.novetra-public-btn-primary:hover {
    color: #fff;
    box-shadow: 0 12px 30px rgba(237, 61, 84, .30);
}

.novetra-public-btn-large {
    min-height: 52px;
    padding: 14px 28px;
    font-size: 16px;
}


/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.novetra-hero {
    position: relative;
    padding: 100px 0 110px;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 83, 104, .16),
            transparent 32%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(87, 65, 100, .10),
            transparent 30%
        ),
        #fff;
}

.novetra-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    align-items: center;
    gap: 80px;
}

.novetra-hero-content {
    max-width: 720px;
}

.novetra-hero h1 {
    margin: 0 0 26px;
    color: var(--novetra-dark);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.03;
    font-weight: 700;
    letter-spacing: -2.5px;
}

.novetra-hero-lead {
    max-width: 650px;
    margin: 0;
    color: var(--novetra-muted);
    font-size: 19px;
    line-height: 1.7;
}

.novetra-hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.novetra-public-link {
    color: var(--novetra-dark);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.novetra-public-link:hover {
    color: var(--novetra-primary-dark);
    text-decoration: none;
}


/* --------------------------------------------------
   DEMO CARD
-------------------------------------------------- */

.novetra-hero-card {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--novetra-border);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(52, 43, 59, .14);
}

.novetra-hero-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 82%;
    height: 82%;
    right: -28px;
    bottom: -28px;
    border-radius: 34px;
    background: linear-gradient(
        135deg,
        rgba(52, 43, 59, .16),
        rgba(255, 83, 104, .18)
    );
}

.novetra-video-preview {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    background: linear-gradient(
        145deg,
        var(--novetra-dark),
        #644a70
    );
    border-radius: 20px;
}

.novetra-video-preview span {
    font-size: 15px;
    opacity: .78;
}

.novetra-video-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border-radius: 50%;
    background: var(--novetra-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    font-size: 24px;
}

.novetra-rating-preview {
    padding: 22px 4px 18px;
}

.novetra-rating-title {
    display: block;
    margin-bottom: 12px;
    color: var(--novetra-muted);
    font-size: 13px;
    font-weight: 600;
}

.novetra-rating-stars {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.novetra-rating-stars span {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--novetra-dark);
    background: var(--novetra-soft);
    border: 1px solid var(--novetra-border);
    border-radius: 10px;
    font-weight: 700;
}

.novetra-rating-stars span:last-child {
    color: #fff;
    background: var(--novetra-primary);
    border-color: var(--novetra-primary);
}

.novetra-seen-preview {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--novetra-primary-soft);
    border-radius: 14px;
    color: var(--novetra-dark);
    font-size: 13px;
}

.novetra-seen-preview strong {
    white-space: nowrap;
    color: var(--novetra-primary-dark);
}


/* --------------------------------------------------
   PUBLIC NAVIGATION
-------------------------------------------------- */

.novetra-public-nav {
    position: relative;
    z-index: 5;
    background: var(--novetra-dark);
}

.novetra-public-nav .container {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.novetra-public-nav a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.novetra-public-nav a:hover {
    color: #fff;
    text-decoration: none;
}


/* --------------------------------------------------
   SECTION TITLES
-------------------------------------------------- */

.novetra-section-heading {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}

.novetra-section-heading h2,
.novetra-info-grid h2,
.novetra-referral-grid h2,
.novetra-public-cta h2 {
    margin: 0;
    color: var(--novetra-dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.novetra-section-heading p {
    max-width: 600px;
    margin: 18px auto 0;
    color: var(--novetra-muted);
    font-size: 17px;
    line-height: 1.65;
}


/* --------------------------------------------------
   HOW IT WORKS
-------------------------------------------------- */

.novetra-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.novetra-step-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--novetra-border);
    border-radius: var(--novetra-radius);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.novetra-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(52, 43, 59, .08);
}

.novetra-step-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #ded8e1;
    font-size: 32px;
    font-weight: 700;
}

.novetra-step-card > i {
    margin: 16px 0 34px;
    color: var(--novetra-primary);
    font-size: 34px;
}

.novetra-step-card h3 {
    margin: 0 0 12px;
    color: var(--novetra-dark);
    font-size: 19px;
    font-weight: 700;
}

.novetra-step-card p {
    margin: 0;
    color: var(--novetra-muted);
    font-size: 14px;
    line-height: 1.65;
}


/* --------------------------------------------------
   LEVELS
-------------------------------------------------- */

.novetra-level-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.novetra-level-card {
    min-height: 245px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--novetra-border);
    border-radius: var(--novetra-radius);
}

.novetra-level-index {
    display: block;
    margin-bottom: 44px;
    color: #c8c1cc;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.novetra-level-card h3 {
    margin: 0 0 12px;
    color: var(--novetra-dark);
    font-size: 25px;
    font-weight: 700;
}

.novetra-level-card strong {
    color: var(--novetra-primary-dark);
    font-size: 14px;
}

.novetra-level-card p {
    margin: 14px 0 0;
    color: var(--novetra-muted);
    font-size: 13px;
    line-height: 1.6;
}

.novetra-level-card-accent {
    color: #fff;
    background: linear-gradient(
        145deg,
        var(--novetra-dark),
        #5c4667
    );
    border-color: transparent;
}

.novetra-level-card-accent .novetra-level-index {
    color: rgba(255, 255, 255, .45);
}

.novetra-level-card-accent h3 {
    color: #fff;
}

.novetra-level-card-accent strong {
    color: #ff9baa;
}

.novetra-level-card-accent p {
    color: rgba(255, 255, 255, .68);
}


/* --------------------------------------------------
   TG INFO
-------------------------------------------------- */

.novetra-info-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.novetra-info-card {
    padding: 40px 44px;
    background: var(--novetra-soft);
    border: 1px solid var(--novetra-border);
    border-radius: var(--novetra-radius);
}

.novetra-info-card p {
    margin: 0;
    color: var(--novetra-muted);
    font-size: 16px;
    line-height: 1.75;
}

.novetra-info-card p + p {
    margin-top: 18px;
    color: var(--novetra-dark);
    font-weight: 600;
}


/* --------------------------------------------------
   REFERRALS
-------------------------------------------------- */

.novetra-public-section-dark {
    color: #fff;
    background: var(--novetra-dark);
}

.novetra-referral-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    align-items: center;
    gap: 60px;
}

.novetra-referral-grid h2 {
    color: #fff;
}

.novetra-referral-grid p {
    max-width: 660px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .69);
    font-size: 16px;
    line-height: 1.7;
}

.novetra-referral-icon {
    width: 190px;
    height: 190px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    font-size: 62px;
}


/* --------------------------------------------------
   FINAL CTA
-------------------------------------------------- */

.novetra-public-cta {
    padding: 85px 0;
    background: var(--novetra-soft);
}

.novetra-public-cta-box {
    padding: 50px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #fff;
    border: 1px solid var(--novetra-border);
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(52, 43, 59, .07);
}

.novetra-public-cta h2 {
    font-size: 34px;
}

.novetra-public-cta p {
    margin: 13px 0 0;
    color: var(--novetra-muted);
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 991px) {

    .novetra-hero {
        padding: 75px 0 85px;
    }

    .novetra-hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .novetra-hero-content {
        max-width: none;
        text-align: center;
    }

    .novetra-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .novetra-hero-actions {
        justify-content: center;
    }

    .novetra-hero-card {
        width: 100%;
        max-width: 530px;
        margin: 0 auto;
    }

    .novetra-step-grid,
    .novetra-level-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .novetra-info-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .novetra-referral-grid {
        grid-template-columns: 1fr 180px;
    }

    .novetra-referral-icon {
        width: 150px;
        height: 150px;
        font-size: 48px;
    }

}


@media (max-width: 767px) {

    .novetra-public-header-row {
        min-height: 70px;
    }

    .novetra-public-logo img {
        height: 48px;
    }

    .novetra-public-actions {
        gap: 6px;
    }

    .novetra-public-btn {
        padding: 9px 13px;
        font-size: 12px;
    }

    .novetra-hero {
        padding: 60px 0 70px;
    }

    .novetra-hero h1 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .novetra-hero-lead {
        font-size: 16px;
    }

    .novetra-hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .novetra-hero-actions form,
    .novetra-hero-actions button {
        width: 100%;
    }

    .novetra-public-nav {
        display: none;
    }

    .novetra-public-section {
        padding: 70px 0;
    }

    .novetra-step-grid,
    .novetra-level-grid {
        grid-template-columns: 1fr;
    }

    .novetra-step-card,
    .novetra-level-card {
        min-height: auto;
    }

    .novetra-referral-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .novetra-referral-icon {
        margin: 15px auto 0;
    }

    .novetra-public-cta-box {
        padding: 38px 28px;
        flex-direction: column;
        text-align: center;
    }

    .novetra-public-cta form,
    .novetra-public-cta button {
        width: 100%;
    }

}


@media (max-width: 420px) {

    .novetra-public-logo img {
        height: 42px;
    }

    .novetra-public-btn-light {
        display: none;
    }

    .novetra-hero h1 {
        font-size: 35px;
    }

    .novetra-hero-card {
        padding: 15px;
        border-radius: 21px;
    }

    .novetra-video-preview {
        min-height: 210px;
    }

    .novetra-info-card {
        padding: 30px 25px;
    }

}

/* NOVETRA PUBLIC WIDTH POLISH */

.novetra-public-header .container,
.novetra-hero .container,
.novetra-public-nav .container,
.novetra-public-main .container,
.novetra-public-cta .container {
    width: 100%;
    max-width: 1180px;
}

.novetra-public-header-row {
    min-height: 88px;
}

.novetra-public-logo img {
    height: 64px;
}

@media (max-width: 1199px) {
    .novetra-public-header .container,
    .novetra-hero .container,
    .novetra-public-nav .container,
    .novetra-public-main .container,
    .novetra-public-cta .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .novetra-public-header .container,
    .novetra-hero .container,
    .novetra-public-nav .container,
    .novetra-public-main .container,
    .novetra-public-cta .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .novetra-public-header .container,
    .novetra-hero .container,
    .novetra-public-main .container,
    .novetra-public-cta .container {
        width: calc(100% - 30px);
        max-width: none;
    }

    .novetra-public-header-row {
        min-height: 76px;
    }

    .novetra-public-logo img {
        height: 52px;
    }
}

/* NOVETRA LOGO SIZE */

.novetra-public-header-row {
    min-height: 104px;
}

.novetra-public-logo img {
    height: 84px;
    width: auto;
}

@media (max-width: 767px) {
    .novetra-public-header-row {
        min-height: 84px;
    }

    .novetra-public-logo img {
        height: 64px;
    }
}

/* NOVETRA HERO POLISH */

.novetra-hero {
    padding-top: 72px;
    padding-bottom: 82px;
}

.novetra-hero-grid {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(400px, .95fr);
    gap: 78px;
}

.novetra-hero h1 {
    max-width: 680px;
    font-size: clamp(46px, 4.6vw, 68px);
    line-height: 1.04;
}

.novetra-hero-lead {
    max-width: 650px;
    font-size: 18px;
}

.novetra-hero-card {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    padding: 24px;
}

.novetra-video-preview {
    min-height: 285px;
}

.novetra-rating-stars span {
    height: 46px;
}

@media (max-width: 991px) {
    .novetra-hero {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .novetra-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .novetra-hero-card {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .novetra-hero h1 {
        font-size: 40px;
    }

    .novetra-hero-lead {
        font-size: 16px;
    }

    .novetra-video-preview {
        min-height: 220px;
    }
}

/* NOVETRA TG SECTION POLISH */

#tg {
    position: relative;
    overflow: hidden;
}

#tg .novetra-info-grid {
    position: relative;
    z-index: 2;
    gap: 70px;
}

#tg .novetra-info-card {
    position: relative;
    overflow: hidden;
    padding: 44px 48px;
    background: linear-gradient(
        145deg,
        #faf8fb,
        #f4f0f6
    );
    border: 1px solid #e9e3eb;
    box-shadow: 0 16px 40px rgba(52, 43, 59, .06);
}

#tg .novetra-info-card::after {
    content: "ТГ";
    position: absolute;
    right: -12px;
    bottom: -34px;
    color: rgba(255, 83, 104, .055);
    font-size: 125px;
    line-height: 1;
    font-weight: 800;
    pointer-events: none;
}

#tg .novetra-info-card p {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    #tg .novetra-info-card {
        padding: 32px 26px;
    }

    #tg .novetra-info-card::after {
        font-size: 95px;
    }
}

/* NOVETRA PUBLIC FOOTER */

.novetra-public-footer {
    color: rgba(255,255,255,.72);
    background: #292230;
}

.novetra-public-footer-main {
    padding: 58px 0 48px;
    display: grid;
    grid-template-columns: minmax(250px, 1.1fr) 2fr;
    gap: 80px;
}

.novetra-public-footer-brand {
    max-width: 330px;
}

.novetra-public-footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.novetra-public-footer-logo img {
    width: auto;
    height: 72px;
}

.novetra-public-footer-brand p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.novetra-public-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.novetra-public-footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.novetra-public-footer-links strong {
    margin-bottom: 18px;
    color: #fff;
    font-size: 14px;
}

.novetra-public-footer-links a {
    margin-bottom: 11px;
    color: rgba(255,255,255,.64);
    font-size: 13px;
    text-decoration: none;
}

.novetra-public-footer-links a:hover {
    color: #fff;
    text-decoration: none;
}

.novetra-public-footer-bottom {
    min-height: 70px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.09);
    font-size: 12px;
}

.novetra-public-footer-bottom span:last-child {
    max-width: 520px;
    text-align: right;
    color: rgba(255,255,255,.46);
}

@media (max-width: 991px) {

    .novetra-public-footer-main {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}

@media (max-width: 767px) {

    .novetra-public-footer-main {
        padding: 45px 0 35px;
    }

    .novetra-public-footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .novetra-public-footer-logo img {
        height: 62px;
    }

    .novetra-public-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .novetra-public-footer-bottom span:last-child {
        text-align: left;
    }

}

@media (max-width: 480px) {

    .novetra-public-footer-links {
        grid-template-columns: 1fr;
    }

}

/* NOVETRA ACCOUNT PAGE */

body.novetra-account-page {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 83, 104, .10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #fbf9fc 0%,
            #f5f1f7 100%
        );
}

body.novetra-account-page > .container {
    max-width: 1180px;
}

body.novetra-account-page .container-acc {
    width: 100%;
    max-width: 460px;
    min-height: 500px;
    margin-top: 32px;
    margin-bottom: 48px;
    background: #fff;
    border: 1px solid #e8e2eb;
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(52, 43, 59, .10);
}

body.novetra-account-page .container-acc .form {
    padding: 34px 38px;
}

body.novetra-account-page .container-acc .title {
    color: #342b3b;
    font-size: 30px;
    font-weight: 700;
}

body.novetra-account-page .container-acc .input-field input {
    border-radius: 10px;
}

body.novetra-account-page .container-acc .input-field.button input {
    border-radius: 10px;
}

body.novetra-account-page .novetra-legal-links {
    color: #7a737f !important;
}

body.novetra-account-page .novetra-legal-links a {
    color: #ff5368 !important;
}

body.novetra-account-page .login-signup {
    margin-top: 22px;
}

body.novetra-account-page .login-signup a,
body.novetra-account-page #showEmailLogin,
body.novetra-account-page #showEmailSignup {
    color: #ff5368 !important;
}

@media (max-width: 767px) {

    body.novetra-account-page .container-acc {
        max-width: calc(100% - 24px);
        margin-top: 20px;
        margin-bottom: 30px;
        border-radius: 18px;
    }

    body.novetra-account-page .container-acc .form {
        padding: 28px 24px;
    }

    body.novetra-account-page .container-acc .title {
        font-size: 27px;
    }

}

/* NOVETRA ACCOUNT POLISH */

body.novetra-account-page .container-acc {
    max-width: 520px;
    min-height: 0;
    height: auto;
    margin-top: 38px;
    margin-bottom: 48px;
}

body.novetra-account-page .container-acc .form {
    padding: 42px 44px 46px;
}

body.novetra-account-page .container-acc .title {
    font-size: 32px;
    line-height: 1.2;
}

body.novetra-account-page .container-acc form {
    width: 100%;
}

body.novetra-account-page .container-acc .input-field {
    width: 100%;
}

body.novetra-account-page .container-acc .input-field input {
    min-height: 44px;
}

body.novetra-account-page .login-signup {
    margin-top: 26px;
    margin-bottom: 0;
}

@media (max-width: 767px) {

    body.novetra-account-page .container-acc {
        max-width: calc(100% - 24px);
        margin-top: 20px;
        margin-bottom: 28px;
    }

    body.novetra-account-page .container-acc .form {
        padding: 30px 25px 34px;
    }

}

/* NOVETRA EMAIL LOGIN LINK */

body.novetra-account-page #showEmailLogin,
body.novetra-account-page #showEmailSignup {
    color: #4b3d54 !important;
    font-weight: 700;
    text-decoration: none;
}

body.novetra-account-page #showEmailLogin:hover,
body.novetra-account-page #showEmailSignup:hover {
    color: #ff5368 !important;
    text-decoration: none;
}

/* NOVETRA ACCOUNT CLOSE */

body.novetra-account-page .container-acc {
    position: relative;
}

body.novetra-account-page .novetra-account-close {
    position: absolute;
    top: 17px;
    right: 19px;
    z-index: 10;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9a929e;
    background: transparent;

    border-radius: 50%;

    font-size: 29px;
    line-height: 1;
    font-weight: 300;

    text-decoration: none;

    transition:
        color .18s ease,
        background .18s ease;
}

body.novetra-account-page .novetra-account-close:hover {
    color: #ff5368;
    background: #fff0f3;
    text-decoration: none;
}

body.novetra-account-page .novetra-account-close:focus {
    outline: 2px solid rgba(255, 83, 104, .28);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    body.novetra-account-page .novetra-account-close {
        top: 12px;
        right: 12px;
    }
}

/* NOVETRA ACCOUNT CLOSE FIX */

body.novetra-account-page .container-acc {
    position: relative !important;
    overflow: visible !important;
}

body.novetra-account-page a.novetra-account-close {
    position: absolute !important;
    top: 14px !important;
    right: 16px !important;
    z-index: 9999 !important;

    width: 36px !important;
    height: 36px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    color: #8f8794 !important;
    background: #f6f3f7 !important;

    border-radius: 50% !important;

    font-size: 28px !important;
    line-height: 36px !important;
    font-weight: 400 !important;

    text-decoration: none !important;
}

body.novetra-account-page a.novetra-account-close:hover {
    color: #ffffff !important;
    background: #ff5368 !important;
}

/* NOVETRA MOBILE HEADER ACTIONS */

@media (max-width: 420px) {

    .novetra-public-btn-light {
        display: inline-flex !important;
    }

    .novetra-public-actions {
        gap: 4px;
        flex-shrink: 0;
    }

    .novetra-public-actions .novetra-public-btn {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 11px;
        white-space: nowrap;
    }

}

/* NOVETRA MOBILE HEADER BUTTON ALIGNMENT */

@media (max-width: 420px) {

    .novetra-public-actions .novetra-public-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 40px !important;
        height: 40px;

        padding: 0 11px !important;

        line-height: 1 !important;
        vertical-align: middle;
    }

    .novetra-public-actions .novetra-public-btn-light {
        color: #4b3d54 !important;
        background: #ffffff !important;

        border: 1px solid #ded6e2 !important;

        box-shadow:
            0 4px 14px
            rgba(52, 43, 59, .06);
    }

    .novetra-public-actions .novetra-public-btn-light:hover {
        color: #342b3b !important;
        background: #f8f5f9 !important;
        border-color: #d2c7d6 !important;
    }

    .novetra-public-actions .novetra-public-btn-primary {
        height: 40px;
    }

}

/* NOVETRA ACCOUNT ERROR MESSAGE */

body.novetra-account-page .error_msg {
    display: flex !important;
    justify-content: center !important;
}

body.novetra-account-page .container-acc-err {
    width: 100% !important;
    max-width: 520px !important;

    padding: 16px 18px !important;

    border: 1px solid #f2c9cf !important;
    border-radius: 14px !important;

    background: #fff5f6 !important;

    box-shadow:
        0 8px 24px
        rgba(52, 43, 59, .06) !important;

    overflow: visible !important;

    color: #342b3b !important;
}

body.novetra-account-page .container-acc-err > b {
    display: block !important;

    margin-bottom: 7px !important;

    color: #342b3b !important;

    font-size: 15px !important;
    font-weight: 700 !important;
}

body.novetra-account-page .container-acc-err ul {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;

    line-height: 1.45 !important;
}

body.novetra-account-page .container-acc-err li.error {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;

    color: #b4233a !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

body.novetra-account-page .container-acc-err br {
    display: none !important;
}

/* NOVETRA INLINE ACCOUNT ERROR */

body.novetra-account-page .novetra-account-inline-error {
    width: 100%;

    margin: 0 0 20px;
    padding: 13px 15px;

    border: 1px solid #f1c6cd;
    border-radius: 12px;

    background: #fff3f5;

    color: #342b3b;

    text-align: left;

    box-shadow: none;
}

body.novetra-account-page .novetra-account-inline-error strong {
    display: block;

    margin-bottom: 4px;

    color: #342b3b;

    font-size: 14px;
    font-weight: 700;
}

body.novetra-account-page .novetra-account-inline-error-text {
    color: #c12b42;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

body.novetra-account-page
.novetra-account-inline-error-text
li.error {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #c12b42 !important;

    list-style: none !important;
}

body.novetra-account-page
.novetra-account-inline-error-text
br {
    display: none !important;
}

@media (max-width: 767px) {

    body.novetra-account-page .novetra-account-inline-error {
        margin-bottom: 16px;
        padding: 12px 13px;
    }

}

/* NOVETRA ACCOUNT ERROR HEIGHT FIX */

body.novetra-account-page
.container-acc:has(.novetra-account-inline-error)
.forms {
    height: auto !important;
    min-height: 0 !important;

    align-items: flex-start !important;
}

body.novetra-account-page
.container-acc:has(.novetra-account-inline-error)
.form {
    align-self: flex-start !important;
}

/*
 * При ошибке входа email-поля раскрываются,
 * поэтому карточке разрешаем свободно расти вниз.
 */
body.novetra-account-page
.container-acc:has(.form.login .novetra-account-inline-error) {
    height: auto !important;
    min-height: 0 !important;
}

/*
 * То же для регистрации.
 */
body.novetra-account-page
.container-acc.active:has(.form.signup .novetra-account-inline-error) {
    height: auto !important;
    min-height: 0 !important;
}

@media (max-width: 767px) {

    body.novetra-account-page
    .container-acc:has(.novetra-account-inline-error) {
        margin-top: 20px !important;
        margin-bottom: 28px !important;
    }

}

/* NOVETRA ACCOUNT OPEN EMAIL HEIGHT */

body.novetra-account-page
.container-acc.email-fields-open
.forms {
    height: auto !important;
    min-height: 0 !important;
    align-items: flex-start !important;
}

body.novetra-account-page
.container-acc.email-fields-open
.form {
    align-self: flex-start !important;
}

body.novetra-account-page
.container-acc.active.email-fields-open
.forms {
    height: auto !important;
}

@media (max-width: 767px) {

    body.novetra-account-page
    .container-acc.email-fields-open {
        height: auto !important;
        min-height: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 28px !important;
    }

}

/* NOVETRA AUTH: LOST PASSWORD */

body.novetra-account-page .novetra-auth-shell {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 38px 20px 48px;
}

body.novetra-account-page .novetra-auth-card {
    position: relative;

    width: 100%;
    max-width: 520px;

    min-height: 0;
    height: auto;

    margin: 0;

    padding: 42px 44px 46px;

    overflow: visible;

    background: #fff;

    border: 1px solid #e8e2eb;
    border-radius: 24px;

    box-shadow:
        0 22px 60px
        rgba(52, 43, 59, .10);
}

body.novetra-account-page .novetra-auth-header {
    padding-right: 48px;
    margin-bottom: 30px;
}

body.novetra-account-page .novetra-auth-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
}

body.novetra-account-page .novetra-auth-logo img {
    display: block;

    width: 86px;
    height: auto;
}

body.novetra-account-page .novetra-auth-header h1 {
    margin: 0 0 10px;

    color: #342b3b;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

body.novetra-account-page .novetra-auth-header p {
    margin: 0;

    color: #7a737f;

    font-size: 14px;
    line-height: 1.55;
}

body.novetra-account-page .novetra-auth-form {
    width: 100%;
}

body.novetra-account-page .novetra-auth-label {
    display: block;

    margin-bottom: 8px;

    color: #4b3d54;

    font-size: 13px;
    font-weight: 700;
}

body.novetra-account-page .novetra-auth-input-wrap {
    position: relative;

    width: 100%;
}

body.novetra-account-page
.novetra-auth-input-wrap i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #9a929e;

    font-size: 15px;

    pointer-events: none;
}

body.novetra-account-page
.novetra-auth-input-wrap input {
    width: 100%;
    min-height: 48px;

    padding: 11px 14px 11px 44px;

    color: #342b3b;
    background: #fff;

    border: 1px solid #ddd5e1;
    border-radius: 12px;

    outline: none;

    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

body.novetra-account-page
.novetra-auth-input-wrap input:focus {
    border-color: #ff5368;

    box-shadow:
        0 0 0 3px
        rgba(255, 83, 104, .10);
}

body.novetra-account-page .novetra-auth-hint {
    margin: 10px 0 22px;

    color: #8c8490;

    font-size: 12px;
    line-height: 1.5;
}

body.novetra-account-page .novetra-auth-button {
    width: 100%;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    color: #fff !important;
    background: #ff5368;

    border: 0;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

body.novetra-account-page
.novetra-auth-button:hover {
    background: #f3475d;

    box-shadow:
        0 8px 22px
        rgba(255, 83, 104, .20);

    transform: translateY(-1px);
}

body.novetra-account-page .novetra-auth-bottom {
    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    flex-wrap: wrap;

    color: #7a737f;

    font-size: 13px;
}

body.novetra-account-page
.novetra-auth-bottom a,
body.novetra-account-page
.novetra-auth-secondary-link {
    color: #4b3d54 !important;

    font-weight: 700;
    text-decoration: none;
}

body.novetra-account-page
.novetra-auth-bottom a:hover,
body.novetra-account-page
.novetra-auth-secondary-link:hover {
    color: #ff5368 !important;
}

body.novetra-account-page .novetra-auth-alert {
    width: 100%;

    margin: 0 0 24px;
    padding: 14px 16px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    border-radius: 12px;

    font-size: 13px;
    line-height: 1.5;
}

body.novetra-account-page
.novetra-auth-alert strong {
    font-size: 14px;
    font-weight: 700;
}

body.novetra-account-page
.novetra-auth-alert.error {
    color: #a92c40;
    background: #fff3f5;

    border: 1px solid #f1c6cd;
}

body.novetra-account-page
.novetra-auth-alert.success {
    color: #376849;
    background: #f2faf4;

    border: 1px solid #cfe7d5;
}

body.novetra-account-page .novetra-auth-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;

    align-items: center;
}

@media (max-width: 767px) {

    body.novetra-account-page .novetra-auth-shell {
        padding:
            20px 12px
            30px;
    }

    body.novetra-account-page .novetra-auth-card {
        max-width: 100%;

        padding:
            30px 24px
            34px;

        border-radius: 18px;
    }

    body.novetra-account-page .novetra-auth-header {
        padding-right: 38px;

        margin-bottom: 26px;
    }

    body.novetra-account-page .novetra-auth-logo img {
        width: 76px;
    }

    body.novetra-account-page .novetra-auth-header h1 {
        font-size: 26px;
    }

}

/* NOVETRA AUTH: RESET PASSWORD */

body.novetra-account-page .novetra-auth-field-gap {
    height: 18px;
}

body.novetra-account-page .novetra-password-wrap input {
    padding-right: 48px;
}

body.novetra-account-page
.novetra-auth-leading-icon {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #9a929e;

    font-size: 15px;

    pointer-events: none;
}

body.novetra-account-page
.novetra-password-toggle {
    position: absolute;

    right: 8px;
    top: 50%;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    padding: 0;

    color: #9a929e;
    background: transparent;

    border: 0;
    border-radius: 9px;

    cursor: pointer;
}

body.novetra-account-page
.novetra-password-toggle:hover {
    color: #ff5368;
    background: #fff4f6;
}

body.novetra-account-page
.novetra-password-toggle:focus {
    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(255, 83, 104, .10);
}

/* NOVETRA AUTH: RESET PASSWORD */

body.novetra-account-page .novetra-auth-field-gap {
    height: 18px;
}

body.novetra-account-page
.novetra-password-wrap input {
    padding-right: 48px;
}

body.novetra-account-page
.novetra-auth-leading-icon {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #9a929e;

    font-size: 15px;

    pointer-events: none;
}

body.novetra-account-page
.novetra-password-toggle {
    position: absolute;

    right: 8px;
    top: 50%;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    padding: 0;

    color: #9a929e;
    background: transparent;

    border: 0;
    border-radius: 9px;

    cursor: pointer;
}

body.novetra-account-page
.novetra-password-toggle:hover {
    color: #ff5368;
    background: #fff4f6;
}

body.novetra-account-page
.novetra-password-toggle:focus {
    outline: none;

    box-shadow:
        0 0 0 3px
        rgba(255, 83, 104, .10);
}

/* NOVETRA ACCOUNT WITHOUT BOOTSTRAP */

body.novetra-account-page .novetra-account-main-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

body.novetra-account-page .novetra-account-success-shell {
    width: 100%;
    padding: 24px 20px 40px;
}

body.novetra-account-page .novetra-account-success-row {
    width: 100%;
}

body.novetra-account-page .novetra-account-success-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

body.novetra-account-page .novetra-account-success-card {
    width: 100%;
    max-width: 520px;
    margin-top: 24px;
    padding: 24px 26px !important;
    text-align: center;
}

body.novetra-account-page .novetra-account-success-title {
    margin: 0 0 14px;
    color: #342b3b;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

body.novetra-account-page .novetra-account-success-content {
    color: #6f6674;
    font-size: 14px;
    line-height: 1.55;
}

body.novetra-account-page .novetra-account-success-email {
    margin: 14px 0 0;
    color: #342b3b;
    font-size: 16px;
    font-weight: 700;
}

body.novetra-account-page .novetra-account-success-action {
    margin: 18px 0 0;
}

body.novetra-account-page .novetra-account-success-action a {
    color: #ff5368 !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

body.novetra-account-page .novetra-account-success-action a:hover {
    text-decoration: underline !important;
}

@media (max-width: 767px) {
    body.novetra-account-page .novetra-account-main-wrap {
        padding: 0 12px;
    }

    body.novetra-account-page .novetra-account-success-shell {
        padding: 20px 12px 30px;
    }

    body.novetra-account-page .novetra-account-success-card {
        padding: 20px 18px !important;
    }
}

/* NOVETRA OWN CONTAINER */
.novetra-public-header .container,.novetra-hero .container,.novetra-public-nav .container,.novetra-public-main .container,.novetra-public-cta .container,.novetra-public-footer .container{width:100%;max-width:1180px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}
@media(max-width:1199px){.novetra-public-header .container,.novetra-hero .container,.novetra-public-nav .container,.novetra-public-main .container,.novetra-public-cta .container,.novetra-public-footer .container{max-width:960px}}
@media(max-width:991px){.novetra-public-header .container,.novetra-hero .container,.novetra-public-nav .container,.novetra-public-main .container,.novetra-public-cta .container,.novetra-public-footer .container{max-width:720px}}
@media(max-width:767px){.novetra-public-header .container,.novetra-hero .container,.novetra-public-main .container,.novetra-public-cta .container,.novetra-public-footer .container{width:calc(100% - 30px);max-width:none;padding-left:0;padding-right:0}}

body.novetra-account-page, body.novetra-account-page *, body.novetra-account-page *::before, body.novetra-account-page *::after { box-sizing: border-box; }


/*
 * =========================================================
 * NOVETRA HERO VIDEO CARD V2
 * =========================================================
 */

.novetra-hero-card {
    overflow: hidden;
}

.novetra-video-preview {
    position: relative;

    min-height: 255px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #19151d 0%,
            #3f3147 58%,
            #271f2d 100%
        );
}

/*
 * Абстрактная "обложка" ролика.
 * Без внешней картинки — всё рисуется CSS.
 */
.novetra-video-art {
    position: absolute;

    border-radius: 999px;

    pointer-events: none;

    filter: blur(2px);
}

.novetra-video-art-one {
    width: 190px;
    height: 190px;

    top: -45px;
    left: -35px;

    background:
        radial-gradient(
            circle,
            rgba(251, 63, 97, .58) 0%,
            rgba(251, 63, 97, 0) 72%
        );
}

.novetra-video-art-two {
    width: 250px;
    height: 250px;

    right: -80px;
    bottom: -90px;

    background:
        radial-gradient(
            circle,
            rgba(137, 104, 255, .42) 0%,
            rgba(137, 104, 255, 0) 72%
        );
}

.novetra-video-art-three {
    width: 135px;
    height: 135px;

    top: 34px;
    right: 45px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .20) 0%,
            rgba(255, 255, 255, 0) 72%
        );
}

.novetra-video-overlay {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 255px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.novetra-video-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 11px;

    border:
        1px solid
        rgba(255, 255, 255, .13);

    border-radius: 999px;

    color:
        rgba(255, 255, 255, .90);

    background:
        rgba(255, 255, 255, .10);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .03em;
}

.novetra-video-icon {
    width: 74px;
    height: 74px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border:
        1px solid
        rgba(255, 255, 255, .24);

    border-radius: 50%;

    color: #ffffff;

    background:
        rgba(255, 255, 255, .14);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow:
        0 14px 34px
        rgba(0, 0, 0, .22);

    font-size: 23px;
}

.novetra-video-icon i {
    margin-left: 4px;
}

.novetra-video-meta {
    text-align: center;
}

.novetra-video-meta strong {
    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
}

.novetra-video-meta span {
    color:
        rgba(255, 255, 255, .68);

    font-size: 12px;
}

/*
 * Rating
 */
.novetra-rating-preview {
    margin-top: 18px;
}

.novetra-rating-title {
    display: block;

    margin-bottom: 10px;
}

.novetra-rating-stars {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 29px;
    line-height: 1;
}

.novetra-rating-stars span {
    color: #d8d1dc;

    text-shadow:
        0 2px 4px
        rgba(38, 29, 43, .05);
}

.novetra-rating-stars span.is-active {
    color: #ffc84a;
}

/*
 * Seen before
 */
.novetra-seen-preview {
    margin-top: 18px;
}

.novetra-seen-title {
    display: block;

    margin-bottom: 11px;

    color: #443b49;

    font-size: 14px;
    font-weight: 700;
}

.novetra-seen-options {
    display: flex;

    gap: 9px;
}

.novetra-seen-pill {
    min-width: 66px;
    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    border:
        1px solid
        rgba(68, 53, 72, .12);

    border-radius: 10px;

    color: #514756;

    background: #f8f5f9;

    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 767px) {

    .novetra-video-preview,
    .novetra-video-overlay {
        min-height: 225px;
    }

    .novetra-video-icon {
        width: 66px;
        height: 66px;

        font-size: 21px;
    }

    .novetra-video-meta strong {
        font-size: 16px;
    }

    .novetra-rating-stars {
        gap: 7px;

        font-size: 26px;
    }

    .novetra-seen-pill {
        flex: 1;
    }
}

/*
 * =========================================================
 * END NOVETRA HERO VIDEO CARD V2
 * =========================================================
 */


/*
 * =========================================================
 * FIX HERO RATING STARS
 * Сбрасываем стили старых кнопок 1–5.
 * =========================================================
 */

.novetra-hero-card .novetra-rating-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.novetra-hero-card .novetra-rating-stars span,
.novetra-hero-card .novetra-rating-stars span:last-child,
.novetra-hero-card .novetra-rating-stars span:first-child {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;

    display: inline-block !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    color: #d8d1dc !important;

    font-size: 31px !important;
    line-height: 1 !important;

    text-align: center;

    transform: none !important;
}

.novetra-hero-card .novetra-rating-stars span.is-active {
    color: #ffc84a !important;
    background: transparent !important;
}

@media (max-width: 767px) {

    .novetra-hero-card .novetra-rating-stars span,
    .novetra-hero-card .novetra-rating-stars span:last-child,
    .novetra-hero-card .novetra-rating-stars span:first-child {
        font-size: 29px !important;
    }

}

/*
 * END FIX HERO RATING STARS
 */


/*
 * =========================================================
 * NOVETRA MOBILE HERO VIDEO WIDTH FIX
 * =========================================================
 */

@media (max-width: 767px) {

    .novetra-hero-card {
        padding-left: 14px;
        padding-right: 14px;
    }

    .novetra-video-preview {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        border-radius: 20px;
    }

    .novetra-video-overlay {
        width: 100%;
        max-width: 100%;

        padding-left: 16px;
        padding-right: 16px;
    }

    .novetra-video-meta {
        max-width: 260px;
    }

    .novetra-video-meta span {
        display: block;

        line-height: 1.45;
    }
}

/*
 * END NOVETRA MOBILE HERO VIDEO WIDTH FIX
 */


/*
 * =========================================================
 * MOBILE HERO CARD SPACING TUNE
 * =========================================================
 */

@media (max-width: 767px) {

    .novetra-hero-card {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .novetra-video-preview {
        width: calc(100% - 8px) !important;
        max-width: calc(100% - 8px) !important;

        min-height: 210px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

    .novetra-video-overlay {
        min-height: 210px !important;

        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .novetra-video-badge {
        left: 16px !important;
    }

    .novetra-rating-preview {
        padding-left: 4px;
        padding-right: 4px;
    }

    .novetra-seen-preview {
        margin-left: 4px;
        margin-right: 4px;
    }
}

/*
 * END MOBILE HERO CARD SPACING TUNE
 */

/*
 * =========================================================
 * NOVETRA HERO MOBILE WIDTH FINAL 20260809
 * =========================================================
 */

.novetra-hero-card {
    box-sizing: border-box !important;
}

@media (max-width: 767px) {

    .novetra-hero-card {
        width: calc(100% - 20px) !important;
        max-width: none !important;

        margin-left: auto !important;
        margin-right: auto !important;

        padding: 18px !important;

        box-sizing: border-box !important;
    }

    .novetra-video-preview {
        width: 100% !important;
        max-width: 100% !important;

        min-height: 210px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        box-sizing: border-box !important;
    }

    .novetra-video-overlay {
        width: 100% !important;
        min-height: 210px !important;

        box-sizing: border-box !important;
    }
}

/*
 * END NOVETRA HERO MOBILE WIDTH FINAL 20260809
 */

/*
 * =========================================================
 * NOVETRA SEEN BLOCK MOBILE FINAL
 * =========================================================
 */

@media (max-width: 767px) {

    .novetra-seen-preview {
        display: block;

        margin-top: 18px;

        padding: 18px;

        border-radius: 18px;
    }

    .novetra-seen-title {
        display: block;

        width: 100%;

        margin: 0 0 14px 0;

        font-size: 15px;
        line-height: 1.35;

        text-align: left;
    }

    .novetra-seen-options {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 10px;

        width: 100%;
    }

    .novetra-seen-pill {
        width: 100%;
        min-width: 0;
        min-height: 46px;

        padding: 0 12px;

        box-sizing: border-box;

        border-radius: 12px;

        font-size: 14px;
    }
}

/*
 * END NOVETRA SEEN BLOCK MOBILE FINAL
 */
