/*-----------------------------Issue Report------------------------*/

.pg-wrapper-120691 {
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.pg-form-120691 {
    width: 100%;
    margin-bottom: 20px;
}

.pg-inner-wrapper-120691 {
    border: 1px solid #ddd;
    padding: 10px;
}

.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;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-bottom: 0 !important;
}

.pg-label-120691 i {
    margin-right: 8px;
}

.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;
}

.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;
    margin-bottom: 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-radius: 2px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.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) {

    /* Kein Tooltip auf Touch Geräten */

    .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;
    }

    /* Kein Tooltip auf Touch Geräten */

    .pg-fixed-button-120691::after {
        display: none;
    }

}