/* style.css */
.feedback-wrapper {
    display: flex;
    justify-content: center;
}
.feedback-bar {
    position: fixed;
    bottom: 0;
    width: 280px; /* Match the width of topicfooter */
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom-color: #f1f1f1;
    border-radius: 10px 10px 0 0;
    align-items: center;
    display: flex;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
    /* transform: translateX(-50%);
    left: 50%; Centers feedback-bar in the viewport horizontally */
}


/*.feedback-bar:hover {
   opacity: 1;
}*/

.feedbacktext {
		margin-right: 15px;
		font-family: 'Outfit',Arial,sans-serif;
		font-size: 12px;
}

.feedback-bar button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #444444;
    transition: color 0.3s;
}

.feedback-bar button:focus {
    outline: none;
}




.feedback-bar button#thumb-up:hover {
    color: green;
}
.feedback-bar button#thumb-down:hover {
    color: red;
}
.feedback-bar button.green {
    color: green;
}
.feedback-form {
    display: none;
    position: fixed;
    bottom: 0;
    /*left: 50%;
    transform: translateX(-50%);*/
    width: 50%;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
	z-index: 999;
}
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
	font-family: 'Outfit',Arial,sans-serif;

}
.comment-field {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Outfit',Arial,sans-serif;
    font-size: 14px;
    font-weight: lighter;

}
.email-field {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Outfit',Arial,sans-serif;
    font-size: 14px;
    font-weight: lighter;	
}
.submit-button {

    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}
.submit-button:hover {
    background-color: #D30535;
}
.close-form {
    background: none;
    border: none;
    font-size: 20px;
    float: right;
    cursor: pointer;
}
.thank-you-message-yes, .thank-you-message-no {
    display: none;
    position: fixed;
    bottom: 40px;
    /*left: 50%;
    transform: translateX(-50%);*/
    width: 50%;
    text-align: center;
    color: green;
	font-family: 'Outfit',Arial,sans-serif;
}

.emailsubtext {
	font-family: 'Outfit',Arial,sans-serif;
}

.feedbacktitle{
	font-family: 'Outfit',Arial,sans-serif;
	font-weight: bold
}