body {
    margin: 0;
    padding: 0;
}

.ms {
    display: flex;
}

/* #q-title {
    padding-left: 3em;
} */

/* Updated style for bullets */
#q-list {
    list-style: none;
    padding: 0;
}

#q-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Adjust this margin based on your preference */
}

.bullet {
    width: fit-content; /* Adjust bullet width based on content */
    height: fit-content; /* Adjust bullet height based on content */
    padding: 6px; /* Adjust padding based on your preference */
    background-color: #bfc2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 450;
    font-size: 16px;
    color: #1a1b22;
    margin-right: 12px; /* Adjust margin based on your preference */
}


.vc1 {
    overflow: hidden;
    border-radius: 50%;
    width: 375px;
    height: 375px;
    /* width: 500px;
    height: 500px; */
    display: none;
    justify-content: center;
    align-items: center;
}

.cn1,
.cn2 {
    width: 50%;
    padding: 2em 0;
}

.cn1 {
    background-color: #1a1b22;
    color: white;
    padding-left: 5em;
    padding-right: 3em;
}

.cn2 {
    background-color: #eff4fa;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* row-gap: 2em; */
    row-gap: 1em;
}

#q-list {
    margin-top: 20px;
    padding: 0;
    list-style-type: none;
}

#q-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.out-cont {
    background-color: white;
    padding: 1em;
    border-radius: 50%;
}

.overlay {
    /* display: none; */
    overflow: hidden;
    border-radius: 50%;
    width: 375px;
    height: 375px;
    background-color: #1a1b22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.white-text {
    color: white;
    text-align: center;
}

#videoLive {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.t-div {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media only screen and (max-width: 414px) {

    /* .cn1 {
        display: none;
    } */
    .ms {
        flex-direction: column-reverse;
    }

    .cn1,
    .cn2 {
        width: 100%;
    }

    .overlay,
    .vc1 {
        width: 285px;
        height: 285px;
    }
}

@media only screen and (min-width: 765px) and (max-width: 825px) {

    /* .cn1 {
        display: none;
    } */
    .ms {
        flex-direction: column-reverse;
    }

    .cn1,
    .cn2 {
        width: 100%;
    }

    /* .overlay, .vc1 {
        width: 285px;
        height: 285px;
    } */
}

/* red dot css */
.blinking {
    -webkit-animation: 1s blink ease infinite;
    -moz-animation: 1s blink ease infinite;
    -ms-animation: 1s blink ease infinite;
    -o-animation: 1s blink ease infinite;
    animation: 1s blink ease infinite;

}

@keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-moz-keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-ms-keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-o-keyframes blink {

    from,
    to {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}