/*
 * Icons in Sticker Menu should be white
 */

[data-reactroot] span div div ul li i[class*="icon-"],
[data-reactroot] span div div i[class*="icon-"] {
  color: #fff;
}

/*
 * 'Create Gif' button should have bold text
 */

[data-reactroot] div.flex button {
  font-weight: bold;
}

/**
 * Check Icon should be green
 */

[data-reactroot] div.check-button i.icon-check {
  color: rgb(0, 227, 158);
}

[data-reactroot] div.check-button:hover i.icon-check {
  color: #0f6549;
}

/**
 * Text Input Boxes should have black colored font
 */

[data-reactroot] div.tracks div.flex input[type="text"] {
  color: black;
}