.prio1feedback-elements .header-text{
    text-align: center;
    display: block;
    align-items: center;
    font-family: inherit;
    font-size: 23px;
    font-weight: 600;
    margin: 40px 0px 20px;
}
.prio1feedback-elements .reactions,
.prio1feedback-elements .shares
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0px 10px;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.prio1feedback-elements  .reaction .reaction-button,
.prio1feedback-elements .shares .share-button{
    background-color: #003f20;
    padding: 9px 20px;
    border-radius: 7px;
    color: #fff;
    text-decoration: unset;
    display: block;
    cursor: pointer;
}
.prio1feedback-elements  .reaction .reaction-button.button--selected{
    background-color: #051a05;
}
.prio1feedback-elements  .reaction.feedback-open .reaction-button{
    background-color: #051a05;
}
.prio1feedback-elements  .custom-feedback.custom-feedback-hide{
    display: none;
}
.prio1feedback-elements  .reaction .label{

    font-size: 16px;
}
.prio1feedback-elements  .reaction-button{
    cursor: pointer;
    position: relative;
}
.prio1feedback-elements .reaction-count{
    position: absolute;
    top: -5px;
    right: -6px;
    background-color: #ebf4f0;
    min-width: 20px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
}
.prio1feedback-elements  .custom-feedback{
    max-width: 500px;
    margin: 20px auto;
    width: 100%;
    background-color: #ebf4f0;
    box-sizing: border-box;
    padding: 16px 20px 20px;
    border-radius: 7px;
    font-family: inherit;
}
.prio1feedback-elements  .custom-feedback > p{
    margin-bottom: 10px;
}
.prio1feedback-elements  .custom-feedback .custom-feedback-form > div > label{
    display: block;
}
.prio1feedback-elements  .custom-feedback .custom-feedback-form input[type="text"],
.prio1feedback-elements  .custom-feedback .custom-feedback-form input[type="email"],
.prio1feedback-elements  .custom-feedback .custom-feedback-form textarea{
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: solid 1px #797979;
    outline: unset;
    border-radius: 3px;
}
.prio1feedback-elements  .custom-feedback .custom-feedback-form textarea{
    resize: vertical;
    min-height: 200px;
}
.prio1feedback-elements  .custom-feedback .custom-feedback-form input[type="submit"]{
    background-color: #003f20;
    padding: 9px 20px;
    border-radius: 7px;
    color: #fff;
    text-decoration: unset;
    display: block;
    outline: unset;
    border: unset;
}
#prio1feedback-notification{
    position: fixed;
    top: 37px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 10px 18px 12px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    opacity: 1;
    animation: prio1feedback-notification-visible 0.2s ease-out forwards;
    box-shadow: 1px 1px 3px #00000033;
    border: solid 1px #00000021;
    box-sizing: border-box;

}
@keyframes prio1feedback-notification-visible {
    from {
        opacity: 0;
        top: 0px;
    }
    to {
        opacity: 1;
        top: 37px;
    }
}
#prio1feedback-notification.hide{
    top: 0px;
    opacity: 0;
    animation: prio1feedback-notification-hide 0.2s ease-out forwards;
}
@keyframes prio1feedback-notification-hide {
    from {
        top: 37px;
        opacity: 1;
    }
    to {
        top: 0px;
        opacity: 0;
    }
}