<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.required{
    color: #f80606;
}

.input-data input {
    padding: 10px;
}
.input-data input.filled {
    border-color: #10de28 !important;
    /* box-shadow: 0 0 8px #596CFF; */
}
.input-data input.error-border {
    border-color: #ff5959 !important;
    /* box-shadow: 0 0 8px #596CFF; */
}
input.form-control {
    border: 1px solid #3b3b88 !important;
  }

p {
    color: #171717 !important;
}
/* Modal container */

#modalOverlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 999; /* Ensure it sits above other content */
}
.modal-slide {
    position: fixed;
    right: -100%; /* Initially hidden on the right */
    top: 0;
    height: 100%;
    width: 300px; /* Default width */
    max-width: 100%; /* Prevents overflow on small screens */
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 0.6s ease; /* Smooth slide-in effect */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto; /* Ensures scrolling if content overflows */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .modal-slide {
        /* width: 100vw; */
        right: -100vw; /* Slide out to full width */
    }

    /* Adjust padding for modal content */
    .modal-content {
        padding: 15px;
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .modal-slide {
        /* width: 100vw; */
        right: -100vw; /* Slide-out width adjusted */
    }

    /* Make header, footer, and close button responsive */
    .modal-header, .modal-footer {
        padding: 10px;
        font-size: 0.9em; /* Slightly smaller font for mobile */
    }

    /* Adjust padding for better mobile display */
    .modal-content {
        padding: 10px;
    }
}

/* Modal header */
.modal-header {
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

/* Content inside the modal */
.modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Footer section at the bottom */
.modal-footer {
    padding: 10px 20px;
    text-align: center;
    border-top: 1px solid #ccc;
}

/* Close button style */
.close-btn {
    position: absolute;
    top: 10px;
    color:red;
    left: 10px; /* Adjusted for right-side modal */
    font-size: 24px;
    cursor: pointer;
}

/* Base modal fade style */
.modal-fade {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 5.0s ease-in-out;
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .modal-fade {
        width: 100vw;
        height: 100vh; /* Full height for mobile */
        max-width: none; /* Removes max width constraint */
        top: 0;
        left: 0;
        transform: none; /* Resets centering transform */
        border-radius: 0; /* Removes border-radius for a full-screen modal */
    }
}

/* Show modal with fade-in effect */
.modal-fade.show {
    display: block;
    opacity: 1;
}

/* Modal content layout */
.modal-header, .modal-footer {
    padding: 10px;
    background-color: #f1f1f1;
    text-align: center;
}

.modal-header-pay{
    padding: 10px;
    background-color: #089006;
    color: #fff;
}

.modal-content-payment {
    padding: 20px;
}

/* Close button styling */
.close-btn2 {
    position: absolute;
    top: 10px;
    right: 10px;
    color:red;
    cursor: pointer;
    font-size: 20px;
}

/* Overlay to prevent clicks outside the modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.pay_true{
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    color: #089006;
  }
  .pay_false{
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    color: #ff0000;
  }

  /* Message button */
.msg-btn-field {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.msg-btn-field button#open-msg-btn {
    width: 70px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
}

.btn-circle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    font-size: 18px;
}

.badge-counter {
    position: absolute;
    top: 8px !important; /* Adjust to position the badge vertically */
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 50%;
    background-color: #dc3545; /* Badge background color */
    color: #fff; /* Badge text color */
    font-weight: bold;
    z-index: 10; /* Ensure it appears above other elements */
}


/* Chat box container */
.msg-box-field {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 9999;
    width: 350px;
    height: 500px;
    display: none;
    display: flex;
    flex-direction: column;
    background: lightgrey;
}

/* Card styling */
.msg-box-field .card {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Header */
.card-header {
    flex-shrink: 0;
}

/* Scrollable message body */
.message-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Footer at the bottom */
.message-footer {
    flex-shrink: 0;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}

.msg-box-clone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}
/* Container for the messages */
.msg-box {
    /* display: inline-block; */
    max-width: 75%;
    margin: 10px 0;
    padding: 10px 15px;
    border-radius: 20px;
    position: relative;
    word-wrap: break-word;
    background-color: #f1f1f1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Left (received) message styling */
.msg-left {
    color: #fff;
    border-top-left-radius: 0;
    margin-left: 10px;
    align-self: flex-start;
}

.msg-right {
    color: #fff;
    border-top-right-radius: 0;
    margin-left: auto;
    align-self: flex-end;
}

/* Message text styling */
.msg {
    margin: 0;
    font-size: 14px;
    overflow-wrap: break-word; /* Allows breaking in long, unspaced words */
    white-space: normal;
}

/* Timestamp styling */
.msg-datetime {
    display: block; /* Keeps timestamp on its own line */
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5); /* Slightly faded */
    margin-top: 5px;
    text-align: right;
    white-space: nowrap; /* Prevents timestamp fro */
}

/* Adding a pointer "tail" effect */
.msg-left::before,
.msg-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Tail for left messages */
.msg-left::before {
    border-width: 10px 10px 10px 0;
    border-color: transparent #ff7518 transparent transparent;
    left: -10px;
    top: 5px;
}

/* Tail for right messages */
.msg-right::before {
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #015fc9;
    right: -10px;
    top: 5px;
}

.bg-white
{
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(128, 128, 128, 0.2);
}


.responsive-text {
    font-size: 1.75rem;
}

@media (max-width: 992px) {
    .responsive-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .responsive-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .responsive-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .children {
        display: none !important; /* Hide the table on small screens */
    }
    .d-md-none .form-group {
        margin-bottom: 1rem;
    }
    .d-md-none .form-group label {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
}

.terms-link:hover{
    color: orangered !important;
}

.btn-close-dark {
    color: #000;
    opacity: 1;
}

.btn-close-dark:hover {
    opacity: 0.8;
}

ol, ul {
    padding-left: 2rem !important;
    color: #232323 !important;
}






</pre></body></html>