@font-face {
    font-family: 'Google Sans';
    src: url('./fonts/GoogleSans-Regular.eot');
    src: url('./fonts/GoogleSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/GoogleSans-Regular.woff2') format('woff2'),
        url('./fonts/GoogleSans-Regular.woff') format('woff'),
        url('./fonts/GoogleSans-Regular.ttf') format('truetype'),
        url('./fonts/GoogleSans-Regular.svg#GoogleSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('./fonts/GoogleSans-Bold.eot');
    src: url('./fonts/GoogleSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/GoogleSans-Bold.woff2') format('woff2'),
        url('./fonts/GoogleSans-Bold.woff') format('woff'),
        url('./fonts/GoogleSans-Bold.ttf') format('truetype'),
        url('./fonts/GoogleSans-Bold.svg#GoogleSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('./fonts/GoogleSans-Medium.eot');
    src: url('./fonts/GoogleSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('./fonts/GoogleSans-Medium.woff2') format('woff2'),
        url('./fonts/GoogleSans-Medium.woff') format('woff'),
        url('./fonts/GoogleSans-Medium.ttf') format('truetype'),
        url('./fonts/GoogleSans-Medium.svg#GoogleSans-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: linear-gradient(90deg, #4285F4 22%, #4885F4 27%, #6487F5 35%, #8D8AF6 45%, #AA8DF8 51%, #B57FD5 57%, #D15F7F 70%, #EA4335 80%);
    ;
    /* Neon Green */
    --secondary: #00b8ff;
    /* Electric Blue */
    --accent: #ff0055;
    /* Hot Pink */
    --dark: #0a0e17;
    /* Deep Navy */
    --surface: #151b2b;
    /* Lighter Navy */
    --text: #000000;
    --font-display: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Google Sans';
    font-weight: normal;
}


/* gradient border */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    padding: 7px;
    margin: 12px;
    border-radius: 20px;
    background: linear-gradient(90deg,
            #1F86FA 0%,
            #4587FB 16%,
            #7E89FD 41%,
            #A28AFE 60%,
            #B08BFF 71%,
            #B089FC 78%,
            #B386F4 82%,
            #B880E6 86%,
            #BF78D2 89%,
            #C86DB8 91%,
            #D36098 94%,
            #E05073 96%,
            #EE3E48 98%,
            #FC2E22 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 999;
}

/* gradient border */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    padding: 12px;
    margin: 0px;
    border-radius: 20px;
    background: #fff;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 999;
}

/* --- Main Layout --- */
main {
    position: relative;
    flex: 1;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- Common UI Components --- */
h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.card {
    padding: 1rem;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 2rem;
}

input {
    border: 2px solid transparent;
    outline: none;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #4285F4 22%,
            #4885F4 27%,
            #6487F5 35%,
            #8D8AF6 45%,
            #AA8DF8 51%,
            #B57FD5 57%,
            #D15F7F 70%,
            #EA4335 80%) border-box;
    border-radius: 35px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    width: 70%;
    margin-bottom: 1rem;
    color: #000000;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease-in-out;
    font-size: 1.4rem;
}


.my-input::placeholder {
    color: #94a3b8;
}

.my-input:focus {
    box-shadow: 0 0 0 2px #22c55e;
}

#otp-input {
    width: 100%;
    padding: 0.6rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

#otp-input:focus {
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg,
            #4285F4 22%,
            #4885F4 27%,
            #6487F5 35%,
            #8D8AF6 45%,
            #AA8DF8 51%,
            #B57FD5 57%,
            #D15F7F 70%,
            #EA4335 80%);
    color: #ffffff;
    border: none;
    padding: 7px 5px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 36px;
    cursor: pointer;
    text-transform: capitalize;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    display: block;
    text-decoration: none;
    max-width: 40%;
    margin: 2rem auto;
}

.btn-primary:hover {
    opacity: 0.8;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.hidden {
    display: none !important;
}

#btnRetake {
    background: #4285F4 !important;
    color: #ffffff !important;
}

#btnScreenshot,
#btnFlipCamera {
    margin: 1rem auto !important;
}

.common-btn {
    position: relative;
    min-width: 135px;
    padding: 3px 30px;
    margin: 1rem auto;
    background: #274DA0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2.2;
    border-radius: 35px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.common-btn.outline {
    background: transparent;
}

.common-btn:hover,
.common-btn.outline:hover {
    background: #1d4ed8;
    /* green-600 → blue-700 */
    transform: scale(1.02);
    color: #fff;
}

.common-btn-gray {
    background: #616161;
}

.common-btn-gray:hover {
    background: #565555;
}

button:disabled,
button[disabled] {
    opacity: 0.5;
}

/*///////////////////  details section style start //////////////*/
.details-section {
    position: relative;
}

.logoBx {
    width: 95%;
    display: block;
    box-sizing: border-box;
    margin: 0 auto 3rem auto;
}

.logoBx img {
    width: 100%;
}

.headingBx {
    position: relative;
    margin: 2rem auto 1rem auto;
    width: 80%;
}

.headingBx .headingMsg {
    color: #000000;
    padding: 0.5rem;
    font-weight: 500;
    border-radius: 35px;
    margin: 1rem auto;
    font-size: 1.2rem;
    width: 90%;
}

.headingBx .headingMsg h2 {
    font-weight: 500;
}

.headingBx p {
    font-size: 1.8rem;
    font-weight: normal;
}

#user-name {
    margin-bottom: 0;
}

/*///////////////////  picture capture section style start //////////////*/
.picture-capture-sec {
    position: relative;
    box-sizing: border-box;
    padding-top: 10px;
}

.picture-capture-sec .heading-bx h1 {
    color: #ed6145;
    font-size: 2.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.picture-capture-sec .heading-bx p {
    color: #ffffff;
    font-size: 1.8rem;
    padding-bottom: 1rem;
    font-weight: 500;
}


.picture-capture-sec .camera,
.picture-capture-sec .picture-output {
    position: relative;
    width: 40vw;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    border: 3px solid rgba(255, 255, 255, 1);
    background: black;
    margin: 0 auto;
    border-radius: 50%;
}

/* The Inner Frame Border */
.picture-capture-sec .camera.white-border::after,
.picture-capture-sec .picture-output.white-border::after {
    content: '';
    position: absolute;
    /* Creates the 8px transparent gap */
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #fff;
    /* Inner Border */
    pointer-events: none;
    z-index: 10;
    /* Ensures it sits on top of the video/canvas */
}


.picture-capture-sec .camera .video,
.picture-capture-sec .camera #canvas,
.picture-capture-sec .picture-output img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.picture-capture-sec .camera .video,
.picture-capture-sec .camera #canvas {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    border-radius: 50%;
}

.overlay_circle {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
}

.overlay_circle img {
    width: 100%;
    display: block;
}

.take-photo {
    width: 13%;
    margin: 1rem auto;
    background: transparent;
    border: none;
}

.take-photo img {
    width: 100%;
    display: block;
    box-sizing: border-box;
}

#take_picture_btn_bx,
#retake_submit_btn_bx {
    width: 90%;
    margin: 0 auto;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

#take_picture_btn_bx p,
#retake_submit_btn_bx p {
    font-size: 1.3rem;
}

.retake_btn_bx {
    display: flex;
    width: 75%;
    justify-content: center;
    align-items: center;
    margin: 1rem auto;
    gap: 12px;
}

/* ///unique box/// */

.unique_code_sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

.unique_code_sec h2 {
    padding-bottom: 4vh;
    font-size: 1.8rem;
    font-weight: 500;
}


.unique_code_sec p {
    font-size: 1.4rem;
    color: #000000e0;
}

#display-otp {
    font-size: 3rem;
    font-weight: 800;
    color: #4285F4;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

/* Gender checkbox row */
.gender-bx {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    justify-content: center;
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Checkbox style */
.check-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
}

.check-item span {
    font-size: 1.2rem;
    font-weight: 500;
    background: white;
    color: #737373;
    padding: 5px 6px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* hide default checkbox */
.check-item input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 5px;
    border: 2px solid #4285F4;
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    padding: 0.6rem;
    margin-bottom: 0;
}

/* tick */
.check-item input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: -6px;
    width: 7px;
    height: 22px;
    border: solid #4285F4;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}


/* //////////////pitch-recording page/////////////// */

.pitchUnique-code-sec h2 {
    padding-bottom: 4vh;
    font-size: 1.5rem;
    font-weight: 500;
}

/* //////////////result page/////////////// */

/* Container */
.result-code-sec {
    position: relative;
    padding: 16px;
    color: #ffffff;
}

.result-code-sec h2 {
    padding-bottom: 4vh;
    font-size: 1.7rem;
    font-weight: normal;
    color: #000;
}

#popupDownloadImage {
    background: #3987fb;
    padding: 7px;
    border-radius: 12px;
}

.main-title {
    text-align: center;
    color: #4285F4;
    font-size: 3rem;
    margin-bottom: 3rem;
}

/* Cards Styling */

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cards-container {
    animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.player-card {
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    width: 300px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,
            #4285F4 22%,
            #4885F4 27%,
            #6487F5 35%,
            #8D8AF6 45%,
            #AA8DF8 51%,
            #B57FD5 57%,
            #D15F7F 70%,
            #EA4335 80%) border-box;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.35s ease;
}

.player-card img {
    width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}

/* .player-card .score-big {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    display: block;
} */

.runs-card {
    display: flex;
    align-items: flex-end;
    /* align "Runs" with number bottom */
    gap: 8px;
}

/* left column */
.runs-left {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Total text */
.runs-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555353;
    margin-bottom: 2px;
    text-align: left;
}

/* Big number */
.score-big {
    font-size: 3rem;
    font-weight: 500;
    color: #4a86e8;
}

/* Runs text */
.runs-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555353;
    margin-bottom: 6px;
}


/* Table Styling */
.leaderboard-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.col-2 {
    grid-column: span 2;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
    text-align: center;
}

/* FADE ANIMATIONS */
.player-row,
.player-card {
    /* opacity: 0; */
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Overlay */
.ai-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.ai-loader-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 40px 60px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    max-width: 50%;
}

/* Spinner */
.ai-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #00eaff;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Text */
.ai-loader-text {
    font-size: 18px;
    font-weight: normal;
}


/* Title */
.result-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: normal;
    width: 90%;
    margin: 1rem auto;
}

.coaching-box ul {
    padding-left: 20px;
    list-style-type: disc;
    /* circle, square, none */
}

.coaching-box ul li {
    font-size: 1.5rem;
}

/* Video */
.video-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 16px;
}

.analysis-video {
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    aspect-ratio: 9 / 16;
    border-radius: 10px;
    object-fit: cover;
    background: #000;
}

.button-bx {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.button-bx .btn-primary {
    padding: 10px 16px;
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.bg-blue {
    color: #ffffff;
    background: #4386F5;
}

/* Score Box */
.score-box {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    color: #000000;
    padding: 7px 6px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 1.2rem;
    z-index: 2;
}

/* Grid below video */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile */
    gap: 12px;
}

.grid-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px;
    color: #274DA0;
    text-align: left;
    margin-bottom: 2rem;
}

.grid-box h3 {
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.grid-box h4 {
    font-size: 1.5rem;
}

/* ///image popup */
.image-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.popup-content {
    position: relative;
    max-width: 480px;
    width: 70%;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    background: #274DA0;
    padding: 10px;
    border-radius: 8px;
}

.popup-content img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.close-popup {
    position: absolute;
    top: 4px;
    right: 10px;
    font-size: 45px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    background: #ec4250;
    padding: 2px 7px;
    border-radius: 6px;
}

.download-icon {
    position: absolute;
    top: 3%;
    left: 5%;
    width: 9%;
    color: #fff;
    text-decoration: none;
}

.result-logo {
    margin: 0 auto 1rem auto;
    width: 45%;
}


/* Home Button */
/* .analysis-box p {
    height: 14vh;
    overflow-y: auto;
} */


/* /////////////leaderboard/////////// */
.logoBxleaderboard {
    width: 25%;
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.logoBxleaderboard img {
    width: 100%;
}

.cric-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* padding: 2.5rem; */
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

@media (max-width: 640px) {
    .cric-card {
        padding: 1.5rem;
    }
}

/* Typography */
.text-center {
    text-align: center;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.sub-header-text {
    color: var(--slate-400);
    font-size: 1.3rem;
}

.Leaderboard_head {
    font-size: 2rem;
}

.gradient-btn {
    background: linear-gradient(to right, #22c55e, #3b82f6);
    border: none;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.2);
    transition: opacity 0.2s ease;
}

.gradient-btn:hover {
    opacity: 0.9;
}

/* Leaderboard Table */
.leaderboard-container {
    background: #274da0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    max-width: 1080px;
    margin: 2rem auto;
}

.table-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    align-items: center;
}

.table-header {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-list {
    min-height: 450px;
}

.player-row {
    padding: 0.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.player-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.rank-badge {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
}

.rank-1 {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.rank-2 {
    background: rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.rank-3 {
    background: rgba(180, 83, 9, 0.2);
    color: #b45309;
    border: 1px solid rgba(180, 83, 9, 0.3);
}

.rank-other {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.player-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.name {
    text-transform: capitalize;
}

.name-stack .name {
    font-size: 1rem;
    font-weight: 500;

}

.name-stack .team {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-box {
    text-align: right;
}

.score-value {
    font-size: 1rem;
    font-weight: 700;
    color: #4ade80;
    font-variant-numeric: tabular-nums;
}

.score-label {
    font-size: 9px;
    color: var(--slate-600);
    font-weight: 700;
    text-transform: uppercase;
}

/* States */
.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
}

.loader {
    border: 3px solid rgba(34, 197, 94, 0.1);
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-note {
    font-size: 1rem;
    font-weight: normal;
}

.col-2 {
    grid-column: span 2 / span 2;
    text-align: left;
}

.col-4 {
    grid-column: span 4 / span 4;
    text-align: left;
}

.col-6 {
    grid-column: span 6 / span 6;
    text-align: left;
}

.text-left {
    text-align: left;
}

.homeBtn {
    position: absolute;
    right: 4%;
    top: 4%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: linear-gradient(90deg, #4285F4 22%, #4885F4 27%, #6487F5 35%, #8D8AF6 45%, #AA8DF8 51%, #B57FD5 57%, #D15F7F 70%, #EA4335 80%);
    padding: 12px;
    border-radius: 40px;
}

.homeBtn img {
    width: 100%;
}

/* Remove the focus outline/shadow */
a:focus,
a:active,
button:focus,
button:active,
.button-bx {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Disable the mobile tap highlight color in WebKit browsers */
a,
button,
input,
label,
.button-bx {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none !important;
}

/* (Optional) Remove default inner focus border in Firefox for buttons/links */
button::-moz-focus-inner,
a::-moz-focus-inner {
    border: 0;
}

/* If you also want to stop text selection coloring: */
::selection {
    background: transparent;
}

.footerTxt {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
}

.footerTxt p {
    font-size: 1rem;
    color: #00000085;
}