﻿


#pg-feedback-lnk a {
        -webkit-text-decoration: none;
        text-decoration: none;
   
    }
#pg-feedback-lnk a:hover {
        -webkit-text-decoration: none;
        text-decoration: none;
    }

.fbpan {
    position: fixed;
    top: 30%;
    left: 51vw;
    transform: translate(-50%,-50%);
    background-color: white;
    width: 36%;
    min-height: 30%;
    border: 1px solid #808080;
    background-color: #ffffff;
    z-index: 1000;
    display: block;
    max-width: 96%;
    padding: 5px 15px 15px 15px;
    box-shadow: 3px 3px 10px 3px #c7b5d3;
}
.textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .textarea:focus {
        color: #495057;
        background-color: #fff;
        border-color: #d69cf3;
        outline: 0;
        box-shadow: inset 0 1px 1px rgb(190 182 237 / 8%), 0 0 7px 0px rgb(231 210 252 / 60%);
    }


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(128,128,128,0.5);
    display: none;
    z-index: 5000;
    /* transition: transform 200ms cubic-bezier(0.24, 0.22, 0.015, 1.56) 0.2s, background 100ms ease-in-out 0.62s; */
}



@media screen and (max-width:992px) {

    .fbpan {
        position: fixed;
        top: 20%;
        left: 5%;
        width: 100%;
        max-width: 28rem;
        transform: translate(-53%,-50%);
    }
 }