@font-face {
    font-family: "light-font";
    src: url(/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-ExtraLight.ttf);
}

@font-face {
    font-family: "regular-font";
    src: url(/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Regular.ttf);
}

@font-face {
    font-family: "medium-font";
    src: url(/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Medium.ttf);
}

@font-face {
    font-family: "bold-font";
    src: url(/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Bold.ttf);
}

@font-face {
    font-family: "extra-bold-font";
    src: url(/fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-ExtraBold.ttf);
}


/* Global CSS */
html,
body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    background: #000;
    color: #fff;
    font-family: "regular-font";
}

* {
    margin: 0;
    box-sizing: border-box;
}

.full-height {
    border-radius: 0 !important;
    height: 100vh !important;
}

.mr-t--30 {
    margin-top: -30px !important;
}

.pd-0 {
    padding: 0 !important;
}

.flex {
    display: flex;
}

.gp-20 {
    gap: 20px;
}

.jstfy-cntr {
    justify-content: center;
}

.jstfy-btwn {
    justify-content: space-between;
}

.jstfy-even {
    justify-content: space-evenly;
}

.jstfy-end {
    justify-content: end;
}

.algn-cntr {
    align-items: center;
}

.algn-end {
    align-items: flex-end;
}

.flex-colm {
    flex-direction: column;
}

.text-center {
    text-align: center;
}

.pd-10 {
    padding: 10px;
}

.pd-20 {
    padding: 20px;
}

.pd-30 {
    padding: 30px;
}

.mr-t-20 {
    margin-top: 20px;
}

.mr-t-80 {
    margin-top: 80px;
}

.bold {
    font-weight: 900;
}

input {
    width: 100%;
    outline: none;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    background: #000;
    color: #eee;
}

.light {
    background: #eee;
}

.light .heading-section p:not(.test-mode),
.light #currentURL {
    color: #000;
}

.light .message {
    background: #fff;
    color: #000;
}

.light .message button {
    border: 1px solid #000;
    color: #000;
}

.light input {
    background: #eee;
    color: #000;
}

.dark {
    background: #000;
    color: #fff;
}

.underline {
    text-decoration: underline;
    cursor: pointer;
}

.curs-point {
    cursor: pointer;
}

.dsp-b {
    display: block;
}

.dsp-n {
    display: none !important;
}


.inline-logo {
    width: 20px !important;
    margin: 0 10px;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
    margin: 0 auto;
}

.mr-t-10 {
    margin-top: 10px;
}

.mr-b-20 {
    margin-bottom: 20px;
}

.pink-msg {
    background: #f2dbdb !important;
}

.blue-msg {
    background: #d1e5fd !important;
}

.green-msg {
    background: #def5e5 !important;
}

.max-button {
    padding: 12px 18px !important;
    width: 90% !important;
    text-align: center;
}


.whatsapp-logo {
    height: 20px !important;
    width: 20px !important;
    margin-right: 10px;
}

.o-5 {
    opacity: 0.5;
    pointer-events: none;
}

.o-0 {
    opacity: 0;
    pointer-events: none;
}

.scroll-body {
    overflow-y: scroll;
    width: 100%;
}

#sub-section-api {
    margin-bottom: 40px;
}

.loader-container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    align-items: center;
    z-index: 1;
    transition: all 0.5s ease-in;
    box-shadow: 0px -12px 24px rgb(12 12 12 / 10%);
    border-radius: 24px;
}

.loader-container .loading-des {
    font-weight: 500;
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
    line-height: 25px;
    text-align: center;
    color: #AAAAAA;
    font-family: var(--regular-font);
}

/* Loader animation */
.loader {
    border: 4px solid #F3F3F3;
    border-top: 4px solid #25D366;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 0.8s linear infinite;
}

/* Loader text */
.loader-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
    font-family: var(--regular-font);
}

.pos-rel {
    position: relative;
}

.loader-center-whatsapp-logo {
    position: absolute;
    width: 50%;
    top: 49%;
    left: 52%;
    transform: translate(-50%, -50%);
}


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

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

.h-0 {
    height: 0;
    pointer-events: none;
    overflow: hidden;
    position: absolute;
}