.feedback-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .feedback-section * {
        margin: 0;
        box-sizing: border-box;
    }

    .feedback-section .input-field {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 5px;
    }

        .feedback-section .input-field label {
            font-size: 0.8rem;
            margin-bottom: 4px;
            font-family: "Segoe UI";
        }

        .feedback-section .input-field input,
        .feedback-section .input-field textarea {
            background: none;
            border-radius: 5px;
            outline: none;
            border: 1px solid rgba(0, 0, 0, 0.2);
            padding: 10px;
        }

            .feedback-section .input-field input::placeholder,
            .feedback-section .input-field textarea::placeholder {
                color: #d1d1d1;
                font-size: 0.8rem;
            }

            .feedback-section .input-field input:focus,
            .feedback-section .input-field textarea:focus {
                border: 1px solid rgb(43, 123, 234);
            }

    .feedback-section form {
        background-color: #f9f9f9;
        padding: 50px;
        width: 500px;
        border-radius: 10px;
        box-shadow: 0 10px 20px 0 rgba(90, 90, 90, 0.2);
    }



    .feedback-section .feedback-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feedback-section .feedback-document {
        display: flex;
        padding: 5px;
        display: flex;
        margin: 40px 0;
        align-items: center;
        justify-content: center;
    }

    .feedback-section .feedback-response {
        display: none;
        padding: 5px;
        margin: 15px 0;
        border-radius: 3px;
        font-size: 1.05rem;
        background-color: #f1f1f1;
        align-items: center;
        justify-content: center;
        color: rgb(2, 118, 219);
    }

    .feedback-section .feedback-document .document {
        border: 1px solid #e2e2e2;
        width: 500px;
        padding: 16px;
        border-radius: 10px;
        transition: all 0.8s;
    }

        .feedback-section .feedback-document .document:hover {
            background-color: #f3f3f3;
        }

    .feedback-section .feedback-document .document {
        text-decoration: none;
        font-size: 1.01rem;
        cursor: pointer;
        color: rgb(0, 106, 255);
    }

    .feedback-section .feedback-container button:hover {
        background-color: rgb(43, 123, 234);
    }

    .feedback-section .feedback-container button:disabled {
        background-color: rgb(143, 143, 143);
    }

    .feedback-section .feedback-container button {
        transition: all 0.4s ease;
        margin-top: 5px;
        padding: 10px;
        font-size: 1rem;
        width: 150px;
        border: 1px solid #bdbdbd;
        border-radius: 5px;
        background-color: rgb(60, 116, 195);
        color: white;
        cursor: pointer;
    }

.text-wrap {
    max-width: 400px !important;
    word-wrap: break-word !important;
    white-space: pre-wrap !important;
}

div.feedBackTable {
    padding: 80px;
}


/*Statistical portal feedback styles*/

#floatMenu {
    position: absolute;
    top: 150px;
    right: 10px;
    margin-left: 235px;
    width: 200px;
    animation: blinker 4s linear infinite;
}

#floatMenu ul {
    margin-bottom: 20px;
}

    #floatMenu ul li a {
        display: block;
        border: 1px solid #999;
        background-color: #222;
        border-left: 6px solid #999;
        text-decoration: none;
        color: #ccc;
        padding: 5px 5px 5px 25px;
        font-weight: bold;
        font-size: 14px;
        text-decoration: none;
    }


    #floatMenu ul.menu li a {
        border-color: #FF5733;
        animation: blinkerBorder 1s linear infinite;
    }

    #floatMenu ul.menu li a:hover {
        border-color: #b8860b;
        color: #b8860b;
    }




@keyframes blinker {
    50% {
        opacity: 0.5;
    }
}

@keyframes blinkerBorder {
    50% {
        opacity: 0.1;
    }
}