        body {
            margin: 0px;
            padding: 0px;
            font-family: 'Quicksand-Regular';
        }

        .cs-width-for-html {
			overflow: hidden;
			border: none;
            height: 398px;
            width: 100%;
		}

        .homeButtonStyle {
            width: 30px;
            height: 34px; 
        }

        #projectTitleName {
            font-family: Quicksand-Regular;
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.5;
            background: linear-gradient(90deg, #02c0fa, #0065eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            width: 65%;
        }

        .laptop {
            border-radius: 0px;
            border-style: solid;
            border-color: #fdfdfd;
            /* border-width: 15px 15px 20px 15px; */
            /* outline: 0.5px solid lightgray; */
            /* Adjust stroke width and color */
            outline-offset: -1px;
            margin: 12px 12px 17px 12px;
            position: relative;
        }

        .laptop-card {
            border-radius: 17px;
            border: 1px solid lightgray !important;
        }

        .laptop:before {
            content: '';
            display: block;
            position: absolute;
            width: 150px;
            height: 14px;
            bottom: -31px;
            left: 49%;
            transform: translate(-50%);
            background: white;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            z-index: 1;
        }

        .laptop:after {
            left: -4%;
            bottom: -44px;
            content: '';
            display: block;
            position: absolute;
            width: 108%;
            height: 23px;
            background: #f5f5f5;
            border: 0.5px solid #f5f5f5;
            border-radius: 0px 0px 10px 10px;
            outline: 1px solid lightgray;
            outline-offset: -1px;
            margin: 10px 0 0 0px;
        }

        #imageSrc {
            width: 100%;
            height: 398px;
        }

        #iframeTag {
            width: 100%;
            height: 680px;
        }

        .cs-demo-button {
            display: inline-block;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background: -webkit-linear-gradient(90deg, #02c0fa, #0065eb);
            background: -o-linear-gradient(90deg, #02c0fa, #0065eb);
            background: -moz-linear-gradient(90deg, #02c0fa, #0065eb);
            background: linear-gradient(90deg, #02c0fa, #0065eb);
            padding: 4px 20px;
            border-radius: 20px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            width: 140px;
            height: 32px;
            text-align: center;
            font-family: 'Quicksand-Regular';
        }

        .cs-enlarge-view {
            display: inline-block;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background: -webkit-linear-gradient(90deg, #02c0fa, #0065eb);
            background: -o-linear-gradient(90deg, #02c0fa, #0065eb);
            background: -moz-linear-gradient(90deg, #02c0fa, #0065eb);
            background: linear-gradient(90deg, #02c0fa, #0065eb);
            padding: 4px 20px;
            border-radius: 20px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 140px;
            height: 32px;
            text-align: center;
            font-family: 'Quicksand-Regular';
        }

        #currentPageTitle {
            font-size: 1.5rem;
            font-weight: 800;
            font-family: Quicksand-Regular;
            color: #161513;
            margin-bottom: 0 !important;
        }

        #idCallOutMessage {
            line-height: 23px;
            font-weight: 600;
            font-size: 0.94rem;
            font-family: Quicksand-Regular;
        }

        .end-icon {
            width: 30px;
            height: 34px;
            background-color: #ff7c74;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            display: inline-flex; /* Change from inline-block */
            align-items: center;  /* Center icon properly */
            justify-content: center;
            font-family: Quicksand-Regular;
            text-align: center;
            text-decoration: none;
            transition: all 250ms;
            border: 0;
            font-size: 16px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
        }

        @font-face {
            font-family: Quicksand-Regular;
            font-style: normal;
            font-weight: 400;
            src: url(../fonts/webfonts/Quicksand/static/Quicksand-SemiBold.ttf) format('truetype')
        }

        .fade-in-image {
            animation: fadeIn 3s;
            -webkit-animation: fadeIn 3s;
            -moz-animation: fadeIn 3s;
            -o-animation: fadeIn 3s;
            -ms-animation: fadeIn 3s;
        }


        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @-moz-keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @-webkit-keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @-o-keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @-ms-keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        .slide-in-image {
            animation: slide 2s;
            -webkit-animation: slide 2s;
        }

        @-webkit-keyframes slide {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        @keyframes slide {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        .slide-left-in-image {
            animation: slideLeft 2s;
            -webkit-animation: slideLeft 2s;
        }

        @-webkit-keyframes slideLeft {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        @keyframes slideLeft {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(0%);
            }
        }

        .frameContent {
            position: fixed;
            height: 100% !important;
            top: 80px;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: auto;
            overflow-y: scroll;
        }

        .scroll {
            overflow: auto;
            height: 45px;
        }

        #stopRec {
            padding: 10px;
        }

        #startRec {
            padding: 10px;
        }

        .cs-dropdown .cs-dropdown-menu,
        .cs-dropdown .cs-dropdown-panel {
            border-radius: 4px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
            overflow: visible;
            padding: 0;
            margin: 0;
            max-width: 800px;
            list-style: none;
            background: #fff;
            border: 1px solid #ddd;
            min-width: 160px;
        }

        .cs-lt-moreactions.cs-dropdown ul.cs-dropdown-menu li {
            padding: 10px;
            cursor: pointer;
        }

        .cs-dropdown .cs-dropdown-menu li {
            list-style: none;
            padding: 0;
            margin: 0;
            line-height: 18px;
        }

        ul.cs-dropdown-menu li span {
            line-height: 100%;
            margin-bottom: 4px;
            font-size: 14px;
        }

        /* .see-more {
            text-decoration: underline;
            cursor: pointer;

        }

        .see-more:hover {
            text-decoration: underline;
            font-weight: 700;
        } */

        .audio_text {
            width: 25px;
        }

        .fontDecrease {
            font-size: 25px;
            right: 60px;
            top: 10px;
            position: absolute;
        }

        .fontIncrease {
            font-size: 25px;
            right: 88px;
            top: 10px;
            position: absolute;
        }

        /* Common css */

        .cs-ant-modalLayer {
            width: 100%;
            height: 100%;
            z-index: 100007;
            position: fixed;
            background: url(https://release.chainsys.com/appconnect/images/loading-animation_with-c.gif) center no-repeat rgba(255, 255, 255, .8);
            visibility: hidden;
            left: 0;
            top: 0;
        }

        .cs-lmar {
            margin-left: 10px;
        }

        .cs-hide {
            display: none;
        }

        .cs-tmar {
            margin-top: 10px;
        }

        .cs-pad {
            padding: 10px;
        }

        .cs-pa {
            position: absolute;
        }

        .ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close:before {
            content: "\ac064";
        }

        button,
        select {
            text-transform: none;
        }

        .ui-widget-overlay {
            opacity: .7;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 100000;
            width: 100%;
            height: 100%;
            background: #222;
        }

        .cs-ui-dialog-resize {
            min-height: 338px !important;
        }

        .ui-dialog {
            position: absolute;
            z-index: 100001;
            width: 600px;
            background: #fff;
            -webkit-box-shadow: 0 0 10px #555;
            box-shadow: 0 0 10px #555;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
            -moz-background-clip: padding;
            -webkit-background-clip: padding-box;
            border: 1px solid #fafafb;
            background-clip: padding-box;
        }

        .ui-dialog .ui-dialog-titlebar {
            border-bottom: #d9dcde solid 1px;
            padding: 10px;
            -webkit-border-radius: 4px 4px 0 0;
            -moz-border-radius: 4px 4px 0 0;
            border-radius: 4px 4px 0 0;
            -moz-background-clip: padding;
            -webkit-background-clip: padding-box;
            background-clip: padding-box;
            margin-bottom: 10px;
        }

        .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
            font-size: 16px;
        }

        .ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
            position: absolute;
            top: -14px;
            right: -14px;
            font-size: 11px;
            border: none;
            background: rgba(33, 33, 33, .8);
            padding: 5px 7px;
            color: #fff;
            text-indent: 1px;
            width: 27px;
            white-space: nowrap;
            overflow: hidden;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
            -moz-background-clip: padding;
            -webkit-background-clip: padding-box;
            background-clip: padding-box;
            font-family: cs-icons !important;
        }

        .cs-cur {
            cursor: pointer;
        }

        .cs-pull-right {
            float: right;
        }

        .cs-scroll-2 {
            padding-right: 8px
        }

        .cs-scroll-2:hover .ps-scrollbar-x-rail,
        .cs-scroll-2:hover .ps-scrollbar-y-rail {
            border: 1px solid #ccc !important;
            background: #eee !important;
        }

        /* Field Level Callout Message css */

        .field-callout-note {
            border-radius: 10px 10px 0 0;
            padding: 0 10px;
            font-size: 12px;
        }

        .field-callout-arrow {
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 15px 10px 0px;
            border-color: transparent rgb(255, 255, 255) transparent transparent;
            margin-left: .25em;
            display: inline-block;

        }

        .field-callout-elm {
            max-width: 350px;
            min-width: 200px;
            min-height: 50px;
            z-index: 2147483647;
            border-radius: 10px;
            background-color: white;
            box-shadow: rgb(181, 174, 174) 0px 0px 6px;
            position: absolute;
        }

        .cs-note-blue-theme {
            border: 2px solid;
            color: wheat;
            background: #55A8F2;
        }

        .cs-note-black-theme {
            border: 2px solid gray;
            color: wheat;
            background: gray;
        }

        .cs-note-white-theme {
            border-bottom: 2px solid #2D2D2D;
            background: lightgray;
        }

        .cs-elm-blue-theme {
            border: 2px solid #55A8F2;
            border-radius: 10px;
        }

        .cs-elm-black-theme {
            border: 2px solid gray;
            border-radius: 14px;
        }

        .cs-elm-white-theme {
            border: 2px solid #2D2D2D;
            border-radius: 10px;
        }

        .cs-arrow-blue-theme {
            filter: drop-shadow(-4px 0px 0 #55A8F2);
        }

        .cs-arrow-black-theme {
            filter: drop-shadow(-4px 0px 0 gray);
        }

        .cs-arrow-white-theme {
            filter: drop-shadow(-4px 0px 0 #2D2D2D);
        }

        .cs-field-level-callout-close {
            margin-top: 3px;
        }

        /* Introscreen css */

        .headingsize {
            font-size: 25px !important;
        }

        .leftPrevious {
            background-color: white;
            border-radius: 100px;
            box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset, rgba(44, 187, 99, .15) 0 1px 2px, rgba(44, 187, 99, .15) 0 2px 4px, rgba(44, 187, 99, .15) 0 4px 8px, rgba(44, 187, 99, .15) 0 8px 16px, rgba(44, 187, 99, .15) 0 16px 32px;
            color: black;
            cursor: pointer;
            display: inline-block;
            padding: 7px 12px;
            text-align: center;
            text-decoration: none;
            transition: all 250ms;
            border: 0;
            font-size: 16px;
            user-select: none;
            -webkit-user-select: none;
            touch-action: manipulation;
            margin: 15px;
            margin-bottom: 110px;
        }

        /* End Screen Css */

        .cs-endScreenPage {
            height: -webkit-fill-available;
        }

        .cs-thanksScreenText {
            font-size: 100px;
            font-weight: 700;
            font-family: Quicksand-Regular;
            color: rgb(255, 255, 255);
        }

        .cs-textPageBottom {
            font-size: 33px;
            font-weight: 300;
            padding-left: 15%;
            font-family: Quicksand-Regular;
            color: rgb(255, 255, 255);
        }

        /* Home Screen Css */

        .cs-intro-image {
            height: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 78%;
        }

        .cs-mainPageparent {
            height: 100%;
            width: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            overflow: auto;
        }

        .cs-rightSideParent {
            padding-top: 25px;
        }

        #welcomeText {
            font-size: 30px;
            padding-top: 5px;
            padding-bottom: 10px;
            padding-left: 2px;
            padding-right: 2px;
        }

        #interactiveDemoTitle {
            font-size: 30px;
            font-weight: 600;
            padding-bottom: 0px;
            padding-top: 5px;
            color: rgb(0, 37, 83);
            font-family: Quicksand-Regular;
            /* margin-top: 10px; */
            width: 98%;
        }

        #interactiveDemoDescription {
            font-size: 18px;
            font-weight: 600;
            font-family: Quicksand-Regular;
            color: rgb(0, 37, 83);
            max-width: 90%;
            max-height: 65px;
            overflow: auto;
            padding-bottom: 5px;
            padding-right: 10px;
            min-height: 40px;
        }

        .getstarted {
            cursor: pointer;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 25px;
            font-family: Quicksand-Regular;
            text-align: left;
            color: #fff;
            border-radius: 50px;
            background-color: #99217c;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 10px;
            padding-right: 5px;
        }

        .getStarted-span {
            border: 1px solid #fff;
            border-radius: 50px;
            padding-top: 5px;
            padding-left: 10px;
            padding-right: 10px;
            padding-bottom: 5px;
            margin-left: 15px;
        }

        /* Header  */

        #header {
            height: 10%;
            padding-left: 30px;
            background: #3a3632;
        }

        #footer {
            height: 40px;
            background: #3a3632;
        }

        .titleEditIcon {
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-left: 4px;
            margin-right: 3px;
            height: 20px;
            padding: 19px;
            border-radius: 32px;
            width: 20px;
            /* background-color: rgba(110, 96, 96, 0.43); */
        }

        /* .titleEditIcon:hover{
            background-color: black;
        } */

        /* Light Box  */

        .closeLightBox {
            color: white;
            font-size: 30px;
            position: absolute;
            top: 10px;
            right: 25px;
            cursor: pointer;
        }

        .lightbox {
            display: none;
            position: fixed;
            z-index: 999;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.9);
            text-align: center;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .lightbox-content {
            margin-top: 5%;
            max-width: 85%;
            max-height: 80%;
        }

        /* Mobile Responsive */

        @media screen and (max-width: 767px) {
            .cs-leftSideParent {
                height: 272px !important;
            }
        }

        @media screen and (max-width: 768px) {

            .cs-mainPageparent{
                padding-top: 0% !important;
            }

            .cs-rightSideParent {
                padding-top: 0px !important;
            }

            .cs-intro-image {
                height: 100% !important;
                background-size: unset !important;
            }

            #currentPageTitle{
                font-size : 1.3rem !important
            }

            #welcomeText,
            #demoTitleForTour {
                font-size: 18px !important;
            }

            #interactiveDemoTitle {
                font-size: 17px !important;
                padding-top: 0px !important;
            }

            #interactiveDemoDescription {
                font-size: 14px !important;
            }

            .getstarted {
                font-size: 18px;
                padding: 7px 15px;
                text-align: center;
                display: inline-block;
            }

            #idCallOutMessage {
                max-height: 100px !important;
            }

            #projectTitleName {
                text-align: center !important;
                width: unset !important;
            }

            .cs-enlarge-view {
                margin: 0 !important;
                padding: 3px 20px !important;
            }

            .cs-demo-button {
                padding: 7px 7px !important;
                width: 33px !important;
                border-radius: 46px !important;
            }

            .cs-thanksScreenText {
                font-size: 70px !important;
            }

            .cs-textPageBottom {
                padding-left: 0px !important;
            }

            #imageSrc {
                width: 100% !important;
                height: auto !important;
            }

            .cs-width-for-html {
                height: auto;
            }

            #iframeTag {
                width: 100% !important;
                height: auto !important;
                min-height: 290px !important;
            }

            .cs-getStarted-div{
                padding-top:5px !important;

            }

            #fieldLevelCalloutParent{
                display: none !important;
            }

        }



        @media screen and (min-width: 568px) and (max-width: 932px) and (orientation: landscape) {


            .cs-intro-image {
                height: 100% !important;
                background-size: unset !important;
            }

            .cs-rightSideParent {
                padding-top: 0px !important;
            }

            .cs-demo-button {
                width: 22% !important;
                font-size: 11px !important;
                padding: 6px 11px !important;
                height: 28px !important;
            }

            .cs-enlarge-view {
                font-size: 11px !important;
                padding: 6px 13px !important;
                width: 22% !important;
                height: 28px !important;
            }

            .icon-cs-search {
                font-size: 11px !important;
            }

            #idCallOutMessage {
                line-height: 16px;
                font-weight: 400;
                font-size: 13px;
            }

        }

        @media screen and (min-width: 0px) and (max-width: 320px) {
            #idCallOutMessage {
                max-height: 210px !important;
            }

            .cs-leftSideParent {
                height: 150px !important;
            }
        }

        @media screen and (min-width: 320px) and (max-width: 425px) {
            #idCallOutMessage {
                max-height: 210px !important;
            }

            .cs-leftSideParent {
                height: 350px !important;
            }
        }

        @media screen and (min-width: 426px) and (max-width: 604px) {
            #idCallOutMessage {
                max-height: 170px !important;
            }

            .cs-leftSideParent {
                height: 450px !important;
            }
        }

        @media screen and (min-width: 767px) and (max-width: 996px) {

            .cs-intro-image {
                height: 100% !important;
                /* background-size: unset !important; */
                background-position-y: center !important;
            }

            .cs-rightSideParent {
                padding-top: 0px !important;
                padding-left: 10px !important;
            }

            #welcomeText,
            #demoTitleForTour {
                font-size: 18px !important;
            }

            #interactiveDemoTitle {
                font-size: 17px !important;
                padding-top: 0px !important;
            }

            #interactiveDemoDescription {
                font-size: 14px !important;
            }


            #idCallOutMessage {
                max-height: 170px !important;
            }
        }

        @media screen and (min-width:1441px) {

            #imageSrc {
                width: 100% !important;
                height: 550px !important;
            }

            #iframeTag {
                width: 100% !important;
                height: 550px !important;
            }

            .cs-width-for-html {
                height: 550px !important;
            }

        }