﻿
/* Floating Button */
.LC_message-btn {
    position: fixed;
    right: 5px;
    bottom: 5px;
    background-color: #0057A4;
    color: white;
    padding: 10px;
    font-size: 15px;
    border-radius: 20px;
    writing-mode: vertical-rl;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 900;
}
.LCcaps {
    font-size: 19px;
    margin-bottom: -6px;
    margin-left: 2px;
    text-transform: uppercase !important;
}
/* Popup Form */
.LC_popup-form {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 0px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 9999;
}

/* Close button */
.LC_close-btn {
    background-color: transparent !important;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px;
}
/* Icon */
.LC_message-btn i {
    font-size: 16px;
    transform: rotate(90deg);
}

/* Header */
.LC_popup-header {
    background-color: #0057A4;
    color: white;
    padding-right: 5px;
    padding-left: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Form Inputs */
.LC_input, .LC_textarea {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px !important;
}

/* Textarea */
.LC_textarea {
    height: 100px;
    resize: vertical;
}

/* Send Button */
.LC_popup-form button {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 8px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}


/* Force image wrapper to be full width of image */
.popup-image-wrapper {
    width: 300px;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Make image fill that container */
.popup-image {
    width: 130%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0px 0px 0px -45px;
    padding: 0;
}


.LC_input_area {
    padding: 15px 4px 4px 4px;
}

.LC_closing_message {
    background-color: #CFEDFC;
    padding: 15px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    max-width: 400px;
    max-height: 400px;
    height: 210px;
    padding-top: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

    .LC_closing_message p {
        color: #154B85;
        font-weight: bold;
    }

.error-label {
    display: none;
    color: red;
    font-size: 10px;
    margin-top: -10px;
}

.LC_error_message {
    background-color: #CFEDFC; /* Light red background */
    /*   border: 1px solid #ff4d4d; */ /* Red border */
    padding: 15px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

    .LC_error_message h6 {
        color: #d32f2f; /* Dark red color */
        font-size: 18px;
        margin-bottom: 10px;
    }

    .LC_error_message p {
        color: #333;
        font-size: 14px;
        margin: 5px 0;
    }

    .LC_error_message a {
        color: #0056b3;
        text-decoration: none;
        font-weight: bold;
    }

        .LC_error_message a:hover {
            text-decoration: underline;
        }

    .LC_error_message .LC_address {
        font-size: 13px;
        color: #555;
        margin-top: 10px;
    }

