/*-----------------------------Issue Report------------------------*/

.pg-wrapper-120691 {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: Arial, sans-serif;
}

.pg-wrapper-120691.is-open {
    display: flex;
}

body.pg-overlay-open-120691 {
    overflow: hidden;
    touch-action: none;
}

.pg-overlay-backdrop-120691 {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.58);
}

.pg-overlay-panel-120691 {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.pg-form-120691 {
    width: 100%;
    margin-bottom: 0;
}

.pg-overlay-close-120691 {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pg-overlay-close-120691:hover {
    background-color: rgba(255, 255, 255, 0.28);
}

.pg-inner-wrapper-120691 {
    border: 1px solid #ddd;
    padding: 16px;
}

.pg-label-120691 {
    display: block;
    background-color: var(--ketm-blue);
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    text-transform: none;
    padding-right: 48px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 0 !important;
}

.pg-label-120691 i {
    margin-right: 8px;
}

/* TYPE OPTIONS */

.pg-type-wrapper-120691 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.pg-type-option-120691 {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333333;
}

.pg-type-radio-120691 {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* MESSAGE */

.pg-message-wrapper-120691 {
    display: none;
}

.pg-message-120691 {
    width: 100%;
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: Arial, sans-serif;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 12px;
    border-radius: 0;
}

.pg-message-120691:focus {
    outline: none;
    border-color: #005E86;
}

/* HONEYPOT */

.pg-hp-120691 {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* MAIN BUTTON */

.pg-button-120691 {
    display: inline-block;
    background-color: #005E86 !important;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.pg-button-120691:hover {
    background-color: #0073aa !important;
    color: #fff;
}

.pg-button-120691:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* SUCCESS MESSAGE */

.pg-success-120691 {
    display: none;
    font-size: 12px;
    margin: 16px;
    padding: 12px;
    background-color: rgba(0, 170, 105, 0.15);
    border: 1px solid rgba(0, 170, 105, 0.3);
    color: #0b5d3f;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
}

/* FIXED REPORT BUTTON */

.pg-fixed-button-120691 {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .4);
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none;
    border: none;
    padding: 0;
    appearance: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-fixed-button-120691.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

.pg-fixed-button-120691:hover {
    background-color: #005E86;
    color: #ffffff !important;
}

/* TOOLTIP */

.pg-fixed-button-120691::after {
    content: "Report issue";
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}

/* SHOW TOOLTIP ON HOVER */

.pg-fixed-button-120691:hover::after {
    opacity: 1;
    visibility: visible;
}

/* MOBILE */

@media (max-width: 767px) {

    .pg-wrapper-120691 {
        padding: 16px;
    }

    .pg-overlay-panel-120691 {
        max-height: calc(100vh - 32px);
    }

    .pg-fixed-button-120691::after {
        display: none;
    }

}

@media (max-width: 480px) {

    .pg-fixed-button-120691 {
        right: 10px;
        bottom: 45px;
        width: 26px;
        height: 26px;
        line-height: 24px;
        font-size: 14px;
    }

    .pg-fixed-button-120691::after {
        display: none;
    }

    .pg-label-120691 {
        font-size: 15px;
    }

    .pg-inner-wrapper-120691 {
        padding: 14px;
    }

}