        @import url('https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

        @import url('https://fonts.googleapis.com/css2?family=Potta+One&display=swap');

        @import url('https://fonts.googleapis.com/css2?family=Maname&display=swap');

        @import url('https://fonts.googleapis.com/css2?family=Amaranth&display=swap');

        .light {
            /* primary */

            --primary-color: whitesmoke;
            --secondary-color: black;

            /* bottom-nav */

            --bottom-nav-bg: whitesmoke;
            --bottom-nav-ds-1: rgb(181, 177, 177);
            --bottom-nav-ds-2: rgb(186, 179, 179);


            --theme-overlay-bg: whitesmoke;
            --theme-select-brd: rgb(255, 0, 0);


            /* accounts */

            --button-bg-color: rgb(33, 31, 31);
            --button-text-color:rgb(0, 0, 0);
            --button-shadow-col:rgb(102, 97, 97);


            --form-heading-color:white;
            --label-color:rgba(255, 255, 255, 0.902);
            --input-background-color:rgb(23, 23, 63);
            --input-color:white;

            --eye-color:white;

            --submit-color:black;
            --submit-background-color:rgb(255, 255, 255);

            --h1-color: rgb(108, 37, 224);





        }

        .dark {
            /* primary */

            --primary-color: #0F1137;
            --secondary-color: white;


            /* bottom-nav */

            --bottom-nav-bg: #0F1137;
            --bottom-nav-ds-1: rgb(0, 0, 0);
            --bottom-nav-ds-2: rgb(0, 0, 0);

            --theme-overlay-bg: #0F1137;
            --theme-select-brd: rgb(255, 0, 0);


            /* accounts */

            --button-bg-color: rgb(255, 255, 255);
            --button-text-color:white;
            --button-shadow-col:grey;

            --form-heading-color:black;
            --label-color:rgba(4, 4, 4, 0.902);
            --input-background-color:rgb(208, 208, 216);
            --input-color:black;

            --eye-color:rgb(44,45,92);
            
            --submit-color:white;
            --submit-background-color:rgb(44,45,92);

           --h1-color: rgb(178, 0, 232);


        }



        .texture {
            /* primary */

            --primary-color: #1c212d;
            --secondary-color: white;


            /* bottom-nav */

            --bottom-nav-bg: #1c212d;
            --bottom-nav-ds-1: rgb(0, 0, 0);
            --bottom-nav-ds-2: rgb(0, 0, 0);

            --theme-overlay-bg: #1c212d;
            --theme-select-brd: rgb(255, 0, 0);



        }



        body:fullscreen,
        body::backdrop {
            background: var(--primary-color);
            padding-top: 20%;
        }

        body:fullscreen button.fullscrn {
            display: none;
        }

        body:not(:fullscreen) button.fullscrn {
            display: block;
        }

        body:fullscreen button.exitfullscrn {
            display: block;
        }

        body:not(:fullscreen) button.exitfullscrn {
            display: none;
        }

        body:fullscreen #techstack-grid-content {
            bottom: 8%;
            height: 90dvh;
        }

        body:fullscreen #tech-group{
            height: 48dvh;
            overflow-y:scroll;
            scroll-snap-type: y mandatory;
        }

        button.fullscrn,
        button.exitfullscrn {
            width: 100%;
            height: 100%;
            border: 0;
        }

        button.fullscrn i,
        button.exitfullscrn i {
            padding-left: 50%;
        }






        body:fullscreen #img-detail .img-show img.thumb {
            padding-top: 20%;
        }

        body:fullscreen #img-detail .image-opt {
            bottom: 10%;
        }


        @-moz-document url-prefix() {
            body:fullscreen .bottom-nav {
                bottom: 3.7%;
            }

            body:fullscreen #techstack-grid-content {
                bottom: 12%;
            }
        }

        body.main {
            background: var(--primary-color);
        }



        .flip-card-back {

            background: var(--primary-color);
            color: white;
            transform: rotateY(180deg);
            transition: background 0.2s linear;
        }



        /* body.texture .about_nav label div {
            filter: drop-shadow(2px 2px 2px black);
        }


        body.texture #replace_about_nav_result {
            filter: drop-shadow(2px 2px 2px black);
        }

        body.texture #replace_about_nav_result .outer .address .detail h3 {
            opacity: 0.8;
        }

        body.texture #replace_about_nav_result .outer .address .detail h4 {
            opacity: 0.6;
        }*/

        body.texture #replace_about_nav_result .outer .address .icon {
            border-right: 2px solid rgba(255, 255, 255, 0.75);
        }




        body {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.2s linear;
        }


        /* **************************************************************************** */


        .bottom-nav {
            position: fixed;
            z-index: 5;
            bottom: 0;
            width: 100%;
            background-color: var(--bottom-nav-bg);
            filter: drop-shadow(1px 1px 2px var(--bottom-nav-ds-1)) drop-shadow(-1px -1px 2px var(--bottom-nav-ds-2));
        }

        @media (min-width:420px){
             .bottom-nav {
            position: absolute;
            z-index: 5;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--bottom-nav-bg);
            filter: drop-shadow(1px 1px 2px var(--bottom-nav-ds-1)) drop-shadow(-1px -1px 2px var(--bottom-nav-ds-2));
        }
        }

        .bottom-nav .tabs {
            display: flex;
            width: 100%;
            padding: 0.75rem 0px;
            border-radius: 99px;
            transform: scale(0.9);
        }

        .bottom-nav .tabs * {
            z-index: 2;
        }


        .bottom-nav input[type="radio"] {
            display: none;
        }


        .bottom-nav .tab {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 35px;
            width: 25%;
            font-weight: 400;
            border-radius: 99px;
            cursor: pointer;
            transition: color 0.15s ease-in;
        }

        .bottom-nav .tabs label i {
            color: rgb(115, 29, 190);
            padding: 10px 13px;
            font-size: 22px;
            border-radius: 50%;
            transition: transform 0.2s ease-out;
        }



        body.light input[type="radio"].active+label i {
            color: rgb(0, 0, 0);
            transition: 0.2s ease-in;

        }

        body.dark input[type="radio"].active+label i,
        body.texture input[type="radio"].active+label i {
            color: rgb(255, 255, 255);
            transition: 0.2s ease-in;
        }



        .bottom-nav .tabs #theme-overlay,
        .bottom-nav .tabs #img-gallery-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            animation: theme-slide 0.3s ease-in;
        }

        .bottom-nav .tabs #img-gallery-overlay {
            animation: none;
            z-index: 3;
            background: var(--primary-color);
        }


        @keyframes theme-slide {
            from {
                transform: translateY(100px);
            }

            to {
                transform: translateY(0px);
            }
        }

        .bottom-nav .tabs #theme-overlay,
        .bottom-nav .tabs #theme-switch-btn i,
        .bottom-nav .tabs #img-gallery-overlay,
        .bottom-nav .tabs #img-gallery-switch-btn i {
            background: var(--theme-overlay-bg);
        }


        .bottom-nav .tabs #theme-overlay .theme {
            height: 80%;
            width: 30%;
            border-radius: 5px;
        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-options {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            animation: theme-slide 0.3s ease-in;
            color: var(--secondary-color);

        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-options button,
        .bottom-nav .tabs #img-gallery-overlay .img-gallery-options input {
            width: 45%;
            height: 80%;
            border-radius: 10px;
            border: 0;
            background: var(--primary-color);
            color: var(--secondary-color);
            font-family: "Patua One", serif;
            filter: drop-shadow(1px 1px 2px var(--bottom-nav-ds-1)) drop-shadow(-1px -1px 2px var(--bottom-nav-ds-2));
        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-multidelete {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            animation: theme-slide 0.3s ease-in;
        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-multidelete div {
            width: 45%;
            height: 80%;
            border-radius: 10px;
            border: 0;
            font-size: 20px;
            font-family: "Patua One", serif;
        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-multidelete div div {
            height: 100%;
            float: right;
            display: flex;
            justify-content: space-between;
        }

        .bottom-nav .tabs #img-gallery-overlay .img-gallery-multidelete div button {
            border: 0;
            background: none;
            height: 100%;
            font-size: 22px;
            color: var(--secondary-color);
        }

        input.fa-trash {
            font-family: FontAwesome, 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: red;
            border: 0;
            background: none;
        }

        input[type=submit]:disabled {
            background-color: transparent;
            color: grey;
            cursor: not-allowed;
            border: 0;
        }

        .fa-check-double {
            border: 0;
            background: transparent;
            color: var(--secondary-color);
        }


        .bottom-nav .tabs #theme-overlay .theme.light,
        .bottom-nav .tabs #theme-overlay .theme.dark,
        .bottom-nav .tabs #theme-overlay .theme.texture {
            background: var(--bottom-nav-bg);
            transition: 0.2s linear;
        }

        body.light .bottom-nav .tabs #theme-overlay .theme.light,
        body.dark .bottom-nav .tabs #theme-overlay .theme.dark,
        body.texture .bottom-nav .tabs #theme-overlay .theme.texture {
            border: 2px solid var(--theme-select-brd);
            transform: scale(1.04);
        }


        #theme-switch-btn,
        #img-gallery-switch-btn {
            width: auto;
            position: relative;
            bottom: 34px;
            width: 70px;
            background-color: transparent;
            border: none;
        }

        #img-gallery-switch-btn {
            width: 95px;
        }

        #theme-switch-btn i,
        #img-gallery-switch-btn i {
            font-size: 26px;
            position: absolute;
            top: -15px;
            width: 50px;
            background: transparent;
            transition: all 0.3s ease-in-out, background 0ms;
            height: 50px;
            border-radius: 21px;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        #img-gallery-switch-btn i {
            padding-top: 10px;
            font-size: 22px;

        }

        #theme-switch-btn.open .palette,
        #img-gallery-switch-btn.open .palette {
            visibility: hidden;
            opacity: 0;
            transition: 0.3s ease-in-out;
        }

        #theme-switch-btn .palette svg {
            width: 30px;
        }

        #theme-switch-btn.open i,
        #img-gallery-switch-btn.open i {
            transform: translateY(0px);
        }

        #theme-switch-btn.close i,
        #img-gallery-switch-btn.close i {
            transform: translateY(45px);
        }

        #theme-switch-btn i.fa-angles-down,
        #img-gallery-switch-btn i.fa-angles-down {
            padding-top: 8px;
            font-size: 23px;
            color: var(--secondary-color);
        }

        #theme-switch-btn.open::before,
        #img-gallery-switch-btn.open::before {
            content: '';
            position: absolute;
            left: -22.8%;
            top: -2.5%;
            width: 25px;
            height: 25px;
            background: transparent;
            border-bottom: 7px solid var(--primary-color);
            border-right: 5px solid transparent;
            border-left: 5px solid transparent;
            border-top: 5px solid transparent;
            border-radius: 50%;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(-45deg);
            animation: set-del 0.3s ease-in-out;
        }

        #img-gallery-switch-btn.multi.open::before {
            animation: set-del 0.1s linear;
        }

        #img-gallery-switch-btn.open::before {
            content: '';
            position: absolute;
            left: -2.4%;
            top: -2.5%;
        }

        #theme-switch-btn.open::after,
        #img-gallery-switch-btn.open::after {
            content: '';
            position: absolute;
            left: 81.5%;
            top: -3%;
            width: 25px;
            height: 25px;
            background: transparent;
            border-bottom: 7px solid var(--primary-color);
            border-right: 5px solid transparent;
            border-left: 5px solid transparent;
            border-top: 5px solid transparent;
            border-radius: 50%;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            animation: set-del 0.3s ease-in-out;
        }

        #img-gallery-switch-btn.multi.open::after {
            animation: set-del 0.1s ease-in-out;
        }

        #img-gallery-switch-btn.open::after {
            content: '';
            position: absolute;
            left: 72.5%;
            top: -3%;
        }

        @keyframes set-del {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        #theme-switch-btn.close .fa-angles-down,
        #img-gallery-switch-btn.close .fa-angles-down {
            visibility: hidden;
            opacity: 0;
            transition: 0.2s ease-in-out;
        }





        .htmx-indicator {
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.2s, opacity 0.2s ease;
        }

        .htmx-request .htmx-indicator {
            visibility: visible;
            opacity: 1;
            z-index: 10;
        }

        .htmx-request.htmx-indicator {
            visibility: visible;
            opacity: 1;
            z-index: 10;
        }


        .htmx-request.htmx-indicator+.htmx-indicator-hide {
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.1s, opacity 0.1s linear;
        }

        .htmx-indicator-hide {
            visibility: visible;
            opacity: 1;
            z-index: 10;
        }

        #loader {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100dvh;
            z-index: 4;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            align-content: center;
        }


        #customize {
            position: fixed;
            background: var(--primary-color);
            left: 0;
            opacity: 0;
            visibility: hidden;
            top: 0;
            width: 100%;
            height: 100dvh;
            z-index: 4;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            align-content: flex-start;
            transition: all 0.3s ease-in-out;
        }

        #customize #configs {
            opacity: 0;
            visibility: hidden;
        }

        #customize.open #configs {
            width: 100%;
            margin-top: 5%;
            opacity: 1;
            visibility: visible;
            position: relative;
            z-index: 5;
            transition: all 0.3s ease-in-out;
        }





        #customize.open #configs div.cus-child {
            width: 85%;
            height: 7dvh;
            border-radius: 10px;
            margin: 5% auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow: hidden;
            box-shadow: 1px 1px 5px rgb(212, 210, 210), -1px -1px 5px rgb(210, 204, 204);
        }

        #customize.open #configs #fullscreen {
            background-color: red;
        }

        #customize.open #configs #specifications,
        #customize.open #configs #pwa {
            background-color: rgb(107, 177, 17);
        }





        #customize.open #configs #specifications button,
        #customize.open #configs #pwa button,
        #customize.open #configs #mfa button,
        #customize.open #configs #sse button {
            width: 100%;
            height: 100%;
            border: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5%;
            word-spacing: 2px;
            font-family: "Patua One", serif;
            font-style: normal;
            color: rgb(255, 255, 255);
            background: #510097;
            background: linear-gradient(90deg, rgba(81, 0, 151, 1) 0%, rgba(116, 51, 212, 1) 100%);
        }


        #customize.open #configs #mfa {
            background-color: rgb(0, 132, 255);
        }


        #customize.open #configs #sse {
            background-color: rgb(0, 132, 255);
        }



        #customize.open #loaderrr {
            position: absolute;
            background: var(--primary-color);
            left: 0;
            top: 0;
            width: 100%;
            height: 100dvh;
            z-index: 4;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            align-content: center;
            transition: all 0.3s ease-in-out;
        }

        #customize.close {
            visibility: hidden;
            opacity: 0;
        }

        #customize.open {
            visibility: visible;
            opacity: 1;
        }


        #customize.open #configs section#config-details {
            background: var(--primary-color);
            width: 100%;
            height: 100dvh;
            position: absolute;
            left: 0;
            top: -5%;
            box-shadow: none;
            padding: 2.5%;
        }





        section#config-details #device-spec-outer.show,
        section#config-details #device-spec-outer.hide {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            place-items: center;
            box-shadow: none;
            gap: 10px 8px;
        }

        section#config-details #device-spec-outer svg {
            width: 100%;
            height: auto;
        }


        section#config-details #device-spec-outer.show svg:nth-child(odd) {
            animation: 0.5s left-tran ease-in-out;
        }

        section#config-details #device-spec-outer.hide svg:nth-child(odd) {
            transform: translateX(-250px);
            transition: 0.5s ease-in-out;
        }

        section#config-details #device-spec-outer.hide svg:nth-child(even) {
            transform: translateX(250px);
            transition: 0.5s ease-in-out;
        }

        @keyframes left-tran {
            from {
                transform: translateX(-250px);
            }

            to {
                transform: translateX(0px);
            }
        }


        section#config-details #device-spec-outer.show svg:nth-child(even) {
            animation: 0.5s right-tran ease-in-out;
        }

        @keyframes right-tran {
            from {
                transform: translateX(250px);
            }

            to {
                transform: translateX(0px);
            }
        }




        #pwa-overlay #video:not(:fullscreen) {
            border: 2px ridge black;
            border-radius: 10px;
            width: 60%;
            transform: scale(calc(var(--body-h) / 800));
            transform-origin: center;
            padding-bottom: 10px;
            background-color: rgb(0, 0, 0);
            box-shadow: 1px 1px 10px #474646, -1px -1px 10px #4c4b4b;
            -moz-box-shadow: 1px 1px 10px #474646, -1px -1px 10px #4c4b4b;
            -webkit-shadow: 1px 1px 10px #474646, -1px -1px 10px #4c4b4b;
        }




        #pwa-overlay ul {
            list-style: none;
            font-family: "Patua One", serif;
            font-style: normal;
            word-spacing: 5px;
            line-height: 22px;
            padding: 0;
            width: 90%;
            margin: 0 auto;
        }

        #pwa-overlay ul li {
            margin-top: 30px;
        }

        #pwa-overlay #fixed-top {
            position: fixed;
            top: 5%;
            left: 3%;
            width: 95%;
        }




        #pwa-overlay #fixed-top.doc div.demo-btn {
            width: 85%;
            margin: 0 auto;
            margin-left: 6%;
            display: block;
        }

        #pwa-overlay #fixed-top.doc div.back-btn {
            display: none;
        }

        #pwa-overlay #fixed-top.demo div.demo-btn {
            display: none;
        }

        #pwa-overlay #fixed-top.demo div.back-btn {
            width: 85%;
            margin: 0 auto;
            margin-left: 6%;
            display: block;
        }









        #customize.open .switch-outer {
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
            width: 16rem;
            position: fixed;
            top: 75%;
            left: 30%;
            display: flex;
            padding: 0;
            background: goldenrod;
            line-height: 3rem;
            border-radius: 10px;
        }

        #customize.open .switch-outer input {
            visibility: hidden;
            position: absolute;
            top: 0;
        }

        #customize.open .switch-outer label {
            width: 50%;
            padding: 0;
            margin: 0;
            text-align: center;
            cursor: pointer;
            color: white;
        }

        #customize.open .switch-outer label::selection,
        #customize.open .switch-outer label:hover,
        #customize.open .switch-outer label:active {
            background: none;
        }

        #customize.open .top-wrapper {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 50%;
            padding: 0.15rem;
            z-index: 3;
            transition: transform .5s cubic-bezier(.77, 0, .175, 1);
            /* transition: transform 1s; */
        }


        #customize.open .switch {
            border-radius: 8px;
            background: white;
            height: 100%;
        }


        #customize.open .switch div {
            width: 100%;
            text-align: center;
            opacity: 0;
            display: block;
            color: goldenrod;
            transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
            will-change: opacity;
            position: absolute;
            top: 0;
            left: 0;
        }

        #customize.open .switch-outer input:nth-of-type(1):checked~.top-wrapper {
            transform: translateX(0%);
        }


        #customize.open .switch-outer input:nth-of-type(2):checked~.top-wrapper {
            transform: translateX(100%);
        }

        #customize.open .switch-outer input:nth-of-type(1):checked~.top-wrapper .switch div:nth-of-type(1) {
            opacity: 1;
        }

        #customize.open .switch-outer input:nth-of-type(2):checked~.top-wrapper .switch div:nth-of-type(2) {
            opacity: 1;
        }



        /*#loader i{*/
        /*    font-size:40px;*/
        /*}*/

        #indicator-row,
        #loader {
            background: var(--primary-color);
        }





        #indicator-row {

            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 100;
            left: 0;
            top: 0;
            display: flex;
            justify-content: center;
            align-items: center;

        }



        body.dark .line-scale-pulse-out>div {
            background-color: whitesmoke;
        }

        body.light .line-scale-pulse-out>div {
            background-color: black;
        }


        .line-scale-pulse-out>div {
            width: 15px;
            box-shadow: 0px 0px 1px rgba(48, 47, 47, 0.549), 0px 0px 1px rgba(199, 122, 245, 0.372);
            height: 100px;
            border-radius: 10px;
            margin: 10px;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            display: inline-block;
            -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
            animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
        }

        .line-scale-pulse-out>div:nth-child(2),
        .line-scale-pulse-out>div:nth-child(4) {
            -webkit-animation-delay: -0.4s !important;
            animation-delay: -0.4s !important;
        }

        .line-scale-pulse-out>div:nth-child(1),
        .line-scale-pulse-out>div:nth-child(5) {
            -webkit-animation-delay: -0.2s !important;
            animation-delay: -0.2s !important;
        }



        @-webkit-keyframes line-scale-pulse-out {
            0% {
                -webkit-transform: scaley(1);
                transform: scaley(1);
            }

            50% {
                -webkit-transform: scaley(0.4);
                transform: scaley(0.4);
            }

            100% {
                -webkit-transform: scaley(1);
                transform: scaley(1);
            }
        }

        @keyframes line-scale-pulse-out {
            0% {
                -webkit-transform: scaley(1);
                transform: scaley(1);
            }

            50% {
                -webkit-transform: scaley(0.4);
                transform: scaley(0.4);
            }

            100% {
                -webkit-transform: scaley(1);
                transform: scaley(1);
            }
        }



        .lds-grid {
            position: absolute;

            top: 6%;
            left: 6%;
            color: white;
            display: inline-block;

            width: 80%;
            height: 80%;
        }

        .lds-grid div {
            position: absolute;
            width: 25%;
            height: 25%;
            box-shadow: 1px 1px 1px black;
            border-radius: 20%;
            background: #fff;
            animation: lds-grid 1.2s linear infinite;
        }

        .lds-grid div:nth-child(1) {
            top: 1%;
            left: 1%;
            animation-delay: 0s;
        }

        .lds-grid div:nth-child(2) {
            top: 1%;
            left: 40%;
            animation-delay: -0.4s;
        }

        .lds-grid div:nth-child(3) {
            top: 1%;
            left: 80%;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(4) {
            top: 40%;
            left: 1%;
            animation-delay: -0.4s;
        }

        .lds-grid div:nth-child(5) {
            top: 40%;
            left: 40%;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(6) {
            top: 40%;
            left: 80%;
            animation-delay: -1.2s;
        }

        .lds-grid div:nth-child(7) {
            top: 80%;
            left: 1%;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(8) {
            top: 80%;
            left: 40%;
            animation-delay: -1.2s;
        }

        .lds-grid div:nth-child(9) {
            top: 80%;
            left: 80%;
            animation-delay: -1.6s;
        }

        @keyframes lds-grid {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }


        #fade-me-in.htmx-added {
            opacity: 0;
        }

        #fade-me-in {
            opacity: 1;
            transition: opacity 1s ease-in;
        }

        .loaderr {
            width: 64px;
            height: 64px;
            position: relative;
            border-radius: 20%;
            background-repeat: no-repeat;
            background-size: 16px 16px;
            background-position: left top, left bottom, right top, right bottom;
            animation: rotate 1.2s linear infinite;
        }

        @keyframes rotate {
            0% {
                width: 64px;
                height: 64px;
                transform: rotate(0deg)
            }

            50% {
                width: 30px;
                height: 30px;
                transform: rotate(180deg)
            }

            100% {
                width: 64px;
                height: 64px;
                transform: rotate(360deg)
            }
        }




        body.light .loaderr {
            background-image:
                linear-gradient(#000000 16px, transparent 0),
                linear-gradient(#FF3D00 16px, transparent 0),
                linear-gradient(#FF3D00 16px, transparent 0),
                linear-gradient(#000000 16px, transparent 0);
        }

        body.dark .loaderr {
            background-image:
                linear-gradient(#FFF 16px, transparent 0),
                linear-gradient(#FF3D00 16px, transparent 0),
                linear-gradient(#FF3D00 16px, transparent 0),
                linear-gradient(#FFF 16px, transparent 0);
        }


/* 
        @media (min-width : 1080px) {


            ul {
                list-style: none;
                text-align: left;
                padding: 0 0%;
                margin: 18px 0 0 10%;
            }

            .intro {
                position: relative;
                width: 100%;
                overflow: hidden;
                margin-left: 30px;
                margin-top: -10%;
            }

            .intro h1 {
                font-size: 28px;
            }

            .about_nav_col {
                margin-top: 0;

            }

            #replace_about_nav_result {
                padding: 30px 0%;
                height: auto;
            }

            #replace_about_nav_result .outer .address .detail h3 {
                font-size: 18px;
            }

            #replace_about_nav_result .outer .address .detail h4 {
                font-size: 15px;
            }

            #replace_about_nav_result #email form .form-group {
                width: 100%;
                padding: 0 5%;
            }

        } */







        .modal-body {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-backdrop {
            display: none;
        }

        /*audio::-webkit-media-controls-timeline,*/
        /*video::-webkit-media-controls-timeline{*/
        /*  display: none;*/
        /*}*/

        body.light .modal-fullscreen .modal-content {
            background-color: #f2f5fa;
            color: black;
        }

        body.dark .modal-fullscreen .modal-content {
            background-color: #111827;
            color: white;
        }




        #video-gallery-temp {
            width: 100%;
            padding: 0 5%;
            min-height: 100dvh;
            display: flex;
            justify-content: center;
            align-items: center;


        }


        #video-gallery-temp .video-outer-label {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 3px;
            position: relative;

        }

        /*body.light #video-gallery-temp .video-outer-label{*/
        /*  background-color: #ffffff;*/
        /*     box-shadow: 1px 1px 25px rgba(128, 128, 128, 0.325),-1px -1px  25px rgba(128, 128, 128, 0.217);*/
        /*       border: 2px solid rgb(211, 207, 207);*/
        /*}*/

        /*body.dark #video-gallery-temp .video-outer-label{*/
        /*   background-color: rgba(17,15,50);*/
        /*     box-shadow: 1px 1px 5px rgba(25, 25, 133, 0.595),-1px -1px  15px rgba(63, 63, 65, 0.332);*/
        /*       border: 2px solid rgba(233, 230, 230, 0.148);*/
        /*}*/

        body.light #video-gallery-temp .video-outer-label img {
            border-radius: 5px;
            border: 2px solid grey;
        }

        body.dark #video-gallery-temp .video-outer-label img {
            border-radius: 5px;
            border: 2px solid grey;
        }


        #video-gallery-temp .video-outer-label .video-detail .vid-title {
            font-size: 5dvw;
            position: absolute;
            top: 5%;
            margin-left: -2%;
            font-family: "Patua One", serif;
            font-weight: normal;
        }

        #video-gallery-temp .video-outer-label .video-detail .vid-descr {
            overflow: hidden;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            display: -webkit-box;
            font-size: 3dvw;
            opacity: 0.5;
            width: 90%;
            margin-left: -3%;
            font-weight: 100;
            font-family: "Patua One", serif;
            margin-top: 5%;
        }



        .vgallery_stack_list_row .col-4 label {
            text-align: center;
            width: 90%;
            border: 1px solid black;
            border-radius: 20px;
            padding: 3px 0;
            font-size: 12px;
            text-transform: uppercase;
            font-family: "Patua One", serif;
            margin-bottom: 10px;

        }



        body.light .col-12 hr.border-hr {
            background-color: #fff;
            padding: 0;
            border: 0;
            height: 1.2px;
            background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        }

        body.dark .col-12 hr.border-hr {

            background-color: #000;
            padding: 0;
            border: 0;
            height: 1.2px;
            background-image: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 100%), rgb(255 255 255 / 0%));
        }


        #video-gallery-temp .video-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 3px;
            position: relative;
            opacity: 0.4;
            background-color: #ffffff;
            box-shadow: 1px 1px 25px rgba(128, 128, 128, 0.325), -1px -1px 25px rgba(128, 128, 128, 0.217);
            border: 2px solid rgb(211, 207, 207);
            animation: pulse-loop 1s ease-in-out forwards infinite;
        }


        @keyframes pulse-loop {

            0%,
            100% {
                opacity: 0.4;
            }

            70% {
                opacity: 0.7;
            }
        }

        body.dark #video-gallery-temp .video-indicator {
            background-color: rgba(17, 15, 50);
            box-shadow: 1px 1px 5px rgba(25, 25, 133, 0.595), -1px -1px 15px rgba(63, 63, 65, 0.332);
            border: 2px solid rgba(233, 230, 230, 0.148);
        }


        #video-gallery-temp .video-indicator img {
            width: 90%;
            border-radius: 3px;
            background-color: grey;
        }

        #video-gallery-temp .video-indicator .video-detail {
            box-sizing: border-box;
            max-width: -webkit-fill-available;
        }


        #video-gallery-temp .video-indicator .video-detail .vid-title {
            position: absolute;
            top: 5%;
            margin-left: -2%;
            width: 95%;
            border-radius: 13px;
        }

        #video-gallery-temp .video-indicator .video-detail .vid-title div {
            width: 60%;
            height: 25px;
            background-color: grey;
            border-radius: 3px;
        }

        #video-gallery-temp .video-indicator .video-detail .vid-descr {
            opacity: 0.5;
            width: 97%;
            margin-left: -3%;
            margin-top: 5%;
        }

        #video-gallery-temp .video-indicator .video-detail .vid-descr div {
            width: 100%;
            height: 12px;
            background-color: grey;
            border-radius: 3px;
        }

        #video-gallery-temp .video-indicator .video-detail .vid-descr div.skelton-only-pc {
            display: none;
        }


        .vgallery_stack_list_row .col-4 label {
            text-align: center;
            width: 90%;
            border: 1px solid black;
            border-radius: 20px;
            padding: 3px 0;
            font-size: 12px;
            text-transform: uppercase;
            font-family: "Patua One", serif;
            margin-bottom: 10px;

        }









        /* @media (min-width:1080px) {


            #img-preview {
                width: 100dvw;
                height: auto;
            }

            #img-preview.loaded #myImg {
                opacity: 1;
                transition: opacity 250ms ease-in-out;
                transform: scale(1);
                position: absolute;
                z-index: 20000;
                height: -webkit-fill-available;
                max-width: fit-content;
            }

            #video-gallery-temp .video-outer-label .video-detail .vid-title {
                font-size: 25px;
                -webkit-line-clamp: 3;
            }

            #video-gallery-temp .video-outer-label .video-detail .vid-descr {

                font-size: 15px;

            }

            #video-gallery-temp .video-indicator .video-detail .vid-descr div.skelton-only-pc {
                display: block;
            }

        } */



        .design_outer {
            position: absolute;
            left: 0;
            top: 0;
            width: 8dvw;
            height: 50dvh;
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
        }



        .design_outer div {
            width: 18%;
            height: 80%;
            background-color: rgb(12, 155, 212);
            z-index: 100;
            border-radius: 0px 0px 10px 10px;
            box-shadow: 2px 2px 1px black;

        }

        .design_outer div:nth-child(2) {
            height: 90%;
            background-color: rgb(238, 16, 8);
            z-index: 500;

        }



        .design_outer_top-up {
            position: absolute;
            left: 0;
            top: 0;
            width: 40dvw;
            height: 15dvh;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }



        .design_outer_top-up div {
            width: 80%;
            height: 18%;
            background-color: green;
            z-index: 1000;
            box-shadow: 2px 2px 2px black;
            border-radius: 0px 10px 10px 0px;


        }

        .design_outer_top-up div:nth-child(2) {
            width: 90%;
            background-color: orange;
            z-index: 400;
            position: relative;
            border-radius: 0px 10px 10px 0px;

        }






        /* @media (max-width:1080px) {





            .design_outer {
                position: absolute;
                left: 0;
                top: 0;
        
                width: 15dvw;
                height: 22dvh;
                flex-direction: row;
                justify-content: space-evenly;
                display: none;

            }

            .design_outer div {
                width: 17%;
                height: 80%;
                background-color: rgb(12, 155, 212);
                z-index: 100;
                border-radius: 0px 0px 10px 10px;
                box-shadow: 2px 2px 1px black;


            }

            .design_outer div:nth-child(2) {
                height: 90%;
                background-color: rgb(238, 16, 8);
                z-index: 500;

            }


            .design_outer_top-up {
              
                width: 37dvw;
                height: 8dvh;
                display: none;

            }

            .design_outer_top-up div {
                width: 80%;
                height: 17%;
                background-color: green;
                z-index: 1000;
                box-shadow: 2px 2px 2px black;
                border-radius: 0px 10px 10px 0px;


            }

            .design_outer_top-up div:nth-child(2) {
                width: 90%;
                background-color: orange;
                z-index: 400;
                position: relative;
                border-radius: 0px 10px 10px 0px;

            }

        } */



        .modal-content {
            background: whitesmoke;
            border: 0;
        }


        #otp-auth #auth-section {
            margin: 0 15%;
        }

        #otp-auth #auth-section .input-group {
            position: relative;
            margin-bottom: 10%;
            font-family: 'Amaranth', sans-serif;
        }

        #otp-auth #auth-section .input {
            all: unset;
            color: black;
            width: 100%;
            height: 35px;
            padding: 7px 10px;
            border: 3px solid #541078;
            border-radius: 10px;
            transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        #otp-auth #auth-section .label {
            position: absolute;
            top: 25%;
            left: 1rem;
            color: #541078;
            pointer-events: none;
            transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        #otp-auth #auth-section .input:focus {
            border: 3px solid #541078;
        }

        #otp-auth #auth-section .input:is(:focus, :valid)~label {
            transform: translateY(-103%) scale(0.9);
            background-color: whitesmoke;
            padding-inline: 0.3rem;
            color: #541078;
            border-left: 3px solid #541078;
            border-right: 3px solid #541078;
            border-radius: 3px;
            font-weight: 700;
        }

        #passkey-auth {
            margin-top: 30px;

        }


        /*#passkey-auth  button{*/
        /*  outline: none;*/
        /*  border:none;*/
        /*  background:transparent;*/

        /*}*/


        .otp-form-row {
            width: 100%;
        }



        .otp-form-row input {

            width: 120%;
            font-size: 22px;
            font-weight: 600;
            color: var(--input-color);
            background-color: transparent;
            border: 0;
            position: relative;
            top: 20px;
            padding: 6px 2px 6px 8px;
            letter-spacing: 33.5px;
            font-family: sans-serif !important;
            caret-color: transparent;
        }

        .otp-form-row input:hover,
        .otp-form-row input:focus,
        .otp-form-row input:active {
            background-color: transparent;
        }


        .otp-form-row input:-webkit-autofill,
        .otp-form-row input:-webkit-autofill:hover,
        .otp-form-row input:-webkit-autofill:focus,
        .otp-form-row input:-webkit-autofill:active {
            transition: background-color 5000s ease-in-out 0s;
            background-color: transparent;
        }

        .otp-form-row input:-webkit-autofill {
            -webkit-text-fill-color: black !important;

        }



        .otp-form-row input:focus {
            box-shadow: none;
            outline: none;
        }

        .otp-form-row svg {
            position: relative;
            display: block;
            top: 20px;
            width: 100%;
            height: 2px;
            margin-left: 5px;
        }



        .card {
            border: 2px solid rgb(166, 162, 169);
        }

        .card.current {
            border: 2px solid blueviolet;

        }

        .card.current::before {
            content: "Current";
            position: absolute;
            background-color: blueviolet;
            color: white;
            padding: 3px 5px;
            top: 100%;
            left: -2px;
            border: 2px solid blueviolet;
        }


        /* #upcoming {

            visibility: hidden;
            z-index: 1;
            position: absolute;
            left: 2.5%;
            scroll-snap-type: y mandatory;
            width: 95%;
            height: 65dvh;
            margin: 30px auto;
            white-space: nowrap;
            aspect-ratio: 1 / 1;
            overflow-x: hidden;
            overflow-y: scroll;
            margin-top: 50%;
            transition: 0.2s all;
            scrollbar-color: transparent;
            scrollbar-width: none;
            animation: left-trans .5s linear;
        }

        @keyframes left-trans {
            from {
                transform: translateX(0px);
                opacity: 1;
            }

            to {
                transform: translateX(700px);
                opacity: 0;
            }
        }

        #upcoming.show {
            opacity: 1;
            visibility: visible;
            background: var(--primary-color);
            animation: right-tran .3s linear;
        }

        @keyframes right-tran {
            from {
                transform: translateX(500px);
            }

            to {
                transform: translateX(0px);
            }
        } */



        /* #container {
            scroll-snap-type: y mandatory;
            width: 95%;
            height: 65dvh;
            margin: 30px auto;
            white-space: nowrap;
            aspect-ratio: 1 / 1;
            overflow-x: hidden;
            overflow-y: scroll;
            margin-top: 50%;
            transition: 0.2s all;
            scrollbar-color: transparent;
            scrollbar-width: none;
        }

        #container div.blue,
        #upcoming div.blue {
            display: inline-block;
            height: 80%;
            border-radius: 7%;
            background: transparent;
            width: 100%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            animation: fad 0.5s ease-in forwards;
            animation-timeline: view();
            animation-range: entry 0% cover 40%;
        }

        @keyframes fad {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        } */


        #container {
            background: var(--primary-color);
            scroll-snap-type: y mandatory;
            width: 90%;
            margin: 30px auto;
            white-space: nowrap;
            aspect-ratio: 1 / 1;
            overflow-x: hidden;
            pointer-events: none;
            overflow-y: scroll;
            transition: 0.2s all;
            height: 30dvh;
            scrollbar-color: transparent;
            scrollbar-width: none;
        }

        #container label {
            font-size: 32px;
            position: relative;
            font-family: "Winky Rough", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            animation: 0.2s fad 0.2s ease-in forwards;
            opacity: 0;
            transition: 1s all;
        }

        #container .prev-next-outer {
            bottom: 10%;
            position: absolute;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;

        }

        #container .prev-next-outer button,
        #container .prev-next-outer a {
            border-radius: 5px;
            border: 0;
            padding: 5px 5px;
            width: 20%;
            font-family: "Winky Rough", sans-serif;
        }



        .fade-me-out-0.htmx-swapping {
            opacity: 1;
            transform: translateY(-230px);
            transition: transform 0.2s ease-in;
        }

        .fade-me-out-1.htmx-swapping {
            opacity: 1;
            transform: translateY(230px);
            transition: transform 0.2s ease-in;
        }

        .fade-me-out-1.htmx-added {
            transform: translateY(-230px);
            transition: transform 0.2s ease-in;
        }


        #container.animate_container {
            animation: slide-left-in 0.2s ease-in;
        }

        @keyframes slide-left-in {
            from {
                opacity: 0;
                transform: translateY(-230px);
            }

            to {
                opacity: 1;
                transform: translateY(0px);
            }
        }

        #container:focus {
            outline: none;
            border: none;
            outline-style: none;
            box-shadow: none;
            border-color: transparent;
            background-color: transparent;
        }

        #container div.blue,
        #upcoming div.blue {
            display: inline-block;
            height: 100%;
            border-radius: 7%;
            background: transparent;
            width: 100%;
            padding-top: 5%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            animation: fad 0.5s ease-in forwards;
            animation-timeline: view();
            animation-range: entry 0% cover 40%;
        }

        @keyframes fad {
            from {
                opacity: 0.3;
            }

            to {
                opacity: 1;
            }
        }

        #motion-anim {
            position: relative;
            height: 25%;

        }

        #motion-anim section div {
            width: 30px;
            height: 30px;
            border: 1px solid hsl(343, 100%, 58%, .3);
            border-right: 5px solid hsl(343, 100%, 58%);
            background: hsla(343, 100%, 58%, .3) radial-gradient(circle, hsl(343, 100%, 58%, 1) 3px, hsl(343, 100%, 58%, 0) 3px);
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: monospace, sans-serif;
        }

        #motion-anim .anim-move {
            offset-path: path('m14 113v-90c0 0 0-11.2 17-10 17 1.2 240 0 240 0');
            position: relative;
            transition: 1.5s;
            offset-distance: 3%;
        }



        #motion-anim .anim-move.anim-move-out {
            offset-distance: 95%;
        }

        #motion-anim #click:after {
            content: ' forwards';
        }

        #motion-anim #click.anim-move-out:after {
            content: ' backwards';
        }


        #motion-anim section {
            position: fixed;
            width: 90%;
            top: 5%;
            left: 5%;
            height: 25%;
            z-index: 1;
            opacity: 1;
            animation: motion-anim 1s ease-in;
        }

        @keyframes motion-anim {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        #motion-anim section:nth-child(2) {
            transform: rotate(180deg);
        }

        * {
            box-sizing: border-box;
        }

        #motion-anim svg {
            position: absolute;
            width: 110%;
            height: 100%;
            top: -15%;
            left: 0.6%;
        }

        #motion-anim small {
            font-size: 0.6em
        }

        #motion-anim label {
            position: absolute;
            top: 50%;
            left: 60%;
            width: 90%;
            transform: translate(-50%, -50%);
            font-size: 28px;
            font-family: "Winky Rough", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            animation: 0.2s fad 0.2s ease-in forwards;
            transition: 1s all;

        }


        #video-preview {
            padding: 0 5%;
            display: flex;
            justify-content: center;
            align-items: baseline;
            height: 100dvh;
            overflow: hidden;
        }

        #video-preview .contnt {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
        }

        #video-preview .contnt .video-outer {
            height: auto;
            position: relative;
        }

        #video-preview .contnt video {
            width: 100%;
            border-radius: 10px;
        }

        .controls-outer {
            position: relative;
            width: 100%;
            height: 60dvh;
        }

        .progress-outer {
            position: relative;
            margin: 10% 0;
        }



        #description-outer {
            background-color: whitesmoke;
            position: absolute;
            top: 0;
            right: 0;
            width: 10%;
            height: 10%;
            border-radius: 50%;
            transition: 0.5s ease-in-out;
            opacity: 0;
            visibility: hidden;
            z-index: 2;
        }

        #description-outer.open {

            visibility: visible;
            z-index: 2;
            opacity: 1;
            width: 100%;
            height: 100%;
            border-radius: 5%;
            animation: circle-grow 0.5s ease-in-out;
            overflow-y: scroll;
        }

        @keyframes circle-grow {

            from {
                width: 10%;
                height: 10%;
                border-radius: 50%;
            }

            to {
                width: 100%;
                height: 100%;
                border-radius: 5%;
            }

        }

        #description-outer * {
            opacity: 0;
            visibility: hidden;
        }

        #description-outer.open * {
            opacity: 1;
            visibility: visible;
            transition: 0.2s 0.5s ease-in-out;
        }

        #description-outer.open p {
            text-align: left;
        }


        .progress-outer .svg-play-outer {
            position: relative;
            width: 30%;
            margin: 5% auto;
        }

        .progress-outer svg {
            transform: rotate(-90deg);
            width: 100px;
            height: 100;
        }

        .progress-outer div.play,
        .progress-outer div.pause {
            width: 70px;
            height: 70px;
            position: absolute;
            top: 15%;
            left: 17%;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .progress-outer div.play button,
        .progress-outer div.pause button {
            width: 100%;
            height: 100%;
            font-size: 30px;
            border: 0;
        }

        .progress-outer div.play button#play-btn {
            background: whitesmoke;
            position: absolute;
            top: 0;
            z-index: 0;
        }

        .progress-outer div.play button#pause-btn {
            background: whitesmoke;
            position: absolute;
            top: 0;
            z-index: 1;
        }


        .progress-outer div.pause button#play-btn {
            background: whitesmoke;
            position: absolute;
            top: 0;
            z-index: 1;
        }


        .progress-outer div.pause button#pause-btn {
            background: whitesmoke;
            position: absolute;
            top: 0;
            z-index: 0;
        }

        .percent {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            stroke-linecap: round;
        }

        #progress {
            transition: 0.5s ease-in-out;
        }



        fieldset #forward-backward-controls {
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 10%;
        }

        fieldset #forward-backward-controls button {
            width: 15%;
            border-radius: 5px;
            border: 0;
            position: relative;
            background: none;
        }

        fieldset #forward-backward-controls button svg {
            width: 90%;
            height: auto;
            transform: rotate(0deg);
        }

        fieldset:disabled #forward-backward-controls .user-1,
        fieldset:disabled #forward-backward-controls .t1 {
            fill: rgba(111, 110, 110, 0.511);
            color: rgba(111, 110, 110, 0.511);
        }

        fieldset #forward-backward-controls .user-1,
        fieldset #forward-backward-controls .t1 {
            fill: var(--secondary-color);
            color:var(--secondary-color);
        }

        tspan {
            white-space: pre
        }

        .t1 {
            font-size: 320px;
            line-height: 300px;
            font-weight: 700;
            font-family: "DejaVuSansCondensed-Bold", "DejaVu Sans"
        }


        fieldset #playback-speed-controls {
            width: 100%;
            margin: 15% 0;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }

        .controls-outer .video_nav{
            width: 100%;
            height: 50px;
            padding: 0 3%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .controls-outer .video_nav .back-btn{
            transform: rotate(90deg);
            border: none;
            background: none;
            font-size: 25px;
            color: var(--secondary-color);
        }

        .controls-outer .video_nav .para-btn{
            border: none;
            background: none;
            font-size: 25px;
            color: var(--secondary-color);
        }



        #playback-speed-controls input {
            display: none;
        }

        #playback-speed-controls label {
            background: rgb(190, 187, 187);
            color: rgb(66, 65, 65);
            width: 10dvw;
            border-radius: 3px;
            font-size: 12px;
            padding: 5px 8px 5px 5px;
            font-weight: bold;
        }

        #playback-speed-controls label:nth-child(2) {}

        fieldset:disabled #playback-speed-controls label {
            color: rgb(123, 119, 119);
            background: lightgrey;

        }

        #playback-speed-controls input:checked+label {
            background-color: grey;
            color: rgb(255, 255, 255);
        }

        fieldset:disabled #playback-speed-controls input:checked+label {
            background: lightgrey;
            color: rgb(95, 92, 92);
        }


        fieldset #volume-controls {
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        fieldset #volume-controls #volume-slider {
            background: linear-gradient(to right, #82CFD0 0%, #82CFD0 40%, #fff 40%, #fff 100%);
        }



        fieldset #volume-controls button {
            border: 0;
            font-size: 22px;
            background: none;
        }

        fieldset #volume-controls button i{
            color: var(--secondary-color);
        }

        #iframe-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
            z-index: 1000;
            background: red;
            display: block;
        }

        iframe+#iframe-overlay {
            display: none;
        }


        .buffering-animation {
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 100;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


    /* .video_gallery_section {
      width: 95%;
      height: 90%;
      position: relative;
    }

    .video_publised {
      width: 100%;
      height: 33.3%;
      background-color: rgb(0, 255, 17);
    }

    .api_response {
      width: 50%;
      height: 10%;
      background-color: rgb(0, 166, 255);
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: 0.3s ease-in-out;
      border-radius: 50px;
      overflow: hidden;

    }

    .api_response.expand {
      width: 100%;
      height: 100%;
      border-radius: 0px;
    }

    .api_response #video_gallery_api {
      opacity: 0;
      visibility: hidden;
      transition: 0.2s ease-in-out;
    }

    .api_response.expand #video_gallery_api {
      opacity: 1;
      visibility: visible;
      transition: 3s ease-in-out;
    }

    .api_response.expand #video_gallery_api a{
      pointer-events: none;
      text-decoration: none;
      color: inherit;
    }


    .api_response::before {
      content: "click for api";
      text-align: center;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      opacity: 1;
      transition: opacity 3s;
    }

    .api_response.expand::before {
      content: "";
      opacity: 0;
    }

    .video_upcoming {
      width: 100%;
      height: 33.3%;
      background-color: rgb(255, 0, 212);
      position: absolute;
      bottom: 0;
    } */

.video_gallery_section {
      display: flex;
      flex-direction: column;
      min-height: 90dvh;
      width: 100%;
      padding: 20px;
      gap: 5px;
      overflow: hidden;
      margin-top: -15%;
    }


    .video_section_card {
      flex: 1;
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: flex 0.3s ease-in-out;
    }

    .video_section_card div.shape {
      width: 25%;
      height: 20px;
      background-color: var(--primary-color);
      position: absolute;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      transition:  opacity 0.4s  ease-in;
    }

    .video_gallery_section.expand .video_section_card div.shape{
      opacity: 0;
      transition: opacity 0.1s  ease-out;
    }

    .video_section_card div.shape::after {
      content: "";
      width: 50px;
      height: 40px;
      background-color: inherit;
      position: absolute;
      bottom: -3px;
      border-radius: 50%;
    }

    .video_section_card:nth-child(3) div.shape {
      top: 0;
      transform: rotate(180deg);
    }

    .video_section_card:nth-child(1),.video_section_card:nth-child(3) {
      background: #510097;
      background: linear-gradient(90deg, rgba(81, 0, 151, 1) 0%, rgba(116, 51, 212, 1) 100%);
    }

    .video_gallery_section.expand .video_section_card:nth-child(1),
    .video_gallery_section.expand .video_section_card:nth-child(3) {
      flex: 0;
      padding: 10px;
    }

    .video_section_card:nth-child(2) {
      flex: 0;
      transition: flex 0.5s;
      background-color: transparent;
    }

    .video_gallery_section.expand .video_section_card:nth-child(2) {
      flex: 12;
      transition: flex 2s;
    }


    .video_section_card:nth-child(2) #video_gallery_api {
      opacity: 0;
      visibility: hidden;
      height: 0;
      transition: height 0.5s;
    }

    .video_gallery_section.expand .video_section_card:nth-child(2) #video_gallery_api {
      opacity: 1;
      visibility: visible;
      transition: height 0.2s;
      overflow: scroll;
      height: 55dvh;
      width: 100%;
    }

    .video_section_card:nth-child(2)::before {
      content: "api";
      position: absolute;
      opacity: 1;
      transition: opacity 3s;
    }


    .video_gallery_section.expand .video_section_card:nth-child(2)::before {
      content: "";
      opacity: 0;
    }

    .video_section_card:nth-child(3) p {
      opacity: 1;
      visibility: visible;
    }

   
    .video_gallery_section.expand .video_section_card:nth-child(3) p {
      opacity: 0;
      visibility: hidden;
    }
    
    .video_gallery_section.transition-in .triggerup-up {
      transform: translateY(0);
      opacity: 1;
      animation: 0.25s triggerup-up ease-in;
    }

    .video_gallery_section.transition-out .triggerup-up {
      transform: translateY(-50%);
      opacity: 0;
      animation: 0.25s triggerup-down ease-in;
    }

    .video_gallery_section.transition-in .triggerdown-up {
      transform: translateY(0);
      opacity: 1;
      animation: 0.25s triggerdown-up ease-in;
    }

    .video_gallery_section.transition-out .triggerdown-up {
      transform: translateY(30%);
      opacity: 0;
      animation: 0.25s triggerdown-down ease-in;
    }

    .user-1 {
        fill: url(#user-1)
    }
                        
    .user-2 {
        fill: url(#user-2)
    }


    .stack-1 {
        fill: url(#stack-1);
        /* stroke: #000000;
        stroke-miterlimit: 100;
        stroke-width: 5 */
    }
                    
    
    .stack-2 {
        fill: url(#stack-2);
    }
    
    .stack-3 {
        fill: url(#stack-3);
    }

    
    .image-1 { fill: url(#image-1) } 

    
    .video-1 { fill: url(#video-1) } 
      








     #demo_links{
      width: 100%;
      height: 100dvh;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
    }

    #demo_links .card{
      width: 90%;
      height: 20%;
      background: #6b2dde;
      color: white;
      border-radius: 15px;
      margin-bottom: 5%;
      padding: 5%;
    }

    #demo_links .card:nth-child(1){
        margin-top: 10%;
    }

    #demo_links.demo_link_slide .card{
        animation: demo_link_slide 0.2s ease-in;
    }

    #demo_links .card button{
        width: 30%;
        border-radius: 5px;
        background-color: white;
        color: #6b2dde;
        padding: 5px 3px;
    }

    .demo_link_slide.htmx-swapping {
            opacity: 1;
            transform: translateX(-350px);
            transition: transform 0.2s ease-out;
        }


        @keyframes demo_link_slide {
            from {
                opacity: 0;
                transform: translateX(-350px);
            }

            to {
                opacity: 1;
                transform: translateY(0px);
            }
        }












        .dark-light-mode {
            position: fixed;
            top: 3.7%;
            right: 6%;
        }

        .dark-light-mode button {

            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 3;
            background: none;
            border: 0;
            display: none;

        }


        body.light .dark-light-mode button.light,
        body.dark .dark-light-mode button.dark {
            display: none;
        }

        body.dark .dark-light-mode button.light,
        body.light .dark-light-mode button.dark {
            display: block;
        }




        #toggle-mode {
            width: 12dvw;
            aspect-ratio: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transform: rotate(-30deg);
            overflow: hidden;
            background: none;
            transition: none;
            border-radius: 50%;
            border: 1px solid grey;

        }




        #toggle-mode .outer {
            width: 90%;
            aspect-ratio: 1;
            border-radius: 50%;
            position: absolute;
            outline: none;
            border: 0;
            outline: 0;
            transition: 0.3s background ease-in-out;

        }

        body.light #toggle-mode .outer {
            background-image: repeating-conic-gradient(from 45deg in oklch, #5408cf, #be95c4 20deg, #231942 40deg);
            animation: rot 3s infinite linear;
        }

        @keyframes rot {
            from {
                transform: rotate(360deg);
            }
        }

        body.dark #toggle-mode .outer {
            background-image: repeating-conic-gradient(from 45deg in oklch, #853ef7, #be95c4 20deg, #231942 40deg);
            animation: rot 3s infinite linear reverse;

        }

        #toggle-mode .inner {
            position: absolute;
            border-radius: 50%;
            width: 100%;
            aspect-ratio: 1;
            z-index: 2;
            opacity: 0;
        }

        body.light #toggle-mode .inner {
            left: 100%;
            background: #f8fafc;
            opacity: 1;
            transition: 0.1s opacity ease-in, 0.4s left ease-in;
        }

        body.dark #toggle-mode .inner {
            opacity: 1;
            left: 30%;
            background: #0F1137;
            transition: 0.4s left ease-in;
        }