
.feedback-button,
.feedback-button:link,
.feedback-button:visited {
    background: #6E26C1;
    padding: 5px;
    border: 2px solid white;
    border-top: none;
    color: white;
    display: block;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.0em;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    box-shadow: 0 0 5px rgb(0 0 0 / 50%);
    border-radius: 0 0 5px 5px;
}

.feedback-button:hover {
    color: white;
	font-weight:bold;
    text-decoration: none;
}

.feedback-button.feedback-RIGHT {
    left: 100%;
    top: 60%;
    position: fixed; /* ADDED */
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: top left;
    -moz-transform: rotate(90deg);
    -moz-transform-origin: top left;
    -ms-transform: rotate(90deg);
    -ms-transform-origin: top left;
    transform: rotate(90deg);
    transform-origin: top left;
}

.feedback-helpful-container {
    display: none;
    position: fixed; /* CHANGED to accomodate lower resolution or smaller window. Originally fixed. */
    top: 50%; /*CHANGED - Originally 80%. Decreased to accomodate the new Privacy policy text. */ 
    right: 2.5em;
    padding: 1em;
    background-color: white;
    border: 1px solid #d0d3d5;
    border-radius: 0.8em;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
        font-size: 1.0em;
    font-family: Arial, Helvetica, sans-serif;
    width: 18em; /* ADDED - Controls the width of the pop-out container (to accomodate the new Privacy policy text). */
    height: 23em;
}

.feedback-title {
    margin-bottom: 1em;
    margin-top: 0.4em;
    white-space: nowrap;
    font-weight: bold;
    text-align: center;
}

.feedback-trigger,
.feedback-trigger:link,
.feedback-trigger:visited {  	/*  configures buttons   */
    color: white;
    text-decoration: none;
    text-align: center;
    margin: 0.5em; 		/* Spacing around buttons */
    padding: 0.1em 0.7em;  	/* from top, from left */
    border-radius: .50em;
    font-size: 1.0em;
    white-space: nowrap;
    display: flex;
    width: 15em;  		/*Yes-No Button width */
    background: #000000;
    align-items: center;
    justify-content: center;
}

.feedback-trigger:hover {
    color: white;
    font-weight:bold;
    text-decoration: none;
    background: black;
}

.feedback-privacy {
    font-size: .75em;
    text-align: left;
}

.thumbs-up, 
.thumbs-down {
    margin-left: 10px;
}

#feedback-trigger-not-really {
    margin-bottom: 1em;
}


/* USE IF YOU WANT THE BUTTONS TO BE DIFFERENT COLORS
#feedback-trigger-yes {
    background: #4caf50;
}


#feedback-trigger-not-really {
    background: #ff5722;
}
*/
