/* [Global changes] Hide the Donate button */

.btn-primary.btn.donate.minimal {
display: none;
}


.tag-manager-button.btn.btn-secondary {
textContent: 
"\n      \n        \n      \n      Tag Manager\n    "
}


/* [Performers tab] Move the tags row in the Performer's edit panel to the second position (just after name).  */

form#performer-edit {
    display: flex;
    flex-direction: column;
}
#performer-edit > .row:nth-child(21) {
    order: -1;
}
#performer-edit > .row:first-child {
    order: -2;
}
