﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

    a.navbar-brand {
        white-space: normal;
        text-align: center;
        word-break: break-all;
    }

    /* Provide sufficient contrast against white background */
    a {
        color: #0366d6;
    }

    .btn-primary {
        color: #fff;
        background-color: #1b6ec2;
        border-color: #1861ac;
    }

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #1b6ec2;
        border-color: #1861ac;
    }

    /* Sticky footer styles
-------------------------------------------------- */
    html {
        font-size: 14px;
    }

    @media (min-width: 768px) {
        html {
            font-size: 16px;
        }
    }

    .border-top {
        border-top: 1px solid #e5e5e5;
    }

    .border-bottom {
        border-bottom: 1px solid #e5e5e5;
    }

    .box-shadow {
        box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
    }

    button.accept-policy {
        font-size: 1rem;
        line-height: inherit;
    }

    /* Sticky footer styles
-------------------------------------------------- */
    html {
        position: relative;
        min-height: 100%;
    }

    body {
        /* Margin bottom by footer height */
        margin-bottom: 60px;
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        color: #333;
        margin: 0;
        padding: 0;
        background-color: rgb(183,203,177);
    }

    .footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        white-space: nowrap;
        line-height: 60px; /* Vertically center the text there */
    }
    /*-----------------------------------------------------------------
Customer Portal
-----------------------------------------------------------------*/
    .trcg-cp-div-parent-element {
        display: flex;
        justify-content: center; /* Horizontal centering */
        align-items: center; /* Vertical centering */
        /* Add any other styles for the parent element if needed */
    }

    .trcg-cp-container {
        max-width: 350px;
        background: #F8F9FD;
        background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
        border-radius: 40px;
        padding: 25px 35px;
        border: 5px solid rgb(255, 255, 255);
        box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
        margin: 20px;
    }

    .trcg-cp-container-modal {
        /*max-width: 350px;*/
        background: #F8F9FD;
        background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
        border-radius: 40px;
        padding: 25px 35px;
        border: 5px solid rgb(255, 255, 255);
        box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
        margin: 20px;
    }


    .trcg-cp-heading {
        text-align: center;
        font-weight: 900;
        font-size: 30px;
        color: rgb(16, 137, 211);
    }

    .trcg-cp-form {
        margin-top: 20px;
    }

    .trcg-cp-input {
        width: 100%;
        background: white;
        border: none;
        padding: 15px 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: #cff0ff 0px 10px 10px -5px;
        border-inline: 2px solid transparent;
    }

        .trcg-cp-input::-moz-placeholder {
            color: rgb(170, 170, 170);
        }

        .trcg-cp-input::placeholder {
            color: rgb(170, 170, 170);
        }

        .trcg-cp-input:focus {
            outline: none;
            border-inline: 2px solid #12B1D1;
        }

    .trcg-cp-form .trcg-cp-input {
        width: 100%;
        background: white;
        border: none;
        padding: 15px 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: #cff0ff 0px 10px 10px -5px;
        border-inline: 2px solid transparent;
    }

        .trcg-cp-form .trcg-cp-input::-moz-placeholder {
            color: rgb(170, 170, 170);
        }

        .trcg-cp-form .trcg-cp-input::placeholder {
            color: rgb(170, 170, 170);
        }

        .trcg-cp-form .trcg-cp-input:focus {
            outline: none;
            border-inline: 2px solid #12B1D1;
        }


    .trcg-cp-form .trcg-cp-login-button {
        display: block;
        width: 100%;
        font-weight: bold;
        background: linear-gradient(45deg, rgb(16, 137, 211) 0%, rgb(18, 177, 209) 100%);
        color: white;
        padding-block: 15px;
        margin: 20px auto;
        border-radius: 20px;
        box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 20px 10px -15px;
        border: none;
        transition: all 0.2s ease-in-out;
    }

        .trcg-cp-form .trcg-cp-login-button:hover {
            transform: scale(1.03);
            box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 23px 10px -20px;
        }

        .trcg-cp-form .trcg-cp-login-button:active {
            transform: scale(0.95);
            box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 15px 10px -10px;
        }

    .trcg-cp-form .trcg-cp-back-button {
        display: block;
        width: 100%;
        font-weight: bold;
        background: linear-gradient(45deg, rgb(246, 36, 36) 0%, rgb(239, 99, 99) 100%);
        color: white;
        padding-block: 15px;
        margin: 20px auto;
        border-radius: 20px;
        box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 20px 10px -15px;
        border: none;
        transition: all 0.2s ease-in-out;
    }

        .trcg-cp-form .trcg-cp-back-button:hover {
            transform: scale(1.03);
            box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 23px 10px -20px;
        }

        .trcg-cp-form .trcg-cp-back-button:active {
            transform: scale(0.95);
            box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 15px 10px -10px;
        }

    .trcg-cp-close-button {
        /*display: block;*/
        float: right;
        width: 100px;
        height: 40px;
        font-weight: bold;
        background: linear-gradient(45deg, rgb(246, 36, 36) 0%, rgb(239, 99, 99) 100%);
        color: white;
        margin-top: 20px;
        border-radius: 20px;
        box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 20px 10px -15px;
        border: none;
        transition: all 0.2s ease-in-out;
    }

        .trcg-cp-close-button:hover {
            transform: scale(1.03);
            box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 23px 10px -20px;
        }

        .trcg-cp-close-button:active {
            transform: scale(0.95);
            box-shadow: rgba(255, 0, 0, 0.8784313725) 0px 15px 10px -10px;
        }

    .trcg-cp-submit-button {
        /*display: block;*/
        width: 100px;
        height: 40px;
        font-weight: bold;
        background: linear-gradient(45deg, rgb(122 173 127) 0%, rgb(114 241 11) 100%);
        color: white;
        margin-top: 20px;
        margin-right: 10px;
        border-radius: 20px;
        box-shadow: rgb(40 88 47 / 88%) 0px 20px 10px -15px;
        border: none;
        transition: all 0.2s ease-in-out;
    }

        .trcg-cp-submit-button:hover {
            transform: scale(1.03);
            box-shadow: rgb(40 88 47 / 88%) 0px 23px 10px -20px;
        }

        .trcg-cp-submit-button:active {
            transform: scale(0.95);
            box-shadow: rgb(40 88 47 / 88%) 0px 15px 10px -10px;
        }

    .trcg-cp-form .trcg-cp-forgot-password {
        display: block;
        margin-top: 10px;
        margin-left: 10px;
    }

        .trcg-cp-form .trcg-cp-forgot-password a {
            font-size: 11px;
            color: #0099ff;
            text-decoration: none;
        }

    .trcg-amount-label {
        font-size: 18px;
        font-weight: bold;
        color: #2c3e50;
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 15px;
        background-color: #ecf0f1;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 0 auto; /* Center the label */
    }


    .label-container {
        width: 100%;
        max-width: 400px; /* Optional: set a max-width to prevent it from being too wide */
        margin: 0 auto; /* Center the container */
        margin-top: 5px;
    }

    /*-----------------------------------------------------------------
Customer Portal Table
-----------------------------------------------------------------*/

    .tableFixHead {
        overflow-y: auto;
        max-height: 700px;
    }

    .tabContentTableFixHead {
        overflow-y: auto;
        max-height: 200px;
    }

    .tableFixHead thead th {
        position: sticky;
        top: 0px;
        text-transform: capitalize;
    }

    /* Style for table headers */
    .trcg-user-th, .trcg-user-td {
        padding: 10px;
        font-family: Sans-serif;
        border-bottom: 1px solid #ddd;
    }

    .trcg-user-td {
        text-align: left;
    }

    .trcg-user-td-right {
        text-align: right;
        padding-right: 30px;
    }

    /* Style for alternate rows */
    .trcg-user-tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .trcg-user-tr:nth-child(odd) {
        background-color: #F8F9FD;
    }

    /* Style for the header row */
    .trcg-user-th {
        color: #fff;
        background: #6c7ae0;
        font-size: 17px;
        padding-top: 17px;
        padding-bottom: 17px;
    }

    .trcg-user-tr {
        background-color: #ececff;
        cursor: pointer;
        color: gray;
        font-size: 17px;
    }

        .trcg-user-tr:hover {
            background-color: #ececff;
            cursor: pointer
        }

    .trcg-table-btn {
        border: 2px solid #24b4fb;
        background-color: #24b4fb;
        border-radius: 0.9em;
        padding: 4px;
        transition: all ease-in-out 0.2s;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: 600;
    }

        .trcg-table-btn:hover {
            background-color: #0071e2;
        }

    .trcg-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .trcg-header-container h1 {
            margin: 0;
        }

    /*-----------------------------------------------------------------
Customer Portal CheckBox
-----------------------------------------------------------------*/

    .trcg-checkbox-wrapper-10 .trcg-tgl {
        display: none;
    }

        .trcg-checkbox-wrapper-10 .trcg-tgl,
        .trcg-checkbox-wrapper-10 .trcg-tgl:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl:before,
        .trcg-checkbox-wrapper-10 .trcg-tgl *,
        .trcg-checkbox-wrapper-10 .trcg-tgl *:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl *:before,
        .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn {
            box-sizing: border-box;
        }

            .trcg-checkbox-wrapper-10 .trcg-tgl::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl:after::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl:before::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *:after::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *:before::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl:after::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl:before::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *:after::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl *:before::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn::selection {
                background: none;
            }

            .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn {
                outline: 0;
                display: block;
                width: 100%;
                height: 2em;
                position: relative;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

                .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn:after,
                .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn:before {
                    position: relative;
                    display: block;
                    content: "";
                    width: 50%;
                    height: 100%;
                }

                .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn:after {
                    left: 0;
                }

                .trcg-checkbox-wrapper-10 .trcg-tgl + .trcg-tgl-btn:before {
                    display: none;
                }

            .trcg-checkbox-wrapper-10 .trcg-tgl:checked + .trcg-tgl-btn:after {
                left: 50%;
            }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn {
        padding: 2px;
        transition: all 0.2s ease;
        font-family: sans-serif;
        perspective: 1000px;
    }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn:before {
            display: inline-block;
            transition: all 0.4s ease;
            width: 100%;
            text-align: center;
            position: absolute;
            line-height: 2em;
            font-weight: bold;
            color: #fff;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 10px;
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn:after {
            content: attr(data-tg-on);
            background: #02C66F;
            transform: rotateY(-180deg);
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn:before {
            background: #FF3A19;
            content: attr(data-tg-off);
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip + .trcg-tgl-btn:active:before {
            transform: rotateY(-20deg);
        }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip:checked + .trcg-tgl-btn:before {
        transform: rotateY(180deg);
    }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip:checked + .trcg-tgl-btn:after {
        transform: rotateY(0);
        left: 0;
        background: #7FC6A6;
    }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip:checked + .trcg-tgl-btn:active:after {
        transform: rotateY(20deg);
    }

    .trcg-checkbox-wrapper-10 .trcg-tgl2 {
        display: none;
    }

        .trcg-checkbox-wrapper-10 .trcg-tgl2,
        .trcg-checkbox-wrapper-10 .trcg-tgl2:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl2:before,
        .trcg-checkbox-wrapper-10 .trcg-tgl2 *,
        .trcg-checkbox-wrapper-10 .trcg-tgl2 *:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl2 *:before,
        .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2 {
            box-sizing: border-box;
        }

            .trcg-checkbox-wrapper-10 .trcg-tgl2::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2:after::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2:before::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *:after::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *:before::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2::-moz-selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2:after::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2:before::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *:after::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 *:before::selection,
            .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2::selection {
                background: none;
            }

            .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2 {
                outline: 0;
                display: block;
                width: 100%;
                height: 2em;
                position: relative;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

                .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2:after,
                .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2:before {
                    position: relative;
                    display: block;
                    content: "";
                    width: 50%;
                    height: 100%;
                }

                .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2:after {
                    left: 0;
                }

                .trcg-checkbox-wrapper-10 .trcg-tgl2 + .trcg-tgl-btn2:before {
                    display: none;
                }

            .trcg-checkbox-wrapper-10 .trcg-tgl2:checked + .trcg-tgl-btn2:after {
                left: 50%;
            }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2 {
        padding: 2px;
        transition: all 0.2s ease;
        font-family: sans-serif;
        perspective: 1000px;
    }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2:after,
        .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2:before {
            display: inline-block;
            transition: all 0.4s ease;
            width: 100%;
            text-align: center;
            position: absolute;
            line-height: 2em;
            font-weight: bold;
            color: #fff;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 10px;
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2:after {
            content: attr(data-tg-on);
            background: #02C66F;
            transform: rotateY(-180deg);
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2:before {
            background: #FF3A19;
            content: attr(data-tg-off);
        }

        .trcg-checkbox-wrapper-10 .trcg-tgl-flip2 + .trcg-tgl-btn2:active:before {
            transform: rotateY(-20deg);
        }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip2:checked + .trcg-tgl-btn2:before {
        transform: rotateY(180deg);
    }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip2:checked + .trcg-tgl-btn2:after {
        transform: rotateY(0);
        left: 0;
        background: #7FC6A6;
    }

    .trcg-checkbox-wrapper-10 .trcg-tgl-flip2:checked + .trcg-tgl-btn2:active:after {
        transform: rotateY(20deg);
    }

    /*-----------------------------------------------------------------
Customer Portal Card
-----------------------------------------------------------------*/
    .three-d-card {
        position: relative;
        width: 100%;
        height: 50px;
        perspective: 1000px;
    }

    .card-wrapper {
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.5s;
    }

    .three-d-card:hover .card-wrapper {
        transform: rotateY(180deg);
    }

    .card-face {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #3498db;
        border-radius: 20px;
        background-color: #fff;
    }

        .card-face.front {
            transform: rotateY(0deg);
        }

        .card-face.back {
            transform: rotateY(180deg);
        }

    .card-content {
        text-align: center;
        color: #333;
    }

    .card-title {
        font-weight: bold;
    }


    /*-----------------------------------------------------------------
Customer Portal Add Button
-----------------------------------------------------------------*/

    .trcg-add-button {
        position: relative;
        width: 150px;
        height: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        border: 1px solid #34974d;
        background-color: #3aa856;
        margin-right: 5px;
    }

    .trcg-add-button, .trcg-add-button__icon, .trcg-add-button__text {
        transition: all 0.3s;
    }

        .trcg-add-button .trcg-add-button__text {
            transform: translateX(30px);
            color: #fff;
            font-weight: 600;
        }

        .trcg-add-button .trcg-add-button__icon {
            position: absolute;
            transform: translateX(109px);
            height: 100%;
            width: 35px;
            background-color: #34974d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trcg-add-button .svg {
            width: 30px;
            stroke: #fff;
        }

        .trcg-add-button:hover {
            background: #34974d;
        }

            .trcg-add-button:hover .trcg-add-button__text {
                color: transparent;
            }

            .trcg-add-button:hover .trcg-add-button__icon {
                width: 144px;
                transform: translateX(0);
            }

        .trcg-add-button:active .trcg-add-button__icon {
            background-color: #2e8644;
        }

        .trcg-add-button:active {
            border: 1px solid #2e8644;
        }

    /*-----------------------------------------------------------------
Customer Portal AccessDenied
-----------------------------------------------------------------*/

    .trcg-access-denied-card {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 14px;
        z-index: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 20px 20px 60px #708976, -20px -20px 60px #eefff2;
    }


    .trcg-access-denied-bg {
        position: absolute;
        top: 5.5px;
        left: 5px;
        width: 99.1%;
        height: 239px;
        z-index: 2;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(24px);
        border-radius: 10px;
        overflow: hidden;
        outline: 2px solid white;
    }

    .trcg-access-denied-blob {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: #ff0000;
        opacity: 1;
        filter: blur(12px);
        animation: trcg-access-denied-blob-bounce 5s infinite ease;
    }

    .access-denied-text {
        position: relative;
        z-index: 3;
        /*font-size: 24px;*/
        color: darkred; /* Change the color as needed */
        /*font-weight: bold;*/
        align-items: center;
        text-align: center;
    }

    @keyframes trcg-access-denied-blob-bounce {
        0% {
            transform: translate(-100%, -100%) translate3d(-300%, 0, 0);
        }

        25% {
            transform: translate(100%, -100%) translate3d(200%, 0, 0);
        }

        50% {
            transform: translate(-100%, -100%) translate3d(400%, 100%, 0);
        }

        75% {
            transform: translate(-100%, -100%) translate3d(-300%, 100%, 0);
        }

        100% {
            transform: translate(-100%, -100%) translate3d(-300%, 0, 0);
        }
    }


    /*-----------------------------------------------------------------
Customer Portal Layout Header CloseButton
-----------------------------------------------------------------*/

    .trcg-layout-header-closeButton {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
    }



    /*-----------------------------------------------------------------
Customer Portal Layout Header LogoutButton
-----------------------------------------------------------------*/
    .trcg-logout-Btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        overflow: hidden;
        transition-duration: 0.4s;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        background: linear-gradient(to right, #3498db, #e74c3c);
    }

    .trcg-logout-sign {
        width: 100%;
        transition-duration: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .trcg-logout-sign svg {
            width: 17px;
        }

            .trcg-logout-sign svg path {
                fill: white;
            }

    .trcg-logout-text {
        position: absolute;
        right: 0%;
        width: 0%;
        opacity: 0;
        color: #ecf0f1;
        font-size: 1.2em;
        font-weight: 600;
        transition-duration: 0.4s;
    }

    .trcg-logout-Btn:hover {
        width: 150px;
        border-radius: 20px;
        transition-duration: 0.4s;
        background: linear-gradient(to right, #3498db, #e74c3c);
    }

        .trcg-logout-Btn:hover .trcg-logout-sign {
            width: 30%;
            transition-duration: 0.4s;
            padding-left: 12px;
        }

        .trcg-logout-Btn:hover .trcg-logout-text {
            opacity: 1;
            width: 70%;
            transition-duration: 0.4s;
            padding-right: 10px;
        }

    .trcg-logout-Btn:active {
        transform: translate(2px, 2px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    }


    /*-----------------------------------------------------------------
Customer Portal Search bar
-----------------------------------------------------------------*/

    .trcg-searchBox {
        display: flex;
        max-width: 230px;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        background: #eefff2;
        border-radius: 50px;
        position: relative;
    }

    .trcg-searchButton {
        color: white;
        position: absolute;
        right: 8px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--gradient-2, linear-gradient(90deg, #2AF598 0%, #009EFD 100%));
        border: 0;
        display: inline-block;
        transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    }
        /*hover effect*/
        .trcg-searchButton:hover {
            color: #fff;
            background-color: #1A1A1A;
            box-shadow: rgba(0, 0, 0, 0.5) 0 10px 20px;
            transform: translateY(-3px);
        }
        /*button pressing effect*/
        .trcg-searchButton:active {
            box-shadow: none;
            transform: translateY(0);
        }

    .trcg-searchInput {
        border: none;
        background: none;
        outline: none;
        color: black;
        font-size: 15px;
        padding: 15px 15px 15px 16px;
    }

    /*-----------------------------------------------------------------
Customer Portal Tabs
-----------------------------------------------------------------*/

    .trcg-tabs {
        position: relative;
        display: flex;
        min-height: 600px;
        max-height: 600px;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

    .trcg-tabby-tab {
        flex: 1;
    }

        .trcg-tabby-tab label {
            text-transform: capitalize;
            display: block;
            box-sizing: border-box;
            color: white;
            font-weight: 600;
            /* tab content must clear this */
            height: 59.9px;
            padding: 17px;
            text-align: center;
            background: #6c7ae0;
            cursor: pointer;
            transition: background 0.5s ease;
        }

            .trcg-tabby-tab label:hover {
                background: #7e8ae1;
            }

    .trcg-tabby-content {
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        /* clear the tab labels */
        top: 59.9px;
        padding: 20px;
        border-radius: 0 0 8px 8px;
        background: #e5e8fa;
        /*background: #553285;*/
        transition: opacity 0.8s ease, transform 0.8s ease;
        /* show/hide */
        opacity: 0;
        transform: scale(0.1);
        transform-origin: top left;
    }

    /* MAKE IT WORK ----- */

    .trcg-tabby-tab [type=radio] {
        display: none;
    }

    [type=radio]:checked ~ label {
        background: #525fbb;
        z-index: 2;
    }

        [type=radio]:checked ~ label ~ .trcg-tabby-content {
            z-index: 1;
            /* show/hide */
            opacity: 1;
            transform: scale(1);
        }

    /* BREAKPOINTS ----- */
    @media screen and (max-width: 767px) {
        .trcg-tabs {
            min-height: 400px;
        }
    }

    @media screen and (max-width: 480px) {
        .trcg-tabs {
            min-height: 580px;
        }

        .trcg-tabby-tab label {
            height: 60px;
        }

        .trcg-tabby-content {
            top: 60px;
        }
    }

    .contentFieldContainer {
        overflow-y: auto;
        min-height: 200px;
        background: #FFFFFF;
        /*box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);*/
        border-radius: 26px;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .separator {
        width: calc(100% - 20px);
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 10px;
        color: #8B8E98;
        margin: 0 10px;
    }

        .separator > p {
            word-break: keep-all;
            display: block;
            text-align: center;
            font-weight: 600;
            font-size: 20px;
            margin: auto;
        }

        .separator .line {
            display: inline-block;
            width: 100%;
            height: 1px;
            border: 0;
            background-color: #e8e8e8;
            margin: auto;
        }

    .contentFieldInformation {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .input_container {
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .split {
        display: grid;
        grid-template-columns: 4fr 2fr;
        gap: 15px;
    }

    .split3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
    }

    .split4 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 15px;
    }

    .split5 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 15px;
    }

    .split8 {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr)); /* Using repeat() with minmax(0, 1fr) to allow the columns to shrink as needed */
        gap: 15px;
        overflow-x: auto; /* Adding horizontal scrolling if overflow occurs */
    }

    .split input {
        width: 100%;
    }

    .split4 input {
        width: 100%;
    }

    #contFieldLabel.input_label {
        font-size: 10px;
        color: #8B8E98;
        font-weight: 600;
        background-color: white;
        height: 12px;
        text-align: left;
    }

    .input_field {
        font-size: 13px;
        width: auto;
        height: 35px;
        padding: 0 0 0 16px;
        border-radius: 9px;
        outline: none;
        background-color: #F2F2F2;
        border: 1px solid #e5e5e500;
        transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    }

        .input_field:focus {
            border: 1px solid transparent;
            box-shadow: 0px 0px 0px 2px #242424;
            background-color: transparent;
        }

    /*-----------------------------------------------------------------
Customer Portal Header Text
-----------------------------------------------------------------*/

    h1 {
        text-transform: Uppercase;
        margin-bottom: .5em;
        font-family: 'Rubik', sans-serif;
        color: #f8fdfa;
        font-weight: 1000;
        font-size: 30px;
    }

    h1 {
        position: relative;
        -webkit-background-clip: text;
    }

        h1:before,
        h1:after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
        }

        h1:before {
            z-index: -1;
            text-shadow: -0.001em -0.001em 1px rgba(255,255,255,.15)
        }

        h1:after {
            z-index: -2;
            text-shadow: 10px 10px 10px rgba(0,0,0,.5), 20px 20px 20px rgba(0,0,0,.4), 30px 30px 30px rgba(0,0,0,.1);
            mix-blend-mode: multiply;
        }

    /*-----------------------------------------------------------------
Customer Portal Menu Side Bar
-----------------------------------------------------------------*/


    .trcg-menu-btn {
        width: 150px;
        height: 50px;
        border-radius: 5px;
        border: none;
        transition: all 0.5s ease-in-out;
        font-size: 20px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 600;
        display: flex;
        align-items: center;
        background: #073A4B;
        color: #f5f5f5;
        /*position: absolute;
    left: 0;
    top: 0;
    margin-top: 70px;
    margin-left: 20px;*/
    }

        .trcg-menu-btn:hover {
            box-shadow: 0 0 20px 0px #2e2e2e3a;
        }

        .trcg-menu-btn .icon {
            position: absolute;
            height: 40px;
            width: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.5s;
        }

        .trcg-menu-btn .text {
            transform: translateX(55px);
        }

        .trcg-menu-btn:hover .icon {
            width: 150px;
        }

        .trcg-menu-btn:hover .text {
            transition: all 0.5s;
            opacity: 0;
        }

        .trcg-menu-btn:focus {
            outline: none;
        }

        .trcg-menu-btn:active .icon {
            transform: scale(0.85);
        }


    .trcg_sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        background-color: #073A4B;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        margin-top: 70px;
    }

        .trcg_sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #ffff;
            display: block;
            transition: 0.3s;
        }

            .trcg_sidenav a:hover {
                color: #bbd7c0;
            }

        .trcg_sidenav .trcg_closebtn {
            position: absolute;
            top: 0;
            right: 25px;
            font-size: 36px;
            margin-left: 50px;
        }

    #main {
        transition: margin-right .5s;
        padding: 16px;
    }

    @media screen and (max-height: 768px) {
        .trcg-menu-btn {
            width: 50px;
        }

        .trcg_sidenav {
            padding-top: 15px;
        }

        .trcg-menu-btn:hover .icon {
            width: 50px;
        }

        .trcg_sidenav a {
            font-size: 18px;
        }
    }

    /*-----------------------------------------------------------------
Customer Portal Back Button
-----------------------------------------------------------------*/

    .trcg-back_button_box {
        display: flex;
        max-width: 230px;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        border-radius: 50px;
        position: relative;
        margin-top: 15px;
    }

    .trcg_back_button {
        display: flex;
        height: 2.3em;
        width: 100px;
        align-items: center;
        justify-content: center;
        background-color: #eeeeee4b;
        border-radius: 3px;
        letter-spacing: 1px;
        transition: all 0.2s linear;
        cursor: pointer;
        border: none;
        background: #fff;
    }

        .trcg_back_button > svg {
            margin-right: 5px;
            margin-left: 5px;
            font-size: 20px;
            transition: all 0.4s ease-in;
        }

        .trcg_back_button:hover > svg {
            font-size: 1.2em;
            transform: translateX(-5px);
        }

        .trcg_back_button:hover {
            box-shadow: 9px 9px 33px #a2c996, -9px -9px 33px #ffffff;
            transform: translateY(-2px);
        }


    /*-----------------------------------------------------------------
Customer Portal checkbox
-----------------------------------------------------------------*/

    .trcg-cp-checkbox {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #ccc;
        border-radius: 4px;
        background-color: #f4f4f4;
        cursor: pointer;
        transition: background-color 0.3s, border-color 0.3s;
    }

        /* Checked state styles */
        .trcg-cp-checkbox:checked {
            background-color: #4caf50;
            border-color: #4caf50;
        }

            /* Optional: Add a checkmark icon for checked state */
            .trcg-cp-checkbox:checked::after {
                content: '✔';
                display: block;
                text-align: center;
                color: white;
                font-size: 16px;
                line-height: 18px;
            }

        /* Hover effect */
        .trcg-cp-checkbox:hover {
            border-color: #888;
        }

    /*-----------------------------------------------------------------
Customer Portal payment button
-----------------------------------------------------------------*/

    .trcg-payment-button {
        width: 130px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgb(15, 15, 15);
        border: none;
        color: white;
        font-weight: 600;
        gap: 8px;
        cursor: pointer;
        box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
        position: relative;
        overflow: hidden;
        transition-duration: .3s;
    }

    .trcg-payment-svgIcon {
        width: 16px;
    }

        .trcg-payment-svgIcon path {
            fill: white;
        }

    .trcg-payment-button::before {
        width: calc(100% + 40px);
        aspect-ratio: 1/1;
        position: absolute;
        content: "";
        background-color: white;
        border-radius: 50%;
        left: -20px;
        top: 50%;
        transform: translate(-150%, -50%);
        transition-duration: .5s;
        mix-blend-mode: difference;
    }

    .trcg-payment-button:hover::before {
        transform: translate(0, -50%);
    }

    .trcg-payment-button:active {
        transform: translateY(4px);
        transition-duration: .3s;
    }









    .success-notification {
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 30px;
        text-align: center;
        max-width: 420px;
        width: 90%;
        position: relative;
        animation: slideIn 0.4s ease-out;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 24px;
    }

    .modal-h2 {
        color: #2ecc71;
        margin-bottom: 16px;
        font-size: 28px;
    }

    .modal-p {
        color: #555;
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.5;
    }

    .close-btn {
        background-color: #2ecc71;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 16px;
        font-weight: bold;
    }

        .close-btn:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(46, 204, 113, 0.2);
        }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(40px);
        }
    }


    .trcg-cp-dashboard-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem;
    }

    .trcg-cp-dashboard-grid {
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .trcg-cp-dashboard-card {
        background-color: #ffffff;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        transition: transform 0.2s ease;
    }

        .trcg-cp-dashboard-card:hover {
            transform: translateY(-2px);
        }

        .trcg-cp-dashboard-card h3 {
            color: #3498db;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

    .trcg-cp-dashboard-value {
        font-size: 1.1rem;
        font-weight: bold;
        color: #2c3e50;
    }

    .trcg-cp-dashboard-label {
        font-size: 0.8rem;
        color: #7f8c8d;
    }

    .trcg-cp-contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

        .trcg-cp-contact-info p {
            margin: 0.2rem 0;
            font-size: 0.8rem;
        }

    .trcg-cp-chart-container {
        height: 200px;
    }

    .trcg-cp-last-ar-payment {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    @media (max-width: 768px) {
        .trcg-cp-dashboard-grid {
            grid-template-columns: 1fr;
        }

        .trcg-cp-contact-info {
            grid-template-columns: 1fr;
        }
    }

    /*-----------------------------------------------------------------
Customer Portal Ticket History
-----------------------------------------------------------------*/

    .tcg-cp-tickethistory-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .tcg-cp-tickethistory-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .tcg-cp-tickethistory-heading {
        color: #2c5e50;
    }

    .tcg-cp-tickethistory-back-btn {
        background-color: #34984b;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 16px;
    }

        .tcg-cp-tickethistory-back-btn:hover {
            background-color: #297a3e;
        }

    .tcg-cp-tickethistory-tab-container {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .tcg-cp-tickethistory-tab-buttons {
        display: flex;
        background-color: #34984b;
    }

    .tcg-cp-tickethistory-tab-button {
        padding: 15px 25px;
        background-color: transparent;
        border: none;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .tcg-cp-tickethistory-tab-button:hover, .tcg-cp-tickethistory-tab-button.active {
            background-color: #297a3e;
        }

    .tcg-cp-tickethistory-tab-content {
        display: none;
        padding: 30px;
    }

        .tcg-cp-tickethistory-tab-content.active {
            display: block;
        }

    .tcg-cp-tickethistory-section {
        padding: 15px;
        margin-bottom: 15px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .tcg-cp-tickethistory-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tcg-cp-tickethistory-grid-ticket-information {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }

    .tcg-cp-tickethistory-full-width {
        grid-column: 1 / -1;
    }

    .tcg-cp-tickethistory-h1 {
        font-size: 24px;
    }

    .tcg-cp-tickethistory-h2 {
        font-size: 20px;
    }

    .tcg-cp-tickethistory-h3 {
        font-size: 18px;
    }

    .tcg-cp-tickethistory-table {
        width: 100%;
        max-width: 100%;
        display: table;
        overflow-x: auto;
        white-space: nowrap;
        border-collapse: collapse;
    }

        .tcg-cp-tickethistory-table th,
        .tcg-cp-tickethistory-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        .tcg-cp-tickethistory-table th {
            background-color: #f8faf8;
            font-weight: 700;
        }

    .tcg-cp-tickethistory-summary-box {
        background-color: #e8fde8;
        border-radius: 8px;
        padding: 20px;
        margin-top: 20px;
    }

    .tcg-cp-tickethistory-summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

        .tcg-cp-tickethistory-summary-item:last-child {
            margin-bottom: 0;
            font-weight: 700;
        }

    .tcg-cp-tickethistory-ticket-info {
        font-size: 14px;
    }

        .tcg-cp-tickethistory-ticket-info p {
            margin: 5px 0;
        }

    .tcg-cp-tickethistory-responsive-table {
        width: 100%;
        border-collapse: collapse;
    }

        .tcg-cp-tickethistory-responsive-table th,
        .tcg-cp-tickethistory-responsive-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

    .tcg-cp-tickethistory-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .tcg-cp-tickethistory-search {
        padding: 8px;
        border: 1px solid #34984b;
        border-radius: 4px;
        font-size: 14px;
        width: 200px;
    }

    .tcg-cp-tickethistory-ticket-link {
        color: #34984b;
        text-decoration: underline;
    }

    .tcg-cp-tickethistory-view-btn {
        background-color: #34984b;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .tcg-cp-tickethistory-view-btn:hover {
            background-color: #297a3e;
        }

    .tcg-cp-tickethistory-download-btn {
        background: none;
        border: none;
        padding: 5px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #34984b;
    }

        .tcg-cp-tickethistory-download-btn:hover {
            color: #297a3e;
        }

        .tcg-cp-tickethistory-download-btn svg {
            width: 20px;
            height: 20px;
        }

    @media screen and (max-width: 600px) {
        .tcg-cp-tickethistory-responsive-table thead {
            display: none;
        }

        .tcg-cp-tickethistory-responsive-table,
        .tcg-cp-tickethistory-responsive-table tbody,
        .tcg-cp-tickethistory-responsive-table tr,
        .tcg-cp-tickethistory-responsive-table td {
            display: block;
            width: 100%;
        }

            .tcg-cp-tickethistory-responsive-table tr {
                margin-bottom: 15px;
                border-bottom: 2px solid #34984b;
                padding-bottom: 10px;
            }

            .tcg-cp-tickethistory-responsive-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
                border-bottom: 1px solid #e0e0e0;
                padding-top: 10px;
                padding-bottom: 10px;
            }

                .tcg-cp-tickethistory-responsive-table td::before {
                    content: attr(data-label);
                    position: absolute;
                    left: 6px;
                    width: 45%;
                    padding-right: 10px;
                    white-space: nowrap;
                    text-align: left;
                    font-weight: bold;
                }

                .tcg-cp-tickethistory-responsive-table td:last-child {
                    border-bottom: none;
                }
    }

    @media (max-width: 768px) {
        .tcg-cp-tickethistory-container {
            max-width: 100%;
            padding: 10px;
        }

        .tcg-cp-tickethistory-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .tcg-cp-tickethistory-back-btn {
            margin-top: 10px;
            align-self: flex-end;
        }

        .tcg-cp-tickethistory-tab-buttons {
            flex-direction: column;
        }

        .tcg-cp-tickethistory-tab-button {
            width: 100%;
            text-align: left;
            padding: 10px 15px;
        }

        .tcg-cp-tickethistory-grid {
            grid-template-columns: 1fr;
        }

        .hidden {
            display: none;
        }

        .tcg-cp-tickethistory-grid-ticket-information {
            grid-template-columns: 1fr;
        }

        .tcg-cp-tickethistory-section {
            padding: 10px;
            margin-bottom: 10px;
        }

        .tcg-cp-tickethistory-summary-box {
            padding: 15px;
        }

        body, .tcg-cp-tickethistory-ticket-info {
            font-size: 14px;
        }

        .tcg-cp-tickethistory-table {
            display: block;
        }

        .tcg-cp-tickethistory-header-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .tcg-cp-tickethistory-search {
            width: 100%;
            margin-top: 10px;
        }
    }

    .trcg-otp-body {
        font-family: Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
    }

    .trcg-otp-container {
        background-color: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 90%;
        max-width: 450px;
    }

    .trcg-otp-heading {
        color: #2e7d32;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .trcg-otp-text {
        color: #4caf50;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .trcg-otp-input-container {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .trcg-otp-input {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
        text-align: center;
        border: 2px solid #4caf50;
        border-radius: 5px;
        outline: none;
    }

        .trcg-otp-input:focus {
            border-color: #2e7d32;
            box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
        }

    .trcg-otp-button {
        background-color: #4caf50;
        color: white;
        border: none;
        padding: 0.75rem 2rem;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        margin: 0.5rem;
    }

        .trcg-otp-button:hover {
            background-color: #45a049;
        }

        .trcg-otp-button:disabled {
            background-color: #a5d6a7;
            cursor: not-allowed;
        }

    .trcg-otp-resend-button {
        background-color: #81c784;
    }

        .trcg-otp-resend-button:hover {
            background-color: #66bb6a;
        }

    .trcg-otp-timer {
        color: #4caf50;
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    /* Responsive styles for small devices */
    @media (max-width: 480px) {
        .trcg-otp-container {
            padding: 1.5rem;
        }

        .trcg-otp-heading {
            font-size: 1.1rem;
        }

        .trcg-otp-text {
            font-size: 0.9rem;
        }

        .trcg-otp-input {
            width: 1.8rem;
            height: 1.8rem;
            font-size: 1.2rem;
        }

        .trcg-otp-button {
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
        }

        .trcg-otp-timer {
            font-size: 0.8rem;
        }

        .trcg-loading-modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
        }

        .trcg-loading-loader {
            border: 16px solid #f3f3f3; /* Light grey */
            border-top: 16px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 120px;
            height: 120px;
            animation: trcg-loading-spin 2s linear infinite;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        @keyframes trcg-loading-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
    }

#ticketNumber {
    display: inline-block;
    word-break: break-word; /* Allows breaking long words */
}

#customerNumber {
    display: inline-block;
    word-break: break-word; /* Allows breaking long words */
}

.trcg-cp-long-text {
    display: block; /* Forces the span to go below the <strong> element */
}

.blackBackground{
    background: black !important;
}

.height12 {
    height: 20px !important;
}