/* Content width alignment */
.cfp-feedback-wrapper {
    /* Match typical WP content width variable*/
    max-width: var(--wp--style--global--content-size, 800px);

    /* Center the container */
    margin-left: auto;
    margin-right: auto;

    /* Right-align the text inside the container */
    text-align: right;
    margin-top: 20px;
	padding-bottom:35px;
}

/* Style for the link */
.cfp-feedback-link {
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 390px){
.cfp-feedback-wrapper {
    /* Left-align the text inside the container */
    text-align: left;
	padding-left:10px;
    
}
}