﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */


.feedbackLabel {
    display: block;
    width: 98%;
    margin: 45px 0 0 0;
    padding: .9%;
    color: #a32323;
    transition-duration: 700ms;
    transition-timing-function: ease-in-out;
    z-index: 500;
    text-align: center;
}

    .feedbackLabel:hover {
        text-decoration: underline;
    }

.feedbackInput {
    display: none;
}

.feedbackContext {
    content: open-quote;
    visibility: hidden;
    width: 98%;
    margin: 0;
    font-size: .3em;
    padding: 0;
    transition-duration: 700ms;
    transition-timing-function: ease-in-out;
}


    .feedbackContext::before p {
        content: open-quote;
    }

    .feedbackContext::after p {
        content: close-quote;
    }
    

.feedbackItem input[type="checkbox"]:checked ~ *.feedbackContext {
    visibility: visible;
    opacity: 100;
    color: #808080;
    font-size: 1.1em;
    background: #fff;
    height: auto;
    overflow: hidden;
    padding: .8%;
    margin: 45px 0 0 0;
}


.feedbackItem input[type="checkbox"]:checked + .feedbackLabel {
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 2px;
    left: 0;
    color: #a32323;
    font-weight: bold;
    opacity: 0;
    font-size: .5em;
    padding: 0;
}


.feedbackAuthor {
    border-bottom: 1px solid #ccc;
    text-align: right;
    margin: 5px;
}

