.userQuestion{
    font-style: italic;
    font-size: var(--h4FontSize);
}
.eachAnswerDiv{
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0 0 1vmin 1vmin rgba(0,0.2,0.2,0.2);
    background-color: #00ff0011;
    margin: 2vmin 0;
}
.acceptedAnswer{

    background-color: #00ff0055;
}
.notActual{
    background-color: #dddddd;
}
.likesDiv{
    display: flex;
    flex-direction: column;
}

.like{

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    background-color: var(--buttonBgColor);
    box-shadow: 0 0 0.94vmin 0.94vmin var(--shadowColor);
    border: none;
    padding:1vmin;
    transition: 200ms;

    color: var(--textColor);
    cursor:pointer;
    border-radius:  0.94vmin;
    height:6.58vmin;
    width:auto;
    font-size:var(--h1FontSize);
    margin:0.47vmin;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.disLike{
    width: auto;
}
.likeImg{
    width: 5vmin;
    height: 5vmin;
}
.likeCount{
    width: 5vmin;
    height: 5vmin;
}
.answerDiv{

}
.answerText{

}
.answerA{

    display: flex;
    flex-direction: row;
    box-shadow: 0 0 2px 2px rgba(0,0.2,0.2,0.2);
    cursor: pointer;
    text-decoration: none;
    color: black;
}
.eventLogo{
    width: 25vmin;
    flex: 1;
}
.eventText{
    display: flex;
    flex-direction: column;
    height: 25vmin;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.eventName{
    margin: 0;
}
.eventAddress{
    margin: 0;
}
.newAnswer{
    display: flex;
    flex-direction: column;
}
.addNewAnswerButton{
    width: auto;
    background-color: greenyellow;
    margin:2vmin auto;
}
.newAnswerHidden{
    display: none;
    flex-direction: column;
}
.formLine{
    width: 100%;
}
.inputFields{
    width: 100%;
    font-size: var(--h3FontSize);
}
.sendNewAnswerButton{
    width: auto;
    background-color: greenyellow;
    margin:2vmin auto;
}

.eachQ:hover{
    text-shadow: none;
    box-shadow:
            0 0 1vmin 1vmin #cfca,
            inset  0 0 0.5vmin 0.5vmin #cfca;
}
.eachQ{
    box-shadow: 0 0 0.94vmin 0.94vmin rgba(0.2,0.2,0.2,0.2);
    margin: 2vmin 1vmin;
    padding: 2vmin 1vmin;
    color: black;
    text-decoration: none;
    background-color: var(--backgroundColor);
    border-radius: 2vmin;
}
.addNewQuestionButton{
    margin: auto;
}
.newQuestionHidden{
    display: none;
    flex-direction: column;
}
.sendNewQuestionButton{
    margin: auto;
}