main.demo {
    background: linear-gradient(180deg, rgba(210, 240, 255, 0.50) 0%, rgba(136, 152, 255, 0.20) 100%);

    &[demo-screen-index="6"] {
        background: none;
    }

    .demo-wrap {
        padding: 48px 0;
    }

    .cloud {
        position: absolute;
        transform: scale(0);
        opacity: 0;
        transition: all .3s ease;
        
        &.show {
            opacity: .6;
            transform: scale(1);
        }

        @media (max-width: 620px) {
            & {
                display: none;
            }
        }
    }

    .cloud.cloud-1 {
        width: 54px;
        left: 14%;
        top: 26%;
    }

    .cloud.cloud-2 {
        width: 43px;
        left: 71%;
        top: 32%;
    }

    .cloud.cloud-3 {
        width: 82px;
        left: 26%;
        top: 44%;

        &.show {
            transform: scaleX(-1);
        }
    }

    .cloud.cloud-4 {
        width: 80px;
        left: 86%;
        top: 44%;
        &.show {
            transform: scaleX(-1);
        }
    }

    .cloud.cloud-5 {
        width: 66px;
        left: 70%;
        top: 66%;
    }

    .cloud.cloud-6 {
        width: 43px;
        left: 8%;
        top: 77%;
    }

    .button {
        width: 100%;
        min-height: 52px;
        max-width: 350px;
        stroke: #3949F5;
        
        
        &:hover {
            stroke: #ffffff;
        }
    }

    .demo-header {
        width: calc(100% - 40px);
        max-width: 1240px;
        margin: 0 auto 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .demo-counter {
        display: inline-flex;
        align-items: flex-end;
        border-radius: 10px;
        background-color: #ffffff;
        min-height: 34px;
        padding: 8px 10px;
        column-gap: 2px;
        opacity: 0;
        transition: all .3s ease;

        &.show {
            opacity: 1;
        }

        .demo-counter-total {
            color: #0A122F;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.48px;
            line-height: 14px;
        }

        .demo-counter-current {
            color: #0A122F;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.64px;
            line-height: 16px;
        }

        .demo-counter-separator {
            color: #0A122F;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            letter-spacing: 0.48px;
        }

    }

    .demo-back {
        min-height: 22px;
        position: relative;
        z-index: 1;
        opacity: 0;
        transition: all .3s ease;

        &.show {
            opacity: 1;
        }
    }

    .demo-back a,
    .demo-back span {
        display: inline-flex;
        align-items: center;
        min-height: 22px;
        column-gap: 20px;
        color: #0A122F;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 135%;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        transition: all .3s ease;
    }

    .demo-back a .wetalk-icon,
    .demo-back span .wetalk-icon {
        transition: all .3s ease;
    }

    .demo-back a:hover .wetalk-icon,
    .demo-back span:hover .wetalk-icon {
        transform: translateX(-15px);
    }

    @media (max-width: 720px) {
        .demo-header {
            margin-bottom: 30px;
        }

        .demo-back a,
        .demo-back span {
            justify-content: space-between;
            display: flex;
        }

        .demo-back a:after,
        .demo-back span:after {
            content: "";
            display: block;
            width: 32px;
        }
    }

    .demo-first-image {
        width: 100%;
        height: 350px;
        max-width: 340px;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;

        @media (max-width: 620px) {
            & {
                margin-bottom: 0;
                height: 300px;
            }
        }
    }

    .demo-screens {
        width: calc(100% - 40px);
        max-width: 1240px;
        margin: 0 auto;
        position: relative;
    }

    .demo-screen {
        display: flex;
        flex-direction: column;
        transform: scale(0);
        opacity: 0;
        transition: all .3s ease;

        &.active {
            transform: scale(1);
            opacity: 1;
        }

        &:last-child {
            .button {
                background-color: #ffffff;
                color: #0A122F;
                text-align: center;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 135%;
                min-height: 58px;
                border-radius: 20px;

                &:hover {
                   background-color: #0A122F;
                    color: #ffffff; 
                }
            }
        }
    }

    .demo-first-title {
        color: #0A122F;
        text-align: center;
        text-shadow: 0 1px 2px rgba(104, 104, 104, 0.45);
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: 125%;
        letter-spacing: -0.36px;
        max-width: 370px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .demo-first-description {
        color: #0A122F;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        letter-spacing: 0.18px;
        max-width: 370px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }

    .demo-first {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .demo-first-button {
        width: 100%;
        max-width: 350px;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .demo-video-block {
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        

        video {
            border-radius: 20px;
            border: 2px solid #5775CD;
            box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: flex;
        }

        .video-timeline {
            height: 6px;
            width: calc(100% - 40px);
            display: block;
            background-color: #A7AEFF;
            border-radius: 10px;
            margin: 0 auto;
            top: 10px;
            position: absolute;
            left: 0;
            right: 0;
            
            

            &:before {
                content: "";
                display: block;
                width: var(--percent);
                height: 100%;
                border-radius: 10px;
                background-color: #3949F5;
                position: absolute;
                top: 0;
                left: 0;
                transition: width .3s linear;
            }
        }

        @media (max-width: 620px) {
            & {
                height: 535px;
            }
        }
    }

    .demo-video-buttons {
        max-width: 700px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 12px;
        row-gap: 12px;
        margin-top: clamp(20px, 4vw, 40px);
        

        button {
            width: auto;
            flex: 1;
            max-width: 350px;
            min-height: 52px;
        }
    }

    .demo-card-wrap {
        border-radius: 20px;
        border: 2px solid #5775CD;
        background-color: #E4EAFC;
        box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        padding: clamp(40px, 8vw, 96px) 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        min-height: 460px;

        @media (max-width: 620px) {
            min-height: 535px;
            padding: 0;
        }
    }

    .demo-card-block {
        @media (max-width: 620px) {
            width: 100%;
        }

        &.block {
            pointer-events: none;
        }
    }

    .demo-card-video {
        width: clamp(77px, 6vw, 120px);
        height: clamp(77px, 6vw, 120px);
        border-radius: 50%;
        position: absolute;
        top: clamp(14px, 4vw, 20px);
        right: clamp(14px, 4vw, 20px);

        .video-timeline {
            position: absolute;
            top: -4px;
            left: -4px;
            width: calc(100% + 8px);
            height: calc(100% + 8px);
            transform: rotate(-90deg);
            transition: all 0.3s linear;

            circle {
                &.video-timeline-background {
                    stroke: #A7AEFF;
                    fill: none;
                }
                
                &.video-timeline-progress {
                    stroke: #3949F5;
                    fill: none;
                    transition: stroke-dashoffset 0.3s linear;
                }
            }

            @media (max-width: 620px) {
                & {
                    top: -2px;
                    left: -2px;
                    width: calc(100% + 4px);
                    height: calc(100% + 4px);
                }
            }
        }

        video {
            display: flex;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            position: relative;
            z-index: 1;
        }
    }

    .demo-card-button {
        width: 100%;
        max-width: 700px;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;

        &.demo-card-button--next {
            margin-top: 20px;
        }
    }

    .demo-card--sentence {
        color: #0A122F;
        text-shadow: 0 1px 2px rgba(104, 104, 104, 0.45);
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        text-align: center;
        letter-spacing: -0.22px;

        @media (max-width: 620px) {
            width: calc(100% - 52px);margin: 0 auto;
        }
    }

    .demo-card--options {
        display: grid;
        column-gap: 10px;
        row-gap: 10px;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        align-items: center;
        margin-top: clamp(40px, 4vw, 50px);
        max-width: 314px;
		-webkit-tap-highlight-color: transparent;
        
        

        .demo-card--option {
            flex: 1;

            label.option {
                display: block;
                width: 100%;
                
                input[type="radio"] {
                    display: none;
                }

                .option-label {
                    color: #0A122F;
                    text-align: center;
                    font-size: clamp(12px, 3vw, 14px);
                    font-style: normal;
                    font-weight: 500;
                    line-height: 130%;
                    letter-spacing: 0.14px;
                    display: inline-flex;
                    align-items: center;
                    border: 1px solid transparent;
                    padding: 14px 40px 14px 16px;
                    border-radius: 15px;
                    background-color: #F5F5F9;
                    box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
                    min-height: 88px;
                    width: 100%;
                    transition: all .3s ease;

                    @media (max-width: 620px) {
                        box-shadow: none;
                    }
                }

                &:hover {
                    .option-label {
                        color: #3949f5;
                    }
                }

                input[type="radio"]:checked ~ .option-label {
                    border-color: #3949F5;
                }

                &.inactive {
                    pointer-events: none;
                }

                &.correct {
                    .option-label {
                        background-color: #3DA26C;
                        border-color: #3DA26C;
                        color: #ffffff;
                    }

                    input[type="radio"]:checked ~ .option-label {
                        background-color: #3DA26C;
                        border-color: #3DA26C;
                        color: #ffffff;
                    }

                    &~wt-translation-trigger {
                        fill: #ffffff;

                        .wetalk-icon {
                            border-color: #ffffff;
                        }
                    }
                }

                &.incorrect {
                    .option-label {
                        background-color: #EC5736;
                        border-color: #EC5736;
                        color: #ffffff;
                    }

                    input[type="radio"]:checked ~ .option-label {
                        background-color: #EC5736;
                        border-color: #EC5736;
                        color: #ffffff;
                    }

                    &~wt-translation-trigger {
                        fill: #ffffff;

                        .wetalk-icon {
                            border-color: #ffffff;
                        }
                    }
                }

                &.inactive {
                    pointer-events: none;
                }
            }

            wt-translation-trigger {
                right: 0;
                margin-left: auto;
                position: absolute;
                height: 100%;
                width: 30px;
                justify-content: flex-end;
                padding-right: 16px;
                border: none;
                box-sizing: border-box;
                -webkit-tap-highlight-color: transparent;
                user-select: none;
                -ms-user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;

                .wetalk-icon {
                    border: solid 1px #878CA1;
                    width: 14px;
                    height: 14px;
                    border-radius: 4px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                }
            }
        }

        @media (max-width: 620px) {

            & {
                border-radius: 20px 20px;
                background-color: #ffffff;
                box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
                width: 100%;
                max-width: none;
                padding: 20px 15px 40px;
            }
        }
    }


    .demo-pronunciation-wrap {
        border-radius: 20px;
        border: 2px solid #5775CD;
        background-color: #E4EAFC;
        box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        padding: clamp(40px, 8vw, 96px) 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        min-height: 460px;

        @media (max-width: 620px) {
            min-height: 535px;
            padding: 0;
        }
    }

    .demo-pronunciation-video {
        width: clamp(77px, 6vw, 120px);
        height: clamp(77px, 6vw, 120px);
        border-radius: 50%;
        position: absolute;
        top: clamp(14px, 4vw, 20px);
        right: clamp(14px, 4vw, 20px);
        

        .video-timeline {
            position: absolute;
            top: -4px;
            left: -4px;
            width: calc(100% + 8px);
            height: calc(100% + 8px);
            transform: rotate(-90deg);
            transition: all 0.3s linear;

            circle {
                &.video-timeline-background {
                    stroke: #A7AEFF;
                    fill: none;
                }
                
                &.video-timeline-progress {
                    stroke: #3949F5;
                    fill: none;
                    transition: stroke-dashoffset 0.3s linear;
                }
            }

            @media (max-width: 620px) {
                & {
                    top: -2px;
                    left: -2px;
                    width: calc(100% + 4px);
                    height: calc(100% + 4px);
                }
            }
        }

        video {
            display: flex;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            position: relative;
            z-index: 1;
        }
    }

    .demo-pronunciation--audio {
        display: flex;

        .play-audio {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: solid 2px #3949F5;
            fill: #3949F5;
            cursor: pointer;

            .wetalk-icon--speaker-pronunciation {
                transition: all .3s ease;
            }

            &:hover {
                .wetalk-icon--speaker-pronunciation {
                    transform: scale(.8);
                }
            }
        }
    }

    .demo-pronunciation-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

        &.block {
            pointer-events: none;
        }
    }
    
    .demo-pronunciation--sentence-wrap {
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.50);
        width: 100%;
        max-width: 345px;
        min-height: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        position: relative;
        padding: 10px 18px;
        
        
        
        

        .demo-pronunciation--sentence-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .target-translation {
            color: #ffffff;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            letter-spacing: 0.56px;
            padding: 6px 8px;
            background-color: #0A122F;
            border-radius: 4px;
            position: absolute;
            z-index: 1;
            left: 50%;
            transform: translateX(-50%) translateY(var(--translateY, 10px));
            bottom: calc(100% + 6px);
            min-height: 30px;
            min-width: 40px;
            text-align: center;
            box-sizing: border-box;
            opacity: var(--opacity, 0);
            visibility: var(--visibility, hidden);
            transition: all .3s ease;
            white-space: nowrap;
            pointer-events: none;


            &:before {
                content: "";
                width: 20px;
                height: 20px;
                background-color: inherit;
                display: block;
                position: absolute;
                border-radius: 2px;
                transform: rotate(45deg) translateX(-50%);
                z-index: -1;
                left: 50%;
                bottom: -10px;
            }
        }

        .trigger-translation {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            cursor: pointer;

            .wetalk-icon {
                width: 16px;
                height: 16px;
                border-radius: 2px;
                background-color: rgb(57 73 245 / 40%);
                fill: #ffffff;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 5px 5px;
                transition: background-color .3s ease;
            }

            &:hover {
                .wetalk-icon {
                    background-color: rgb(57 73 245 / 60%);
                }

                & + .target-translation {
                    --translateY: 0;
                    --opacity: 1;
                    --visibility: visible;
                }
            }
        }

        @media (max-width: 620px) {

            & {
                width: calc(100% - 30px);
            }
            
        }
    }

    .pronunciation-details-body {
        border-radius: 12px;
        box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
        background-color: #ffffff;
        position: absolute;
        width: 100%;
        left: 0;
        top: calc(100% + 4px);
        padding: 0px 28px 16px;
        max-height: 210px;
        overflow: auto;
        z-index: 1;
        display: none;
    }

    .pronunciation-details-title {
        color: #878CA1;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .pronunciation-details-titles {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 12px;
        border-bottom: solid 1px rgb(135 140 161 / 30%);
        padding: 18px 0 12px;
        position: sticky;
        top: 0;
        background-color: #ffffff;
        margin-bottom: 6px;
    }

    .pronunciation-details-result {
        color: #0A122F;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        letter-spacing: 0.14px;
    }

    .pronunciation-details-result.incorrect {
        color: #FF7A6D;
    }

    .pronunciation-details-sound {
        color: #0A122F;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 135%;
    }

    .pronunciation-details-sound.incorrect {
        color: #FF7A6D;
    }

    .pronunciation-details-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 12px;
        padding: 10px 0;
    }

    .pronunciation-details-item:not(:last-child) {
        border-bottom: solid 1px rgb(135 140 161 / 10%);
    }

    .pronunciation-details-ipa {
        color: #0A122F;
        text-align: center;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        letter-spacing: -0.22px;
        display: none;
    }

    .pronunciation-details-ipa i {
        font-style: normal;
    }

    .pronunciation-details-ipa .incorrect {
        color: #F26B4D;
    }

    .pronunciation-details-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 20px;
        fill: #A7AEFF;
        cursor: pointer;

        i {
            transition: transform .3s ease;
        }

        &.opened {
            i {
                transform: rotateX(180deg);
            }
        }
    }

    .pronunciation-details {
        margin-top: auto;
        width: 100%;
    }

    .demo-pronunciation--body {
        background-image: url('../../../assets/images/pronunciation-wave.png');
        border-radius: 20px;
        background-color: #ffffff;
        box-shadow: 0 0 1px 0 #A7AEFF, 0 2px 15px 0 rgba(167, 174, 255, 0.20);
        width: 100%;
        max-width: 420px;
        margin-top: 20px;
        min-height: 172px;
        padding: 24px 24px;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        transition: all .3s ease;

        &.demo-pronunciation--body-finished {
            background-image: none;
            min-height: auto;
        }

        &.demo-pronunciation--body-proccess {
            pointer-events: none;
            filter: blur(3px);
            -webkit-filter: blur(3px);
        }

        @media (max-width: 620px) {
            & {
                margin-top: 40px;
                min-height: 260px;
                padding: 35px 24px;

                &.demo-pronunciation--body-finished {
                    padding: 18px 15px;
                    min-height: 260px;
                }
            }
        }
    }

    .demo-pronunciation--sentence-value {
        color: #5775CD;
        text-align: center;
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%;
        letter-spacing: -0.22px;
    }

    .demo-pronunciation--record-title {
        color: #878CA1;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
    }

    .demo-pronunciation--record-button {
        display: flex;
        justify-content: center;
        margin-top: 20px;

        .pronunciation-record {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            background-color: #3949F5;
            border-radius: 50%;
            fill: #ffffff;
            cursor: pointer;
            transition: all .3s ease;
            position: relative;
            z-index: 1;
            -webkit-tap-highlight-color: transparent;
            user-select: none;
            -ms-user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;

            .wetalk-icon--mic-pronunciation {
                transition: all .3s ease;
                border-radius: 4px;
            }

            &:before {
                content: "";
                background-color: rgba(255, 55, 0, 0.40);
                animation: mic_pronunciation_1 1s ease infinite;
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: -2;
                opacity: 0;
            }

            &:after {
                content: "";
                background-color: rgba(255, 55, 0, 0.20);
                animation: mic_pronunciation_2 1s ease infinite;
                display: block;
                width: 100%;
                height: 100%;
                border-radius: 50%;
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: -2;
                opacity: 0;
            }

            &:hover {
                .wetalk-icon--mic-pronunciation {
                    transform: scale(.8);
                }
            }

            &.recording {
                background-color: #F15937;

                .wetalk-icon--mic-pronunciation {
                    width: 16px;
                    height: 16px;
                    background-color: #ffffff;
                }

                &:before {
                    opacity: 1;
                }

                &:after {
                    opacity: 1;
                }
            }

            @media (max-width: 620px) {
                & {
                    width: 100px;
                    height: 100px;
                }
            }
        }
    }

    .demo-pronunciation--result {
        border-radius: 12px;
        padding: 16px 20px;
        display: grid;
        grid-template-columns: 1fr auto;

        &.pronunciation-average {
            background-color: rgba(254, 164, 24, 0.07);
        }

        &.pronunciation-high {
            background-color: rgba(36, 165, 129, 0.07);
        }

        &.pronunciation-low {
            background-color: rgba(242, 107, 77, 0.07);
        }


        .demo-pronunciation--result-rating {
            color: #3B4158;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 135%;
            display: flex;
            align-items: center;
            column-gap: 12px;
            text-transform: capitalize;
        }

        .demo-pronunciation--result-percent {
            color: #0A122F;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 135%;
            grid-row: 1/3;
            grid-column: 2/3;
            position: relative;
            width: 82px;
            height: 82px;
            display: flex;
            align-items: center;
            justify-content: center;
            
            

            &:before {
                content: "";
                width: 100%;
                height: 100%;
                display: flex;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                border: solid 12px #ffffff;
                border-radius: 50%;
                box-sizing: border-box;
            }
        }

        .demo-pronunciation--result-text {
            color: #3B4158;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            display: flex;
            align-items: flex-end;
            max-width: 140px;
        }

        @media (max-width: 620px) {
            & {
                min-height: 150px;
            }
        }
        
    }

    .demo-pronunciation--try-again {
        .try-again {
            border-radius: 50px;
            background-color: rgba(167, 174, 255, 0.10);
            color: #5775CD;
            fill: #5775CD;
            text-align: center;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 120%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            margin-top: 20px;
            column-gap: 20px;
            cursor: pointer;
        }
    }

    .demo-pronunciation-buttons {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    
    .demo-wrap--extern {
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        

        .demo-screens {
            width: 100%;
            height: 100%;
        }

        .demo-screen {
            height: 100%;
        }

        .demo-iframe-wrap {
            height: 100%;
        }

        .room-layout {
            padding-top: 0;
        }
    }
}

@keyframes mic_pronunciation_1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes mic_pronunciation_2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}


wt-translation-trigger .translation-pointer {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.demo-card--sentence wt-translation-trigger .translation-pointer {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.demo-card--options wt-translation-trigger .translation-pointer {
    margin-top: 20px;
    margin-left: 1px;
    left: 50%;
    transform: translateX(-50%);
}