@keyframes ripple_effect {
  from {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
  to {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); } }
@keyframes flat_ripple_effect {
  from {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
  to {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); } }
@keyframes list_ripple_effect {
  from {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.05)); }
  to {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.4, to(alpha(currentColor, 0.15)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); } }
* {
  padding: 0;
  background-clip: padding-box;
  transition-property: opacity, border-color, border-image, box-shadow, background-color, background-image, text-shadow, icon-shadow;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -GtkToolButton-icon-spacing: 4;
  -GtkTextView-error-underline-color: #DD2C00;
  -GtkCheckButton-indicator-size: 20;
  -GtkCheckMenuItem-indicator-size: 16;
  -GtkScrolledWindow-scrollbar-spacing: 0;
  -GtkScrolledWindow-scrollbars-within-bevel: 1;
  -GtkToolItemGroup-expander-size: 11;
  -GtkExpander-expander-size: 16;
  -GtkTreeView-expander-size: 11;
  -GtkTreeView-horizontal-separator: 4;
  -GtkMenu-horizontal-padding: 0;
  -GtkMenu-vertical-padding: 0;
  -GtkWidget-link-color: #00BCD4;
  -GtkWidget-visited-link-color: #E040FB;
  -GtkWidget-focus-padding: 2;
  -GtkWidget-focus-line-width: 1;
  -GtkWidget-text-handle-width: 20;
  -GtkWidget-text-handle-height: 20;
  -GtkDialog-button-spacing: 4;
  -GtkDialog-action-area-border: 0;
  -GtkStatusbar-shadow-type: none;
  outline-style: solid;
  outline-width: 2px;
  outline-color: alpha(currentColor, 0.3);
  outline-offset: -4px;
  outline-radius: 2px; }

/***************
 * Base States *
 ***************/
.background {
  background-color: #ECEFF1;
  color: rgba(0, 0, 0, 0.8); }

/*
   These wildcard seems unavoidable, need to investigate.
   Wildcards are bad and troublesome, use them with care,
   or better, just don't.
   Everytime a wildcard is used a kitten dies, painfully.
*/
*:insensitive {
  -gtk-image-effect: dim; }

.gtkstyle-fallback {
  background-color: #ECEFF1;
  color: rgba(0, 0, 0, 0.8); }
  .gtkstyle-fallback:prelight {
    background-color: #dde3e6;
    color: rgba(0, 0, 0, 0.8); }
  .gtkstyle-fallback:active {
    background-color: #cfd6db;
    color: rgba(0, 0, 0, 0.8); }
  .gtkstyle-fallback:insensitive {
    background-color: #ECEFF1;
    color: rgba(0, 0, 0, 0.32); }
  .gtkstyle-fallback:selected {
    background-color: #00BCD4;
    color: #FFFFFF; }

.view {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.8); }
  .view:hover, .view:active, .view:selected, GtkCalendar:selected {
    border-radius: 2px; }
  .view:insensitive {
    color: rgba(0, 0, 0, 0.32); }

.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband {
  border: 1px solid #00E5FF;
  background-color: rgba(0, 229, 255, 0.3); }

.label.separator {
  color: rgba(0, 0, 0, 0.8); }
.label:insensitive {
  color: rgba(0, 0, 0, 0.32); }

.dim-label, .label.separator, .titlebar .subtitle,
.header-bar .subtitle {
  opacity: 0.6; }

GtkAssistant .sidebar {
  padding: 6px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  GtkAssistant .sidebar:dir(ltr) {
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
  GtkAssistant .sidebar:dir(rtl) {
    border-left: 1px solid rgba(0, 0, 0, 0.1); }
GtkAssistant.csd .sidebar {
  border-top-style: none; }
GtkAssistant .sidebar .label {
  opacity: 0.6;
  padding: 5px 12px 6px;
  font-weight: bold; }
GtkAssistant .sidebar .label.highlight {
  opacity: 1; }

GtkTextView {
  background-color: #f6f7f8; }

.grid-child {
  padding: 4px;
  border-radius: 2px; }

.popover.osd, .app-notification,
.app-notification.frame, .osd .scale-popup, .floating-bar, .osd {
  opacity: 0.9; }

/*********************
 * Spinner Animation *
 *********************/
@keyframes spin {
  to {
    -gtk-icon-transform: rotate(1turn); } }
.spinner {
  background-color: blue;
  background-image: none;
  opacity: 0;
  -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
  .spinner:active {
    opacity: 1;
    animation: spin 1s linear infinite; }
    .spinner:active:insensitive {
      opacity: 0.4; }

/****************
 * Text Entries *
 ****************/
.entry {
  padding: 7px 8px 8px;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.8); }
  .entry:focus {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .entry:insensitive {
    color: rgba(0, 0, 0, 0.32);
    background-color: #f6f7f8; }
  .entry.flat, .notebook:not(.reorderable-page) > .entry {
    border-radius: 0;
    border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#00BCD4), to(transparent)) 0 0 0/0 0 0px;
    border-radius: 0;
    box-shadow: inset 0 -1px alpha(currentColor, 0.3);
    background-color: transparent;
    color: rgba(0, 0, 0, 0.8); }
    .entry.flat:focus, .notebook:not(.reorderable-page) > .entry:focus {
      border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#00BCD4), to(transparent)) 0 0 2/0 0 2px;
      box-shadow: inset 0 -2px #00BCD4;
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0 cubic-bezier(0.4, 0, 0.2, 1) 0.2s, color 0; }
    .entry.flat:insensitive, .notebook:not(.reorderable-page) > .entry:insensitive {
      box-shadow: inset 0 -1px alpha(currentColor, 0.3);
      background-color: transparent;
      color: rgba(0, 0, 0, 0.32); }
  .entry.image.left {
    padding-left: 2px; }
  .entry.image.right {
    padding-right: 2px; }
  .entry.progressbar, GtkTreeView.view.progressbar, GtkTreeView.view.trough {
    margin: 2px;
    border-style: none none solid;
    border-width: 2px;
    border-color: #00BCD4;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
    background-image: none; }
  .entry.error {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: #DD2C00;
    color: #FFFFFF; }
    .entry.error:focus {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
    .entry.error:insensitive {
      color: rgba(0, 0, 0, 0.32);
      background-color: #f6f7f8; }
    .entry.error.flat, .notebook:not(.reorderable-page) > .error.entry {
      border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#DD2C00), to(transparent)) 0 0 0/0 0 0px;
      border-radius: 0;
      box-shadow: inset 0 -1px #DD2C00;
      background-color: transparent;
      color: rgba(0, 0, 0, 0.8); }
      .entry.error.flat:focus, .notebook:not(.reorderable-page) > .error.entry:focus {
        border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#DD2C00), to(transparent)) 0 0 2/0 0 2px;
        box-shadow: inset 0 -2px #DD2C00;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0 cubic-bezier(0.4, 0, 0.2, 1) 0.2s, color 0; }
      .entry.error.flat:insensitive, .notebook:not(.reorderable-page) > .error.entry:insensitive {
        box-shadow: inset 0 -1px alpha(currentColor, 0.3);
        background-color: transparent;
        color: rgba(0, 0, 0, 0.32); }
  .entry.warning {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: #FF6D00;
    color: #FFFFFF; }
    .entry.warning:focus {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
    .entry.warning:insensitive {
      color: rgba(0, 0, 0, 0.32);
      background-color: #f6f7f8; }
    .entry.warning.flat, .notebook:not(.reorderable-page) > .warning.entry {
      border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#FF6D00), to(transparent)) 0 0 0/0 0 0px;
      border-radius: 0;
      box-shadow: inset 0 -1px #FF6D00;
      background-color: transparent;
      color: rgba(0, 0, 0, 0.8); }
      .entry.warning.flat:focus, .notebook:not(.reorderable-page) > .warning.entry:focus {
        border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#FF6D00), to(transparent)) 0 0 2/0 0 2px;
        box-shadow: inset 0 -2px #FF6D00;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0 cubic-bezier(0.4, 0, 0.2, 1) 0.2s, color 0; }
      .entry.warning.flat:insensitive, .notebook:not(.reorderable-page) > .warning.entry:insensitive {
        box-shadow: inset 0 -1px alpha(currentColor, 0.3);
        background-color: transparent;
        color: rgba(0, 0, 0, 0.32); }
  .entry.image:not(:hover):not(:active) {
    color: alpha(currentColor, 0.75); }
  .entry.image:insensitive {
    color: alpha(currentColor, 0.6); }

/***********
 * Buttons *
 ***********/
@keyframes needs_attention {
  from {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.001, to(#FF4081), to(transparent)); }
  to {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#FF4081), to(transparent)); } }
.button {
  padding: 7px 10px 8px;
  border-radius: 2px;
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 90px 90px, auto;
  font-weight: 500;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #FAFAFA;
  background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0));
  color: rgba(0, 0, 0, 0.6); }
  .button:hover {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0));
    color: rgba(0, 0, 0, 0.8); }
  .button:active {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
    color: rgba(0, 0, 0, 0.8);
    transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
    animation: ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .button:insensitive {
    box-shadow: none;
    background-color: alpha(currentColor, 0.3);
    color: rgba(0, 0, 0, 0.24); }
    .button:insensitive > .label {
      color: inherit; }
  .button:checked {
    background-color: #00BCD4;
    color: #FFFFFF; }
  .button:checked:insensitive {
    background-color: alpha(currentColor, 0.3);
    color: rgba(0, 188, 212, 0.4); }
    .button:checked:insensitive > .label {
      color: inherit; }
  .button.flat, .inline-toolbar .button, .osd .toolbar .button, .toolbar.osd .button, .app-notification .button,
  .app-notification.frame .button, .titlebar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .button:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .button, .sidebar-button.button {
    box-shadow: none;
    background-color: transparent;
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
    .button.flat:hover, .inline-toolbar .button:hover, .osd .toolbar .button:hover, .toolbar.osd .button:hover, .app-notification .button:hover, .titlebar .button:hover:not(.suggested-action):not(.destructive-action),
    .header-bar .button:hover:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .button:hover, .sidebar-button.button:hover {
      box-shadow: none;
      background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
    .button.flat:active, .inline-toolbar .button:active, .osd .toolbar .button:active, .toolbar.osd .button:active, .app-notification .button:active, .titlebar .button:active:not(.suggested-action):not(.destructive-action),
    .header-bar .button:active:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .button:active, .sidebar-button.button:active {
      box-shadow: none;
      transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
      animation: flat_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
    .button.flat:insensitive, .inline-toolbar .button:insensitive, .osd .toolbar .button:insensitive, .toolbar.osd .button:insensitive, .app-notification .button:insensitive, .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .button:insensitive, .sidebar-button.button:insensitive {
      box-shadow: none;
      background-color: transparent; }
    .button.flat:checked, .inline-toolbar .button:checked, .osd .toolbar .button:checked, .toolbar.osd .button:checked, .app-notification .button:checked, .titlebar .button:checked:not(.suggested-action):not(.destructive-action),
    .header-bar .button:checked:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .button:checked, .sidebar-button.button:checked {
      background-color: alpha(currentColor, 0.3);
      color: rgba(0, 0, 0, 0.8); }
    .button.flat:checked:insensitive > .label, .inline-toolbar .button:checked:insensitive > .label, .osd .toolbar .button:checked:insensitive > .label, .toolbar.osd .button:checked:insensitive > .label, .app-notification .button:checked:insensitive > .label, .titlebar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label,
    .header-bar .button:checked:insensitive:not(.suggested-action):not(.destructive-action) > .label, .message-dialog.csd .dialog-action-area .button:checked:insensitive > .label, .sidebar-button.button:checked:insensitive > .label {
      color: inherit; }
    .linked > .button.flat, .inline-toolbar .linked > .button, .osd .toolbar .linked > .button, .toolbar.osd .linked > .button, .app-notification .linked > .button, .titlebar .linked > .button:not(.suggested-action):not(.destructive-action),
    .header-bar .linked > .button:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .linked > .button, .linked > .sidebar-button.button {
      border-radius: 2px; }
      .linked > .button.flat.image-button, .inline-toolbar .linked > .image-button.button, .osd .toolbar .linked > .image-button.button, .toolbar.osd .linked > .image-button.button, .app-notification .linked > .image-button.button, .titlebar .linked > .image-button.button:not(.suggested-action):not(.destructive-action),
      .header-bar .linked > .image-button.button:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .linked > .image-button.button, .linked > .image-button.sidebar-button.button {
        outline-radius: 100px;
        border-radius: 100px; }
  .button.osd.image-button {
    padding: 16px;
    background-size: 60px 60px, auto; }
  .button.osd:insensitive {
    opacity: 0; }
  .button.suggested-action {
    background-color: #FF4081;
    color: #FFFFFF; }
    .button.suggested-action:insensitive {
      box-shadow: none;
      background-color: alpha(currentColor, 0.3);
      color: rgba(0, 0, 0, 0.32); }
      .button.suggested-action:insensitive > .label {
        color: inherit; }
    .button.suggested-action:checked {
      background-color: #ff79a7; }
    .button.suggested-action.flat, .inline-toolbar .suggested-action.button, .osd .toolbar .suggested-action.button, .toolbar.osd .suggested-action.button, .app-notification .suggested-action.button, .titlebar .suggested-action.button:not(.suggested-action):not(.destructive-action),
    .header-bar .suggested-action.button:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .suggested-action.button, .suggested-action.sidebar-button.button {
      background-color: transparent;
      color: #FF4081; }
      .button.suggested-action.flat:insensitive, .inline-toolbar .suggested-action.button:insensitive, .osd .toolbar .suggested-action.button:insensitive, .toolbar.osd .suggested-action.button:insensitive, .app-notification .suggested-action.button:insensitive, .titlebar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action),
      .header-bar .suggested-action.button:insensitive:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .suggested-action.button:insensitive, .suggested-action.sidebar-button.button:insensitive {
        box-shadow: none;
        background-color: transparent; }
  .button.destructive-action {
    background-color: #FF5252;
    color: #FFFFFF; }
    .button.destructive-action:insensitive {
      box-shadow: none;
      background-color: alpha(currentColor, 0.3);
      color: rgba(0, 0, 0, 0.32); }
      .button.destructive-action:insensitive > .label {
        color: inherit; }
    .button.destructive-action:checked {
      background-color: #ff8686; }
    .button.destructive-action.flat, .inline-toolbar .destructive-action.button, .osd .toolbar .destructive-action.button, .toolbar.osd .destructive-action.button, .app-notification .destructive-action.button, .titlebar .destructive-action.button:not(.suggested-action):not(.destructive-action),
    .header-bar .destructive-action.button:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .destructive-action.button, .destructive-action.sidebar-button.button {
      background-color: transparent;
      color: #FF5252; }
      .button.destructive-action.flat:insensitive, .inline-toolbar .destructive-action.button:insensitive, .osd .toolbar .destructive-action.button:insensitive, .toolbar.osd .destructive-action.button:insensitive, .app-notification .destructive-action.button:insensitive, .titlebar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action),
      .header-bar .destructive-action.button:insensitive:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .destructive-action.button:insensitive, .destructive-action.sidebar-button.button:insensitive {
        box-shadow: none;
        background-color: transparent; }
  .button.text-button, GtkScaleButton.button.text-button,
  GtkVolumeButton.button.text-button {
    padding-left: 16px;
    padding-right: 16px; }
  .button.text-button.image-button {
    padding: 7px 10px 8px;
    outline-radius: 2px;
    border-radius: 2px;
    background-size: 90px 90px, auto; }
    .button.text-button.image-button .label:first-child {
      padding-left: 6px; }
    .button.text-button.image-button .label:last-child {
      padding-right: 6px; }
  .stack-switcher > .button {
    outline-offset: -4px; }
    .stack-switcher > .button > .label {
      padding-left: 6px;
      padding-right: 6px; }
    .stack-switcher > .button > GtkImage {
      padding-left: 6px;
      padding-right: 6px;
      padding-top: 3px;
      padding-bottom: 3px; }
    .stack-switcher > .button.text-button {
      padding: 7px 10px 8px; }
    .stack-switcher > .button.image-button {
      padding: 7px 4px; }
    .stack-switcher > .button.needs-attention:checked > .label, .stack-switcher > .button.needs-attention:checked > GtkImage {
      animation: none;
      background-image: none; }
  .primary-toolbar .button {
    icon-shadow: none; }

.button.image-button, .inline-toolbar .button, .spinbutton .button, .notebook tab .button, GtkScaleButton.button,
GtkVolumeButton.button, .header-bar .button.titlebutton,
.titlebar .button.titlebutton {
  padding: 10px;
  outline-radius: 100px;
  border-radius: 100px;
  background-size: 45px 45px, auto; }

.stack-switcher > .button.needs-attention > .label, .stack-switcher > .button.needs-attention > GtkImage, .sidebar-item.needs-attention > .label {
  transition: none;
  animation: needs_attention 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background-repeat: no-repeat;
  background-position: right 3px;
  background-size: 6px 6px; }
  .stack-switcher > .button.needs-attention > .label:dir(rtl), .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .sidebar-item.needs-attention > .label:dir(rtl) {
    background-position: left 3px; }

.linked > .entry:not(.flat), .linked > .button:not(.flat):not(:only-child), .linked > GtkComboBox > .the-button-in-the-combobox:dir(ltr), .linked > GtkComboBox > .the-button-in-the-combobox:dir(rtl),
.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(ltr),
.linked > GtkComboBoxText > .the-button-in-the-combobox:dir(rtl) {
  border-radius: 0; }

.linked > .entry:not(.flat), .linked > .button:not(.flat):not(:only-child) {
  outline-radius: 2px; }
  .linked > .entry:first-child:not(.flat), .linked > .button:first-child:not(.flat):not(:only-child), .linked > GtkComboBox:first-child > .the-button-in-the-combobox,
  .linked > GtkComboBoxText:first-child > .the-button-in-the-combobox {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px; }
  .linked > .entry:last-child:not(.flat), .linked > .button:last-child:not(.flat):not(:only-child), .linked > GtkComboBox:last-child > .the-button-in-the-combobox,
  .linked > GtkComboBoxText:last-child > .the-button-in-the-combobox {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px; }
  .linked > .entry:only-child:not(.flat), .linked > .button:only-child:not(.flat):not(:only-child), .linked > GtkComboBox:only-child > .the-button-in-the-combobox,
  .linked > GtkComboBoxText:only-child > .the-button-in-the-combobox {
    border-radius: 2px; }

.linked.vertical > .entry:not(.flat), .linked.vertical > .button:not(.flat):not(:only-child), .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox,
.linked.vertical > GtkComboBox > .the-button-in-the-combobox {
  border-radius: 0; }

.linked.vertical > .entry:not(.flat), .linked.vertical > .button:not(.flat):not(:only-child) {
  outline-radius: 2px; }
  .linked.vertical > .entry:first-child:not(.flat), .linked.vertical > .button:first-child:not(.flat):not(:only-child), .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox,
  .linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  .linked.vertical > .entry:last-child:not(.flat), .linked.vertical > .button:last-child:not(.flat):not(:only-child), .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox,
  .linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }
  .linked.vertical > .entry:only-child:not(.flat), .linked.vertical > .button:only-child:not(.flat):not(:only-child), .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox,
  .linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox {
    border-radius: 2px; }

/* menu buttons */
GtkColorButton.button {
  padding: 7px 8px 8px; }
  GtkColorButton.button GtkColorSwatch:first-child:last-child {
    border-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }

/*********
 * Links *
 *********/
*:link, .button:link, .button:visited {
  color: #00BCD4; }
  *:link:hover, .button:hover:link, .button:hover:visited, *:link:active, .button:active:link, .button:active:visited {
    color: #00BCD4; }
  *:link:visited, .button:visited {
    color: #E040FB; }
    *:link:visited:hover, .button:visited:hover, *:link:visited:active, .button:visited:active {
      color: #E040FB; }
    *:selected *:link:visited, *:selected .button:visited {
      color: #99e4ee; }
  *:link:selected, .button:selected:link, .button:selected:visited, .titlebar.selection-mode .subtitle:link,
  .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
    color: #ccf2f6; }

.button:link > .label, .button:visited > .label {
  text-decoration-line: underline; }

/*****************
 * GtkSpinButton *
 *****************/
.spinbutton .button {
  padding: 4px;
  border: solid 6px transparent;
  box-shadow: none;
  background-color: transparent;
  background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
  .spinbutton .button:hover {
    box-shadow: none;
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
  .spinbutton .button:active {
    box-shadow: none;
    transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
    animation: flat_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
  .spinbutton .button:insensitive {
    box-shadow: none;
    background-color: transparent; }
.spinbutton.vertical .button {
  padding-top: 10px;
  padding-bottom: 10px;
  border: none; }
  .spinbutton.vertical .button:first-child {
    border-radius: 2px 2px 0 0; }
  .spinbutton.vertical .button:last-child {
    border-radius: 0 0 2px 2px; }

/**************
 * ComboBoxes *
 **************/
GtkComboBox {
  -GtkComboBox-arrow-scaling: 0.5;
  -GtkComboBox-shadow-type: none; }
  GtkComboBox > .the-button-in-the-combobox {
    padding: 5px 6px 6px; }
  GtkComboBox .menu .menuitem {
    padding: 5px 6px 6px; }
  GtkComboBox .separator.vertical {
    -GtkWidget-wide-separators: true; }
  GtkComboBox.combobox-entry .entry:dir(ltr) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  GtkComboBox.combobox-entry .entry:dir(rtl) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  GtkComboBox.combobox-entry .button {
    padding: 10px; }
    GtkComboBox.combobox-entry .button:dir(ltr) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    GtkComboBox.combobox-entry .button:dir(rtl) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }

/************
 * Toolbars *
 ************/
.toolbar {
  -GtkWidget-window-dragging: true;
  padding: 4px;
  background-color: #ECEFF1; }
  .osd .toolbar, .toolbar.osd, .app-notification,
  .app-notification.frame {
    padding: 6px;
    border-style: solid;
    border-width: 8px;
    border-image: -gtk-scaled(url("assets/osd-shadow.png"), url("assets/osd-shadow@2.png")) 10/10px stretch;
    border-radius: 2px;
    background-color: #FFFFFF; }
    .osd .toolbar:backdrop, .toolbar.osd:backdrop, .app-notification:backdrop {
      border-image: -gtk-scaled(url("assets/osd-shadow-backdrop.png"), url("assets/osd-shadow-backdrop@2.png")) 10/10px stretch; }

.inline-toolbar {
  padding: 6px;
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #f6f7f8; }

.search-bar, .location-bar {
  padding: 6px;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #dee4e7;
  background-clip: border-box; }

/***************
 * Header bars *
 ***************/
.titlebar,
.header-bar {
  padding: 6px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
  background-color: #dee4e7;
  background-clip: border-box; }
  .titlebar .title,
  .header-bar .title {
    padding-left: 12px;
    padding-right: 12px;
    font-weight: bold; }
  .titlebar .subtitle,
  .header-bar .subtitle {
    padding-left: 12px;
    padding-right: 12px;
    font-size: smaller; }
  .titlebar .header-bar-separator, .titlebar > GtkBox > .separator.vertical,
  .header-bar .header-bar-separator,
  .header-bar > GtkBox > .separator.vertical {
    -GtkWidget-wide-separators: true;
    -GtkWidget-separator-width: 1px;
    border-style: solid;
    border-width: 0 1px;
    border-color: rgba(0, 0, 0, 0.1); }
  .titlebar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .button:not(.suggested-action):not(.destructive-action) {
    border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#00BCD4), to(transparent)) 0 0 0/0 0 0px; }
    .titlebar .button:not(.suggested-action):not(.destructive-action):checked,
    .header-bar .button:not(.suggested-action):not(.destructive-action):checked {
      border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#00BCD4), to(transparent)) 0 0 2/0 0 2px;
      background-color: transparent;
      color: rgba(0, 0, 0, 0.8); }
      .titlebar .button:not(.suggested-action):not(.destructive-action):checked:insensitive,
      .header-bar .button:not(.suggested-action):not(.destructive-action):checked:insensitive {
        background-color: transparent;
        color: rgba(0, 0, 0, 0.32); }
        .titlebar .button:not(.suggested-action):not(.destructive-action):checked:insensitive > .label,
        .header-bar .button:not(.suggested-action):not(.destructive-action):checked:insensitive > .label {
          color: inherit; }
  .titlebar.selection-mode,
  .header-bar.selection-mode {
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
    background-color: #00BCD4;
    color: #FFFFFF; }
    .titlebar.selection-mode .button,
    .header-bar.selection-mode .button {
      border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.001, to(#FFFFFF), to(transparent)) 0 0 0/0 0 0px;
      color: rgba(255, 255, 255, 0.75); }
      .titlebar.selection-mode .button:hover, .titlebar.selection-mode .button:active, .titlebar.selection-mode .button:checked,
      .header-bar.selection-mode .button:hover,
      .header-bar.selection-mode .button:active,
      .header-bar.selection-mode .button:checked {
        color: #FFFFFF; }
      .titlebar.selection-mode .button:checked,
      .header-bar.selection-mode .button:checked {
        border-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.5, to(#FFFFFF), to(transparent)) 0 0 2/0 0 2px;
        color: #FFFFFF; }
        .titlebar.selection-mode .button:checked:insensitive,
        .header-bar.selection-mode .button:checked:insensitive {
          color: rgba(0, 0, 0, 0.32); }
          .titlebar.selection-mode .button:checked:insensitive > .label,
          .header-bar.selection-mode .button:checked:insensitive > .label {
            color: inherit; }
      .titlebar.selection-mode .button.suggested-action,
      .header-bar.selection-mode .button.suggested-action {
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        background-color: #FAFAFA;
        background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0));
        color: rgba(0, 0, 0, 0.6); }
        .titlebar.selection-mode .button.suggested-action:hover,
        .header-bar.selection-mode .button.suggested-action:hover {
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
          background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0));
          color: rgba(0, 0, 0, 0.8); }
        .titlebar.selection-mode .button.suggested-action:active,
        .header-bar.selection-mode .button.suggested-action:active {
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
          color: rgba(0, 0, 0, 0.8);
          transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
          animation: ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
        .titlebar.selection-mode .button.suggested-action:insensitive,
        .header-bar.selection-mode .button.suggested-action:insensitive {
          box-shadow: none;
          background-color: alpha(currentColor, 0.3);
          color: rgba(0, 0, 0, 0.24); }
          .titlebar.selection-mode .button.suggested-action:insensitive > .label,
          .header-bar.selection-mode .button.suggested-action:insensitive > .label {
            color: inherit; }
    .titlebar.selection-mode .selection-menu,
    .header-bar.selection-mode .selection-menu {
      padding-left: 16px;
      padding-right: 16px; }
      .titlebar.selection-mode .selection-menu GtkArrow,
      .header-bar.selection-mode .selection-menu GtkArrow {
        -GtkArrow-arrow-scaling: 1; }
      .titlebar.selection-mode .selection-menu .arrow,
      .header-bar.selection-mode .selection-menu .arrow {
        -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  .tiled .titlebar, .maximized .titlebar, .tiled
  .header-bar, .maximized
  .header-bar {
    border-radius: 0;
    box-shadow: none; }
  .titlebar.default-decoration,
  .header-bar.default-decoration {
    padding: 6px;
    border-width: 0; }
    .titlebar.default-decoration .button,
    .header-bar.default-decoration .button {
      padding: 4px; }

/************
 * Pathbars *
 ************/
.path-bar .button {
  padding: 7px 6px 8px; }
  .path-bar .button.image-button {
    padding: 10px; }
  .path-bar .button:only-child {
    padding-left: 16px;
    padding-right: 16px; }
  .path-bar .button .label:last-child {
    padding-left: 2px; }
  .path-bar .button .label:first-child {
    padding-right: 2px; }
  .path-bar .button .label:only-child {
    padding-right: 0;
    padding-left: 0; }
  .path-bar .button GtkImage {
    padding-top: 1px; }

/**************
 * Tree Views *
 **************/
GtkTreeView.view {
  -GtkTreeView-grid-line-width: 1;
  -GtkTreeView-grid-line-pattern: '';
  -GtkTreeView-tree-line-width: 1;
  -GtkTreeView-tree-line-pattern: '';
  -GtkTreeView-expander-size: 16;
  border-left-color: alpha(currentColor, 0.3);
  border-top-color: rgba(0, 0, 0, 0.1);
  border-radius: 0; }
  GtkTreeView.view:hover, GtkTreeView.view:active, GtkTreeView.view:selected {
    border-radius: 0; }
  GtkTreeView.view.dnd {
    border-style: solid none;
    border-width: 1px;
    border-color: rgba(0, 113, 127, 0.9); }
  GtkTreeView.view.expander {
    -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
    GtkTreeView.view.expander:dir(rtl) {
      -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
    GtkTreeView.view.expander:checked {
      -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
    GtkTreeView.view.expander:selected {
      color: rgba(255, 255, 255, 0.75); }
      GtkTreeView.view.expander:selected:hover, GtkTreeView.view.expander:selected:active {
        color: #FFFFFF; }
  GtkTreeView.view.progressbar {
    border-width: 4px; }
    GtkTreeView.view.progressbar:selected {
      border-color: currentColor; }
  GtkTreeView.view.trough {
    border-width: 4px;
    border-color: rgba(0, 188, 212, 0.3); }
    GtkTreeView.view.trough:selected {
      border-color: alpha(currentColor, 0.3); }

column-header .button {
  padding: 3px 6px 4px;
  border-style: none solid solid none;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  box-shadow: none;
  background-color: #FFFFFF; }
  column-header .button:hover, column-header .button:active {
    box-shadow: none; }
  column-header .button:insensitive {
    background-color: #FFFFFF; }
column-header:last-child .button, column-header:last-child.button {
  border-right-style: none; }

column-header.button.dnd, column-header .button.dnd {
  border-left-style: solid;
  background-clip: padding-box;
  color: #00BCD4; }

/*********
 * Menus *
 *********/
.menubar {
  -GtkWidget-window-dragging: true;
  padding: 0px;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1);
  background-color: #dee4e7; }
  .menubar > .menuitem {
    padding: 4px 8px;
    color: rgba(0, 0, 0, 0.6); }
    .menubar > .menuitem:hover {
      box-shadow: inset 0 -2px #00BCD4;
      color: rgba(0, 0, 0, 0.8); }
    .menubar > .menuitem:insensitive {
      color: rgba(0, 0, 0, 0.32);
      box-shadow: none; }

.menu {
  margin: 4px;
  padding: 0px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1); }
  .csd .menu {
    border: none; }
  .menu .menuitem {
    transition: none;
    padding: 3px 4px 4px;
    font: initial;
    text-shadow: none; }
    .menu .menuitem:hover {
      color: #FFFFFF;
      background-color: #00BCD4; }
    .menu .menuitem:insensitive {
      color: rgba(0, 0, 0, 0.32); }
    .menu .menuitem.arrow {
      -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
    .menu .menuitem.arrow:dir(rtl) {
      -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  .menu.button {
    border-style: none;
    border-radius: 0; }
    .menu.button.top {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .menu.button.bottom {
      border-top: 1px solid rgba(0, 0, 0, 0.1); }
    .menu.button:hover {
      background-color: alpha(currentColor, 0.3); }
    .menu.button:insensitive {
      color: transparent;
      background-color: transparent;
      border-color: transparent; }

.menuitem .accelerator {
  color: alpha(currentColor, 0.6); }

/***************
 * Popovers   *
 ***************/
.popover {
  padding: 2px;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background-color: #f6f7f8;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .popover:backdrop {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .popover > .list,
  .popover > .view,
  .popover > .toolbar, .popover.osd > .toolbar {
    border-style: none;
    border-image: none;
    background-color: transparent; }
  .popover .button.flat, .popover .inline-toolbar .button, .inline-toolbar .popover .button, .popover .osd .toolbar .button, .osd .toolbar .popover .button, .popover .toolbar.osd .button, .toolbar.osd .popover .button, .popover .app-notification .button, .app-notification .popover .button, .popover .titlebar .button:not(.suggested-action):not(.destructive-action), .titlebar .popover .button:not(.suggested-action):not(.destructive-action),
  .popover .header-bar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .popover .button:not(.suggested-action):not(.destructive-action), .popover .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .popover .button, .popover .sidebar-button.button {
    padding: 5px 8px 6px;
    background-color: transparent;
    background-size: 160px 160px, auto;
    color: rgba(0, 0, 0, 0.8);
    font: initial; }
  .popover .linked > .button {
    border-radius: 2px;
    box-shadow: none;
    background-color: transparent;
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
    .popover .linked > .button:hover {
      box-shadow: none;
      background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
    .popover .linked > .button:active {
      box-shadow: none;
      transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
      animation: flat_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
    .popover .linked > .button:insensitive {
      box-shadow: none;
      background-color: transparent; }
    .popover .linked > .button:checked {
      background-color: #00BCD4;
      color: #FFFFFF; }
    .popover .linked > .button:checked:insensitive {
      background-color: alpha(currentColor, 0.3);
      color: rgba(0, 188, 212, 0.4); }
      .popover .linked > .button:checked:insensitive > .label {
        color: inherit; }
    .popover .linked > .button.image-button {
      background-size: 90px 90px, auto; }

/*****************
 * Notebooks and *
 * Tabs          *
 *****************/
.notebook {
  padding: 0;
  background-color: #FFFFFF;
  -GtkNotebook-initial-gap: 6;
  -GtkNotebook-arrow-spacing: 5;
  -GtkNotebook-tab-curvature: 0;
  -GtkNotebook-tab-overlap: 1;
  -GtkNotebook-has-tab-gap: false;
  -GtkWidget-focus-padding: 0;
  -GtkWidget-focus-line-width: 0; }
  .notebook.frame {
    border: 1px solid rgba(0, 0, 0, 0.1); }
    .notebook.frame.top {
      border-top-width: 0; }
    .notebook.frame.bottom {
      border-bottom-width: 0; }
    .notebook.frame.right {
      border-right-width: 0; }
    .notebook.frame.left {
      border-left-width: 0; }
  .notebook.header {
    background-color: #dee4e7; }
    .notebook.header.frame {
      border: 1px solid rgba(0, 0, 0, 0.1); }
      .notebook.header.frame.top {
        border-bottom-width: 0; }
      .notebook.header.frame.bottom {
        border-top-width: 0; }
      .notebook.header.frame.right {
        border-left-width: 0; }
      .notebook.header.frame.left {
        border-right-width: 0; }
    .notebook.header.top {
      box-shadow: inset 0 -1px rgba(0, 0, 0, 0.1); }
    .notebook.header.bottom {
      box-shadow: inset 0 1px rgba(0, 0, 0, 0.1); }
    .notebook.header.right {
      box-shadow: inset 1px 0 rgba(0, 0, 0, 0.1); }
    .notebook.header.left {
      box-shadow: inset -1px 0 rgba(0, 0, 0, 0.1); }
  .notebook tab {
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    background-color: transparent;
    outline-offset: 0;
    /* works for testnotebookdnd, but there's a superfluous border
       in gedit or web, commented out for now, needs gtk fixes
    &.reorderable-page {
      &.top {
        padding-top: ($vt_vpadding - 1px);
        border-top-width: 1px;
        border-left-width: 1px;
        border-right-width: 1px;
      }
      &.bottom {
        padding-bottom: ($vt_vpadding - 1px);
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-right-width: 1px;
      }
      &.left {
        padding-left: ($ht_hpadding - 1px);
        border-left-width: 1px;
        border-top-width: 1px;
        border-bottom-width: 1px;
      }
      &.right {
        padding-right: ($ht_hpadding - 1px);
        border-right-width: 1px;
        border-top-width: 1px;
        border-bottom-width: 1px;
      }
    }
    */ }
    .notebook tab.top, .notebook tab.bottom {
      padding: 8px 20px; }
    .notebook tab.left, .notebook tab.right {
      padding: 5px 20px; }
    .notebook tab.reorderable-page {
      -GtkNotebook-tab-overlap: 1; }
      .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom {
        padding-left: 12px;
        padding-right: 12px;
        border-left-width: 1px;
        border-right-width: 1px; }
      .notebook tab.reorderable-page.left, .notebook tab.reorderable-page.right {
        border-bottom-width: 1px;
        border-top-width: 1px; }
    .notebook tab.top {
      border-bottom-width: 2px; }
    .notebook tab.bottom {
      border-top-width: 2px; }
    .notebook tab.left {
      border-right-width: 2px; }
    .notebook tab.right {
      border-left-width: 2px; }
    .notebook tab:hover, .notebook tab.prelight-page {
      border-color: alpha(currentColor, 0.3); }
    .notebook tab:active, .notebook tab.active-page {
      border-color: #00BCD4; }
    .notebook tab.reorderable-page.top {
      border-color: transparent; }
      .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-bottom-width: 1px;
        border-bottom-color: transparent;
        background-color: #ECEFF1; }
      .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-bottom-width: 1px;
        border-bottom-color: transparent;
        background-color: #FAFAFA; }
    .notebook tab.reorderable-page.bottom {
      border-color: transparent; }
      .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-top-width: 1px;
        border-top-color: transparent;
        background-color: #ECEFF1; }
      .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-top-width: 1px;
        border-top-color: transparent;
        background-color: #FAFAFA; }
    .notebook tab.reorderable-page.left {
      border-color: transparent; }
      .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-right-width: 1px;
        border-right-color: transparent;
        background-color: #ECEFF1; }
      .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-right-width: 1px;
        border-right-color: transparent;
        background-color: #FAFAFA; }
    .notebook tab.reorderable-page.right {
      border-color: transparent; }
      .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-left-width: 1px;
        border-left-color: transparent;
        background-color: #ECEFF1; }
      .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page {
        border-color: rgba(0, 0, 0, 0.1);
        border-left-width: 1px;
        border-left-color: transparent;
        background-color: #FAFAFA; }
    .notebook tab .label {
      padding: 0 2px;
      font-weight: bold;
      color: rgba(0, 0, 0, 0.6); }
    .notebook tab .prelight-page .label, .notebook tab .label.prelight-page {
      color: rgba(0, 0, 0, 0.8); }
    .notebook tab .active-page .label, .notebook tab .label.active-page {
      color: rgba(0, 0, 0, 0.8); }
    .notebook tab .button {
      padding: 0;
      background-size: 30px 30px, auto;
      box-shadow: none;
      background-color: transparent;
      background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
      .notebook tab .button:hover {
        box-shadow: none;
        background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
      .notebook tab .button:active {
        box-shadow: none;
        transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
        animation: flat_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
      .notebook tab .button:insensitive {
        box-shadow: none;
        background-color: transparent; }
      .notebook tab .button > GtkImage {
        padding: 4px; }
  .notebook.arrow:not(:hover):not(:active) {
    color: alpha(currentColor, 0.75); }
  .notebook.arrow:insensitive {
    color: rgba(0, 0, 0, 0.32); }

/**************
 * Scrollbars *
 **************/
.scrollbar {
  -GtkRange-slider-width: 17px;
  -GtkRange-trough-border: 0;
  -GtkScrollbar-has-backward-stepper: false;
  -GtkScrollbar-has-forward-stepper: false;
  -GtkScrollbar-min-slider-length: 32px;
  -GtkRange-stepper-spacing: 0;
  -GtkRange-trough-under-steppers: 1; }
  .scrollbar .button {
    border: none; }
  .scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
    -GtkRange-slider-width: 12px; }
    .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider {
      margin: 2px;
      border: 2px solid rgba(255, 255, 255, 0.3); }
    .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .trough {
      border-style: none;
      background-color: transparent; }
  .scrollbar.overlay-indicator.dragging .trough, .scrollbar.overlay-indicator.hovering .trough {
    background-color: rgba(255, 255, 255, 0.9); }
  .scrollbar .trough {
    border: 1px none rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    background-clip: padding-box; }
  .scrollbar .slider {
    background-color: rgba(0, 0, 0, 0.48); }
    .scrollbar .slider:hover {
      background-color: rgba(0, 0, 0, 0.6); }
    .scrollbar .slider:active {
      background-color: rgba(0, 0, 0, 0.8); }
    .scrollbar .slider:insensitive {
      opacity: 0.4; }
  .scrollbar .slider {
    border-radius: 100px;
    margin: 4px; }
  .scrollbar.fine-tune .slider {
    margin: 6px; }
  .scrollbar.vertical .slider {
    margin-left: 5px; }
    .scrollbar.vertical .slider:dir(rtl) {
      margin-left: 4px;
      margin-right: 5px; }
  .scrollbar.vertical.fine-tune .slider {
    margin-left: 7px; }
    .scrollbar.vertical.fine-tune .slider:dir(rtl) {
      margin-left: 6px;
      margin-right: 7px; }
  .scrollbar.vertical .trough {
    border-left-style: solid; }
    .scrollbar.vertical .trough:dir(rtl) {
      border-left-style: none;
      border-right-style: solid; }
  .scrollbar.horizontal .slider {
    margin-top: 5px; }
  .scrollbar.horizontal.fine-tune .slider {
    margin-top: 7px; }
  .scrollbar.horizontal .trough {
    border-top-style: solid; }

.scrollbars-junction,
.scrollbars-junction.frame {
  border-style: solid none none solid;
  background-color: #FFFFFF; }
  .scrollbars-junction:dir(rtl),
  .scrollbars-junction.frame:dir(rtl) {
    border-style: solid solid none none; }

/**********
 * Switch *
 **********/
GtkSwitch {
  -GtkSwitch-slider-width: 24px;
  -GtkSwitch-slider-height: 24px;
  outline-offset: -4px;
  outline-radius: 100px;
  font-size: 0; }
  GtkSwitch.trough {
    border: 8px solid transparent;
    border-radius: 100px;
    background-color: alpha(currentColor, 0.3); }
    GtkSwitch.trough:insensitive {
      color: rgba(0, 0, 0, 0.32); }
    GtkSwitch.trough:active {
      background-color: rgba(255, 64, 129, 0.5);
      color: #FFFFFF; }
      GtkSwitch.trough:active:insensitive {
        background-color: rgba(255, 64, 129, 0.2);
        color: rgba(0, 0, 0, 0.32); }
  GtkSwitch.slider {
    padding: 4px;
    border-radius: 100px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: #FFFFFF;
    color: rgba(0, 0, 0, 0.8); }
    GtkSwitch.slider:hover {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
    GtkSwitch.slider:active {
      background-color: #FF4081; }
    GtkSwitch.slider:insensitive {
      color: rgba(0, 0, 0, 0.32);
      background-color: #f6f7f8; }

/*************************
 * Check and Radio items *
 *************************/
.check {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:hover, .check:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:insensitive {
    icon-shadow: none; }

.check:active {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active.png"), url("assets/checkbox-unchecked-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:active:hover, .check:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:active:insensitive {
    icon-shadow: none; }

.check:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:insensitive:hover, .check:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:insensitive:insensitive {
    icon-shadow: none; }

.check:inconsistent {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:inconsistent:hover, .check:inconsistent:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:inconsistent:insensitive {
    icon-shadow: none; }

.check:inconsistent:active {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active.png"), url("assets/checkbox-mixed-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:inconsistent:active:hover, .check:inconsistent:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:inconsistent:active:insensitive {
    icon-shadow: none; }

.check:inconsistent:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:inconsistent:insensitive:hover, .check:inconsistent:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:inconsistent:insensitive:insensitive {
    icon-shadow: none; }

.check:checked {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:checked:hover, .check:checked:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:checked:insensitive {
    icon-shadow: none; }

.check:checked:active {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active.png"), url("assets/checkbox-checked-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:checked:active:hover, .check:checked:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:checked:active:insensitive {
    icon-shadow: none; }

.check:checked:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .check:checked:insensitive:hover, .check:checked:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .check:checked:insensitive:insensitive {
    icon-shadow: none; }

.menu .menuitem.check {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-symbolic.png"), url("assets/checkbox-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-symbolic-dark.png"), url("assets/checkbox-symbolic-dark@2.png")); }

.menu .menuitem.check:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-insensitive-symbolic.png"), url("assets/checkbox-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-insensitive-symbolic-dark.png"), url("assets/checkbox-insensitive-symbolic-dark@2.png")); }

.menu .menuitem.check:inconsistent {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-symbolic.png"), url("assets/checkbox-mixed-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:inconsistent:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-symbolic-dark.png"), url("assets/checkbox-mixed-symbolic-dark@2.png")); }

.menu .menuitem.check:inconsistent:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-symbolic.png"), url("assets/checkbox-mixed-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:inconsistent:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-symbolic-dark.png"), url("assets/checkbox-mixed-insensitive-symbolic-dark@2.png")); }

.menu .menuitem.check:checked {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-symbolic.png"), url("assets/checkbox-checked-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:checked:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-symbolic-dark.png"), url("assets/checkbox-checked-symbolic-dark@2.png")); }

.menu .menuitem.check:checked:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-symbolic.png"), url("assets/checkbox-checked-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.check:checked:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-symbolic-dark.png"), url("assets/checkbox-checked-insensitive-symbolic-dark@2.png")); }

.radio {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:hover, .radio:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:insensitive {
    icon-shadow: none; }

.radio:active {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active.png"), url("assets/radio-unchecked-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:active:hover, .radio:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:active:insensitive {
    icon-shadow: none; }

.radio:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:insensitive:hover, .radio:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:insensitive:insensitive {
    icon-shadow: none; }

.radio:inconsistent {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:inconsistent:hover, .radio:inconsistent:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:inconsistent:insensitive {
    icon-shadow: none; }

.radio:inconsistent:active {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active.png"), url("assets/radio-mixed-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:inconsistent:active:hover, .radio:inconsistent:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:inconsistent:active:insensitive {
    icon-shadow: none; }

.radio:inconsistent:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:inconsistent:insensitive:hover, .radio:inconsistent:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:inconsistent:insensitive:insensitive {
    icon-shadow: none; }

.radio:checked {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:checked:hover, .radio:checked:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:checked:insensitive {
    icon-shadow: none; }

.radio:checked:active {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active.png"), url("assets/radio-checked-active@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:checked:active:hover, .radio:checked:active:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:checked:active:insensitive {
    icon-shadow: none; }

.radio:checked:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png"));
  icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  .radio:checked:insensitive:hover, .radio:checked:insensitive:active {
    icon-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .radio:checked:insensitive:insensitive {
    icon-shadow: none; }

.menu .menuitem.radio {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-symbolic.png"), url("assets/radio-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-symbolic-dark.png"), url("assets/radio-symbolic-dark@2.png")); }

.menu .menuitem.radio:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-insensitive-symbolic.png"), url("assets/radio-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-insensitive-symbolic-dark.png"), url("assets/radio-insensitive-symbolic-dark@2.png")); }

.menu .menuitem.radio:inconsistent {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-symbolic.png"), url("assets/radio-mixed-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:inconsistent:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-symbolic-dark.png"), url("assets/radio-mixed-symbolic-dark@2.png")); }

.menu .menuitem.radio:inconsistent:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-symbolic.png"), url("assets/radio-mixed-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:inconsistent:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-symbolic-dark.png"), url("assets/radio-mixed-insensitive-symbolic-dark@2.png")); }

.menu .menuitem.radio:checked {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-symbolic.png"), url("assets/radio-checked-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:checked:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-symbolic-dark.png"), url("assets/radio-checked-symbolic-dark@2.png")); }

.menu .menuitem.radio:checked:insensitive {
  -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-symbolic.png"), url("assets/radio-checked-insensitive-symbolic@2.png"));
  icon-shadow: none; }
  .menu .menuitem.radio:checked:insensitive:hover {
    -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-symbolic-dark.png"), url("assets/radio-checked-insensitive-symbolic-dark@2.png")); }

.view.content-view.check:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png"));
  background-color: transparent; }

.view.content-view.check:active:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-active-selectionmode.png"), url("assets/checkbox-active-selectionmode@2.png"));
  background-color: transparent; }

.view.content-view.check:insensitive:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-insensitive-selectionmode.png"), url("assets/checkbox-insensitive-selectionmode@2.png"));
  background-color: transparent; }

.view.content-view.check:checked:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png"));
  background-color: transparent; }

.view.content-view.check:checked:active:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-selectionmode.png"), url("assets/checkbox-checked-active-selectionmode@2.png"));
  background-color: transparent; }

.view.content-view.check:insensitive:checked:not(.list) {
  -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selectionmode.png"), url("assets/checkbox-checked-insensitive-selectionmode@2.png"));
  background-color: transparent; }

GtkCheckButton.text-button, GtkRadioButton.text-button {
  padding: 2px 4px;
  outline-offset: 0; }

/************
 * GtkScale *
 ************/
.scale,
.scale.scale-has-marks-above.scale-has-marks-below,
.scale.vertical.scale-has-marks-above.scale-has-marks-below {
  -GtkScale-slider-length: 20;
  -GtkRange-slider-width: 20;
  -GtkRange-trough-border: 2;
  outline-offset: -8px;
  outline-radius: 100px; }
  .scale.fine-tune.slider,
  .scale.scale-has-marks-above.scale-has-marks-below.fine-tune.slider,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.fine-tune.slider {
    background-size: 80%; }
  .scale.slider:not(:hover):not(:active),
  .scale.scale-has-marks-above.scale-has-marks-below.slider:not(:hover):not(:active),
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider:not(:hover):not(:active) {
    background-size: 80%; }
  .scale.slider.slider,
  .scale.scale-has-marks-above.scale-has-marks-below.slider.slider,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider.png"), url("assets/slider@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.slider.slider:active,
  .scale.scale-has-marks-above.scale-has-marks-below.slider.slider:active,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider:active {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-active.png"), url("assets/slider-active@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.slider.slider:insensitive,
  .scale.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.slider.slider:insensitive {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-insensitive.png"), url("assets/slider-insensitive@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.trough,
  .scale.scale-has-marks-above.scale-has-marks-below.trough,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough {
    margin: 10px 12px;
    background-color: alpha(currentColor, 0.3); }
    .scale.trough.highlight,
    .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight,
    .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight {
      background-color: #FF4081; }
      .scale.trough.highlight:insensitive,
      .scale.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive,
      .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.highlight:insensitive {
        background-color: alpha(currentColor, 0.3); }
    .scale.trough:insensitive,
    .scale.scale-has-marks-above.scale-has-marks-below.trough:insensitive,
    .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough:insensitive {
      color: rgba(0, 0, 0, 0.32); }
    .scale.trough.vertical,
    .scale.scale-has-marks-above.scale-has-marks-below.trough.vertical,
    .scale.vertical.scale-has-marks-above.scale-has-marks-below.trough.vertical {
      margin: 12px 10px; }
  .scale.separator,
  .scale.scale-has-marks-above.scale-has-marks-below.separator,
  .scale.vertical.scale-has-marks-above.scale-has-marks-below.separator {
    color: alpha(currentColor, 0.3); }

.scale.scale-has-marks-below {
  -GtkScale-slider-length: 20;
  -GtkRange-slider-width: 25;
  -GtkRange-trough-border: 2; }
  .scale.scale-has-marks-below.slider {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below.png"), url("assets/slider-horz-scale-has-marks-below@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.scale-has-marks-below.slider:active {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-active.png"), url("assets/slider-horz-scale-has-marks-below-active@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.scale-has-marks-below.slider:insensitive {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-below-insensitive.png"), url("assets/slider-horz-scale-has-marks-below-insensitive@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }

.scale.scale-has-marks-above {
  -GtkScale-slider-length: 20;
  -GtkRange-slider-width: 25;
  -GtkRange-trough-border: 2; }
  .scale.scale-has-marks-above.slider {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.scale-has-marks-above.slider:active {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.scale-has-marks-above.slider:insensitive {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-insensitive.png"), url("assets/slider-horz-scale-has-marks-above-insensitive@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }

.scale.vertical.scale-has-marks-below {
  -GtkScale-slider-length: 20;
  -GtkRange-slider-width: 25;
  -GtkRange-trough-border: 2; }
  .scale.vertical.scale-has-marks-below.slider {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below.png"), url("assets/slider-vert-scale-has-marks-below@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.vertical.scale-has-marks-below.slider:active {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-active.png"), url("assets/slider-vert-scale-has-marks-below-active@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.vertical.scale-has-marks-below.slider:insensitive {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-below-insensitive.png"), url("assets/slider-vert-scale-has-marks-below-insensitive@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }

.scale.vertical.scale-has-marks-above {
  -GtkScale-slider-length: 20;
  -GtkRange-slider-width: 25;
  -GtkRange-trough-border: 2; }
  .scale.vertical.scale-has-marks-above.slider {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above.png"), url("assets/slider-vert-scale-has-marks-above@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.vertical.scale-has-marks-above.slider:active {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-active.png"), url("assets/slider-vert-scale-has-marks-above-active@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }
  .scale.vertical.scale-has-marks-above.slider:insensitive {
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    background-image: -gtk-scaled(url("assets/slider-vert-scale-has-marks-above-insensitive.png"), url("assets/slider-vert-scale-has-marks-above-insensitive@2.png"));
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: none; }

.scale.scale-has-marks-above .trough {
  margin: 15px 12px 10px; }

.scale.scale-has-marks-below .trough {
  margin: 10px 12px 15px; }

.scale.vertical.scale-has-marks-above .trough {
  margin: 12px 10px 12px 15px; }

.scale.vertical.scale-has-marks-below .trough {
  margin: 12px 15px 12px 10px; }

/*****************
 * Progress bars *
 *****************/
GtkProgressBar {
  -GtkProgressBar-min-horizontal-bar-height: 4;
  -GtkProgressBar-min-vertical-bar-width: 4;
  padding: 0;
  font-size: smaller;
  color: rgba(0, 0, 0, 0.48); }
  GtkProgressBar.osd {
    -GtkProgressBar-xspacing: 0;
    -GtkProgressBar-yspacing: 0;
    -GtkProgressBar-min-horizontal-bar-height: 4; }
  GtkProgressBar.trough {
    border-radius: 0;
    background-color: rgba(0, 188, 212, 0.3); }
    GtkProgressBar.trough.osd {
      border-style: none;
      box-shadow: none; }

.progressbar {
  border-radius: 0;
  background-color: #00BCD4; }
  .progressbar.left {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .progressbar.right {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .progressbar.left.right {
    box-shadow: none; }
  .progressbar.vertical.bottom {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none; }
  .progressbar.vertical.top {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .progressbar.osd {
    background-image: none;
    background-color: #00BCD4;
    border-style: none;
    border-radius: 0; }

/*************
 * Level Bar *
 *************/
.level-bar {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -GtkLevelBar-min-block-width: 36;
  -GtkLevelBar-min-block-height: 4; }
  .level-bar.vertical {
    -GtkLevelBar-min-block-width: 4;
    -GtkLevelBar-min-block-height: 36; }
  .level-bar.trough {
    padding: 2px;
    border-radius: 2px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background-color: #FFFFFF;
    color: rgba(0, 0, 0, 0.8); }
    .level-bar.trough:insensitive {
      color: rgba(0, 0, 0, 0.32);
      background-color: #f6f7f8; }
    .level-bar.trough.indicator-discrete.horizontal {
      padding: 2px 1px; }
    .level-bar.trough.indicator-discrete.vertical {
      padding: 1px 2px; }
  .level-bar.fill-block {
    background-color: #00BCD4;
    border-radius: 0;
    box-shadow: none; }
    .level-bar.fill-block.indicator-discrete.horizontal {
      margin: 0 1px; }
    .level-bar.fill-block.indicator-discrete.vertical {
      margin: 1px 0; }
    .level-bar.fill-block.level-high {
      background-color: #00C853; }
    .level-bar.fill-block.level-low {
      background-color: #FF6D00; }
    .level-bar.fill-block.empty-fill-block {
      background-color: alpha(currentColor, 0.3); }

/**********
 * Frames *
 **********/
.frame {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0; }
  .frame.flat {
    border-style: none; }
  .frame.action-bar {
    padding: 6px;
    border-width: 1px 0 0; }

GtkScrolledWindow GtkViewport.frame {
  border-style: none; }

.separator {
  color: rgba(0, 0, 0, 0.1); }
  GtkFileChooserButton .separator.vertical, GtkFontButton .separator.vertical {
    -GtkWidget-wide-separators: true; }

/*********
 * Lists *
 *********/
.list {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF; }

.list-row,
.grid-child {
  padding: 2px; }

.list-row.activatable, .view, column-header .button {
  background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0));
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 240px 240px, auto; }
  .list-row.activatable:hover, .view:hover, column-header .button:hover {
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.05)); }
  .list-row.activatable:active, .view:active, column-header .button:active, GtkPlacesSidebar.sidebar .has-open-popup {
    transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
    animation: list_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.list-row:selected .button:insensitive {
  color: rgba(0, 0, 0, 0.24); }
.list-row:selected .button.flat, .list-row:selected .inline-toolbar .button, .inline-toolbar .list-row:selected .button, .list-row:selected .osd .toolbar .button, .osd .toolbar .list-row:selected .button, .list-row:selected .toolbar.osd .button, .toolbar.osd .list-row:selected .button, .list-row:selected .app-notification .button, .app-notification .list-row:selected .button, .list-row:selected .titlebar .button:not(.suggested-action):not(.destructive-action), .titlebar .list-row:selected .button:not(.suggested-action):not(.destructive-action),
.list-row:selected .header-bar .button:not(.suggested-action):not(.destructive-action),
.header-bar .list-row:selected .button:not(.suggested-action):not(.destructive-action), .list-row:selected .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .list-row:selected .button, .list-row:selected .sidebar-button.button {
  color: rgba(255, 255, 255, 0.75); }
  .list-row:selected .button.flat:hover, .list-row:selected .inline-toolbar .button:hover, .inline-toolbar .list-row:selected .button:hover, .list-row:selected .osd .toolbar .button:hover, .osd .toolbar .list-row:selected .button:hover, .list-row:selected .toolbar.osd .button:hover, .toolbar.osd .list-row:selected .button:hover, .list-row:selected .app-notification .button:hover, .app-notification .list-row:selected .button:hover, .list-row:selected .titlebar .button:hover:not(.suggested-action):not(.destructive-action), .titlebar .list-row:selected .button:hover:not(.suggested-action):not(.destructive-action),
  .list-row:selected .header-bar .button:hover:not(.suggested-action):not(.destructive-action),
  .header-bar .list-row:selected .button:hover:not(.suggested-action):not(.destructive-action), .list-row:selected .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .list-row:selected .button:hover, .list-row:selected .sidebar-button.button:hover, .list-row:selected .button.flat:active, .list-row:selected .inline-toolbar .button:active, .inline-toolbar .list-row:selected .button:active, .list-row:selected .osd .toolbar .button:active, .osd .toolbar .list-row:selected .button:active, .list-row:selected .toolbar.osd .button:active, .toolbar.osd .list-row:selected .button:active, .list-row:selected .app-notification .button:active, .app-notification .list-row:selected .button:active, .list-row:selected .titlebar .button:active:not(.suggested-action):not(.destructive-action), .titlebar .list-row:selected .button:active:not(.suggested-action):not(.destructive-action),
  .list-row:selected .header-bar .button:active:not(.suggested-action):not(.destructive-action),
  .header-bar .list-row:selected .button:active:not(.suggested-action):not(.destructive-action), .list-row:selected .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .list-row:selected .button:active, .list-row:selected .sidebar-button.button:active {
    color: #FFFFFF; }
  .list-row:selected .button.flat:insensitive, .list-row:selected .inline-toolbar .button:insensitive, .inline-toolbar .list-row:selected .button:insensitive, .list-row:selected .osd .toolbar .button:insensitive, .osd .toolbar .list-row:selected .button:insensitive, .list-row:selected .toolbar.osd .button:insensitive, .toolbar.osd .list-row:selected .button:insensitive, .list-row:selected .app-notification .button:insensitive, .app-notification .list-row:selected .button:insensitive, .list-row:selected .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action), .titlebar .list-row:selected .button:insensitive:not(.suggested-action):not(.destructive-action),
  .list-row:selected .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action),
  .header-bar .list-row:selected .button:insensitive:not(.suggested-action):not(.destructive-action), .list-row:selected .message-dialog.csd .dialog-action-area .button:insensitive, .message-dialog.csd .dialog-action-area .list-row:selected .button:insensitive, .list-row:selected .sidebar-button.button:insensitive {
    color: rgba(0, 0, 0, 0.24); }

.list-row:hover {
  transition-duration: 0; }

/*********************
 * App Notifications *
 *********************/
/*************
 * Expanders *
 *************/
.expander {
  -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
  .expander:dir(rtl) {
    -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
  .expander:checked {
    -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
  .expander:not(:hover):not(:active) {
    color: alpha(currentColor, 0.75); }
  .expander:selected {
    color: #FFFFFF; }

/************
 * Calendar *
 ***********/
GtkCalendar {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8); }
  GtkCalendar.header {
    border: 1px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.1);
    border-radius: 0; }
  GtkCalendar.button {
    box-shadow: none;
    background-color: transparent;
    background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0)); }
    GtkCalendar.button:hover {
      box-shadow: none;
      background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(alpha(currentColor, 0)), to(transparent)), linear-gradient(to bottom, alpha(currentColor, 0.15)); }
    GtkCalendar.button:active {
      box-shadow: none;
      transition-property: opacity, border-color, border-image, box-shadow, background-color, text-shadow, icon-shadow;
      animation: flat_ripple_effect 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
    GtkCalendar.button:insensitive {
      box-shadow: none;
      background-color: transparent; }
  GtkCalendar:inconsistent {
    color: alpha(currentColor, 0.6); }
  GtkCalendar.highlight {
    font-size: smaller;
    color: alpha(currentColor, 0.6); }

/***********
 * Dialogs *
 ***********/
.message-dialog .dialog-action-area .button {
  padding: 8px; }

.message-dialog.background {
  background-color: #FAFAFA; }
.message-dialog .titlebar {
  border-style: none;
  background-color: #FAFAFA; }
.message-dialog.csd.background {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }
.message-dialog.csd .dialog-action-area .button {
  padding: 9px 16px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background-size: 240px 240px, auto; }
  .message-dialog.csd .dialog-action-area .button:first-child {
    border-radius: 0 0 0 2px; }
  .message-dialog.csd .dialog-action-area .button:last-child {
    border-radius: 0 0 2px 0; }

GtkFileChooserDialog .dialog-action-box {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

/***********
 * Sidebar *
 ***********/
.sidebar {
  border: none;
  background-color: #f6f7f8; }

GtkSidebarRow.list-row {
  padding: 0px; }
GtkSidebarRow .sidebar-revealer {
  padding: 4px 14px 4px 12px; }
GtkSidebarRow .sidebar-icon {
  opacity: 0.6; }
  GtkSidebarRow .sidebar-icon:dir(ltr) {
    padding-right: 8px; }
  GtkSidebarRow .sidebar-icon:dir(rtl) {
    padding-left: 8px; }
GtkSidebarRow .sidebar-label:dir(ltr) {
  padding-right: 2px; }
GtkSidebarRow .sidebar-label:dir(rtl) {
  padding-left: 2px; }

GtkPlacesSidebar.sidebar .sidebar-placeholder-row {
  border: solid 1px #00BCD4; }
GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row {
  color: #FF4081; }
.sidebar-button.button.image-button {
  padding: 4px; }

.sidebar-item {
  padding: 10px 4px; }
  .sidebar-item > .label {
    padding-left: 6px;
    padding-right: 6px; }

/*********
 * Paned *
 *********/
GtkPaned {
  -GtkPaned-handle-size: 1;
  -gtk-icon-source: none;
  margin: 0 8px 8px 0; }
  GtkPaned:dir(rtl) {
    margin-right: 0;
    margin-left: 8px; }
  GtkPaned .pane-separator {
    background-color: rgba(0, 0, 0, 0.1); }

GtkPaned.wide {
  -GtkPaned-handle-size: 6;
  margin: 0; }
  GtkPaned.wide .pane-separator {
    background-color: transparent;
    border-style: none solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 1px; }
  GtkPaned.wide.vertical .pane-separator {
    border-style: solid none; }

/**************
 * GtkInfoBar *
 **************/
GtkInfoBar {
  border-style: none; }

.info {
  background-color: #66BB6A; }

.question {
  background-color: #42A5F5; }

.warning {
  background-color: #FFA726; }

.error {
  background-color: #EF5350; }

.info,
.question,
.warning,
.error {
  color: #FFFFFF; }
  .info .button:insensitive,
  .question .button:insensitive,
  .warning .button:insensitive,
  .error .button:insensitive {
    color: rgba(0, 0, 0, 0.24); }
  .info .button.flat, .info .inline-toolbar .button, .inline-toolbar .info .button, .info .osd .toolbar .button, .osd .toolbar .info .button, .info .toolbar.osd .button, .toolbar.osd .info .button, .info .app-notification .button, .app-notification .info .button, .info .titlebar .button:not(.suggested-action):not(.destructive-action), .titlebar .info .button:not(.suggested-action):not(.destructive-action),
  .info .header-bar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .info .button:not(.suggested-action):not(.destructive-action), .info .message-dialog.csd .dialog-action-area .button, .message-dialog.csd .dialog-action-area .info .button, .info .sidebar-button.button,
  .question .button.flat,
  .question .inline-toolbar .button,
  .inline-toolbar .question .button,
  .question .osd .toolbar .button,
  .osd .toolbar .question .button,
  .question .toolbar.osd .button,
  .toolbar.osd .question .button,
  .question .app-notification .button,
  .app-notification .question .button,
  .question .titlebar .button:not(.suggested-action):not(.destructive-action),
  .titlebar .question .button:not(.suggested-action):not(.destructive-action),
  .question .header-bar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .question .button:not(.suggested-action):not(.destructive-action),
  .question .message-dialog.csd .dialog-action-area .button,
  .message-dialog.csd .dialog-action-area .question .button,
  .question .sidebar-button.button,
  .warning .button.flat,
  .warning .inline-toolbar .button,
  .inline-toolbar .warning .button,
  .warning .osd .toolbar .button,
  .osd .toolbar .warning .button,
  .warning .toolbar.osd .button,
  .toolbar.osd .warning .button,
  .warning .app-notification .button,
  .app-notification .warning .button,
  .warning .titlebar .button:not(.suggested-action):not(.destructive-action),
  .titlebar .warning .button:not(.suggested-action):not(.destructive-action),
  .warning .header-bar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .warning .button:not(.suggested-action):not(.destructive-action),
  .warning .message-dialog.csd .dialog-action-area .button,
  .message-dialog.csd .dialog-action-area .warning .button,
  .warning .sidebar-button.button,
  .error .button.flat,
  .error .inline-toolbar .button,
  .inline-toolbar .error .button,
  .error .osd .toolbar .button,
  .osd .toolbar .error .button,
  .error .toolbar.osd .button,
  .toolbar.osd .error .button,
  .error .app-notification .button,
  .app-notification .error .button,
  .error .titlebar .button:not(.suggested-action):not(.destructive-action),
  .titlebar .error .button:not(.suggested-action):not(.destructive-action),
  .error .header-bar .button:not(.suggested-action):not(.destructive-action),
  .header-bar .error .button:not(.suggested-action):not(.destructive-action),
  .error .message-dialog.csd .dialog-action-area .button,
  .message-dialog.csd .dialog-action-area .error .button,
  .error .sidebar-button.button {
    color: rgba(255, 255, 255, 0.75); }
    .info .button.flat:hover, .info .inline-toolbar .button:hover, .inline-toolbar .info .button:hover, .info .osd .toolbar .button:hover, .osd .toolbar .info .button:hover, .info .toolbar.osd .button:hover, .toolbar.osd .info .button:hover, .info .app-notification .button:hover, .app-notification .info .button:hover, .info .titlebar .button:hover:not(.suggested-action):not(.destructive-action), .titlebar .info .button:hover:not(.suggested-action):not(.destructive-action),
    .info .header-bar .button:hover:not(.suggested-action):not(.destructive-action),
    .header-bar .info .button:hover:not(.suggested-action):not(.destructive-action), .info .message-dialog.csd .dialog-action-area .button:hover, .message-dialog.csd .dialog-action-area .info .button:hover, .info .sidebar-button.button:hover, .info .button.flat:active, .info .inline-toolbar .button:active, .inline-toolbar .info .button:active, .info .osd .toolbar .button:active, .osd .toolbar .info .button:active, .info .toolbar.osd .button:active, .toolbar.osd .info .button:active, .info .app-notification .button:active, .app-notification .info .button:active, .info .titlebar .button:active:not(.suggested-action):not(.destructive-action), .titlebar .info .button:active:not(.suggested-action):not(.destructive-action),
    .info .header-bar .button:active:not(.suggested-action):not(.destructive-action),
    .header-bar .info .button:active:not(.suggested-action):not(.destructive-action), .info .message-dialog.csd .dialog-action-area .button:active, .message-dialog.csd .dialog-action-area .info .button:active, .info .sidebar-button.button:active,
    .question .button.flat:hover,
    .question .inline-toolbar .button:hover,
    .inline-toolbar .question .button:hover,
    .question .osd .toolbar .button:hover,
    .osd .toolbar .question .button:hover,
    .question .toolbar.osd .button:hover,
    .toolbar.osd .question .button:hover,
    .question .app-notification .button:hover,
    .app-notification .question .button:hover,
    .question .titlebar .button:hover:not(.suggested-action):not(.destructive-action),
    .titlebar .question .button:hover:not(.suggested-action):not(.destructive-action),
    .question .header-bar .button:hover:not(.suggested-action):not(.destructive-action),
    .header-bar .question .button:hover:not(.suggested-action):not(.destructive-action),
    .question .message-dialog.csd .dialog-action-area .button:hover,
    .message-dialog.csd .dialog-action-area .question .button:hover,
    .question .sidebar-button.button:hover,
    .question .button.flat:active,
    .question .inline-toolbar .button:active,
    .inline-toolbar .question .button:active,
    .question .osd .toolbar .button:active,
    .osd .toolbar .question .button:active,
    .question .toolbar.osd .button:active,
    .toolbar.osd .question .button:active,
    .question .app-notification .button:active,
    .app-notification .question .button:active,
    .question .titlebar .button:active:not(.suggested-action):not(.destructive-action),
    .titlebar .question .button:active:not(.suggested-action):not(.destructive-action),
    .question .header-bar .button:active:not(.suggested-action):not(.destructive-action),
    .header-bar .question .button:active:not(.suggested-action):not(.destructive-action),
    .question .message-dialog.csd .dialog-action-area .button:active,
    .message-dialog.csd .dialog-action-area .question .button:active,
    .question .sidebar-button.button:active,
    .warning .button.flat:hover,
    .warning .inline-toolbar .button:hover,
    .inline-toolbar .warning .button:hover,
    .warning .osd .toolbar .button:hover,
    .osd .toolbar .warning .button:hover,
    .warning .toolbar.osd .button:hover,
    .toolbar.osd .warning .button:hover,
    .warning .app-notification .button:hover,
    .app-notification .warning .button:hover,
    .warning .titlebar .button:hover:not(.suggested-action):not(.destructive-action),
    .titlebar .warning .button:hover:not(.suggested-action):not(.destructive-action),
    .warning .header-bar .button:hover:not(.suggested-action):not(.destructive-action),
    .header-bar .warning .button:hover:not(.suggested-action):not(.destructive-action),
    .warning .message-dialog.csd .dialog-action-area .button:hover,
    .message-dialog.csd .dialog-action-area .warning .button:hover,
    .warning .sidebar-button.button:hover,
    .warning .button.flat:active,
    .warning .inline-toolbar .button:active,
    .inline-toolbar .warning .button:active,
    .warning .osd .toolbar .button:active,
    .osd .toolbar .warning .button:active,
    .warning .toolbar.osd .button:active,
    .toolbar.osd .warning .button:active,
    .warning .app-notification .button:active,
    .app-notification .warning .button:active,
    .warning .titlebar .button:active:not(.suggested-action):not(.destructive-action),
    .titlebar .warning .button:active:not(.suggested-action):not(.destructive-action),
    .warning .header-bar .button:active:not(.suggested-action):not(.destructive-action),
    .header-bar .warning .button:active:not(.suggested-action):not(.destructive-action),
    .warning .message-dialog.csd .dialog-action-area .button:active,
    .message-dialog.csd .dialog-action-area .warning .button:active,
    .warning .sidebar-button.button:active,
    .error .button.flat:hover,
    .error .inline-toolbar .button:hover,
    .inline-toolbar .error .button:hover,
    .error .osd .toolbar .button:hover,
    .osd .toolbar .error .button:hover,
    .error .toolbar.osd .button:hover,
    .toolbar.osd .error .button:hover,
    .error .app-notification .button:hover,
    .app-notification .error .button:hover,
    .error .titlebar .button:hover:not(.suggested-action):not(.destructive-action),
    .titlebar .error .button:hover:not(.suggested-action):not(.destructive-action),
    .error .header-bar .button:hover:not(.suggested-action):not(.destructive-action),
    .header-bar .error .button:hover:not(.suggested-action):not(.destructive-action),
    .error .message-dialog.csd .dialog-action-area .button:hover,
    .message-dialog.csd .dialog-action-area .error .button:hover,
    .error .sidebar-button.button:hover,
    .error .button.flat:active,
    .error .inline-toolbar .button:active,
    .inline-toolbar .error .button:active,
    .error .osd .toolbar .button:active,
    .osd .toolbar .error .button:active,
    .error .toolbar.osd .button:active,
    .toolbar.osd .error .button:active,
    .error .app-notification .button:active,
    .app-notification .error .button:active,
    .error .titlebar .button:active:not(.suggested-action):not(.destructive-action),
    .titlebar .error .button:active:not(.suggested-action):not(.destructive-action),
    .error .header-bar .button:active:not(.suggested-action):not(.destructive-action),
    .header-bar .error .button:active:not(.suggested-action):not(.destructive-action),
    .error .message-dialog.csd .dialog-action-area .button:active,
    .message-dialog.csd .dialog-action-area .error .button:active,
    .error .sidebar-button.button:active {
      color: #FFFFFF; }
    .info .button.flat:insensitive, .info .inline-toolbar .button:insensitive, .inline-toolbar .info .button:insensitive, .info .osd .toolbar .button:insensitive, .osd .toolbar .info .button:insensitive, .info .toolbar.osd .button:insensitive, .toolbar.osd .info .button:insensitive, .info .app-notification .button:insensitive, .app-notification .info .button:insensitive, .info .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action), .titlebar .info .button:insensitive:not(.suggested-action):not(.destructive-action),
    .info .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .header-bar .info .button:insensitive:not(.suggested-action):not(.destructive-action), .info .message-dialog.csd .dialog-action-area .button:insensitive, .message-dialog.csd .dialog-action-area .info .button:insensitive, .info .sidebar-button.button:insensitive,
    .question .button.flat:insensitive,
    .question .inline-toolbar .button:insensitive,
    .inline-toolbar .question .button:insensitive,
    .question .osd .toolbar .button:insensitive,
    .osd .toolbar .question .button:insensitive,
    .question .toolbar.osd .button:insensitive,
    .toolbar.osd .question .button:insensitive,
    .question .app-notification .button:insensitive,
    .app-notification .question .button:insensitive,
    .question .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .titlebar .question .button:insensitive:not(.suggested-action):not(.destructive-action),
    .question .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .header-bar .question .button:insensitive:not(.suggested-action):not(.destructive-action),
    .question .message-dialog.csd .dialog-action-area .button:insensitive,
    .message-dialog.csd .dialog-action-area .question .button:insensitive,
    .question .sidebar-button.button:insensitive,
    .warning .button.flat:insensitive,
    .warning .inline-toolbar .button:insensitive,
    .inline-toolbar .warning .button:insensitive,
    .warning .osd .toolbar .button:insensitive,
    .osd .toolbar .warning .button:insensitive,
    .warning .toolbar.osd .button:insensitive,
    .toolbar.osd .warning .button:insensitive,
    .warning .app-notification .button:insensitive,
    .app-notification .warning .button:insensitive,
    .warning .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .titlebar .warning .button:insensitive:not(.suggested-action):not(.destructive-action),
    .warning .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .header-bar .warning .button:insensitive:not(.suggested-action):not(.destructive-action),
    .warning .message-dialog.csd .dialog-action-area .button:insensitive,
    .message-dialog.csd .dialog-action-area .warning .button:insensitive,
    .warning .sidebar-button.button:insensitive,
    .error .button.flat:insensitive,
    .error .inline-toolbar .button:insensitive,
    .inline-toolbar .error .button:insensitive,
    .error .osd .toolbar .button:insensitive,
    .osd .toolbar .error .button:insensitive,
    .error .toolbar.osd .button:insensitive,
    .toolbar.osd .error .button:insensitive,
    .error .app-notification .button:insensitive,
    .app-notification .error .button:insensitive,
    .error .titlebar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .titlebar .error .button:insensitive:not(.suggested-action):not(.destructive-action),
    .error .header-bar .button:insensitive:not(.suggested-action):not(.destructive-action),
    .header-bar .error .button:insensitive:not(.suggested-action):not(.destructive-action),
    .error .message-dialog.csd .dialog-action-area .button:insensitive,
    .message-dialog.csd .dialog-action-area .error .button:insensitive,
    .error .sidebar-button.button:insensitive {
      color: rgba(0, 0, 0, 0.24); }

/************
 * Tooltips *
 ************/
.tooltip {
  color: rgba(0, 0, 0, 0.8);
  padding: 4px;
  /* not working */
  border-radius: 2px;
  box-shadow: none; }
  .tooltip.background {
    background-color: rgba(255, 255, 255, 0.9); }
  .tooltip.window-frame.csd {
    background-color: transparent; }

.tooltip * {
  padding: 4px;
  background-color: transparent;
  color: inherit; }

/*****************
 * Color Chooser *
 *****************/
GtkColorSwatch {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  GtkColorSwatch.top {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  GtkColorSwatch.bottom {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }
  GtkColorSwatch.left, GtkColorSwatch:first-child:not(.overlay):not(.top) {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px; }
  GtkColorSwatch.right, GtkColorSwatch:last-child:not(.overlay):not(.bottom) {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px; }
  GtkColorSwatch:only-child:not(.overlay) {
    border-radius: 2px; }
  GtkColorSwatch.top > .overlay {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px; }
  GtkColorSwatch.bottom > .overlay {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px; }
  GtkColorSwatch:first-child:not(.top) > .overlay {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px; }
  GtkColorSwatch:last-child:not(.bottom) > .overlay {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px; }
  GtkColorSwatch:only-child > .overlay {
    border-radius: 2px; }
  GtkColorSwatch:hover {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  GtkColorEditor GtkColorSwatch {
    border-radius: 2px; }
    GtkColorEditor GtkColorSwatch:hover {
      box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }
  GtkColorSwatch.color-dark {
    color: white; }
  GtkColorSwatch.color-light {
    color: rgba(0, 0, 0, 0.8); }
  GtkColorSwatch#add-color-button {
    background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #42A5F5 75%);
    color: white; }

/********
 * Misc *
 ********/
.content-view {
  background-color: #ECEFF1; }

.scale-popup .button {
  padding: 10px; }

.floating-bar {
  padding: 3px 0 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
  background-clip: padding-box; }

.floating-bar.bottom.left {
  /* axes left border and border radius */
  border-width: 1px 1px 0 0;
  border-radius: 0 3px 0 0; }

.floating-bar.bottom.right {
  /* axes right border and border radius */
  border-width: 1px 0 0 1px;
  border-radius: 3px 0 0 0; }

/**********************
 * Window Decorations *
 *********************/
.window-frame {
  transition: none;
  border-radius: 2px 2px 0 0;
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
  /* this is used for the resize cursor area */
  margin: 8px; }
  .window-frame:backdrop {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .window-frame.tiled {
    border-radius: 0; }
  .window-frame.popup {
    box-shadow: none; }
  .window-frame.ssd {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); }
  .window-frame.csd.popup {
    border-radius: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .window-frame.csd.tooltip {
    border-radius: 2px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .window-frame.csd.message-dialog {
    border-radius: 2px;
    box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22); }
    .window-frame.csd.message-dialog:backdrop {
      box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .window-frame.solid-csd {
    border-radius: 0;
    margin: 4px;
    background-color: #FF6D00;
    border: solid 1px rgba(0, 0, 0, 0.1);
    box-shadow: none; }

.view:selected, GtkCalendar:selected, .label:selected, .grid-child:selected, .entry:selected, .menuitem.button.flat:selected, .inline-toolbar .menuitem.button:selected, .osd .toolbar .menuitem.button:selected, .toolbar.osd .menuitem.button:selected, .app-notification .menuitem.button:selected, .titlebar .menuitem.button:selected:not(.suggested-action):not(.destructive-action),
.header-bar .menuitem.button:selected:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .menuitem.button:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected {
  background-color: #00BCD4;
  color: #FFFFFF; }
  .view:insensitive:selected, GtkCalendar:insensitive:selected, .label:insensitive:selected, .grid-child:insensitive:selected, .entry:insensitive:selected, .menuitem.button.flat:insensitive:selected, .inline-toolbar .menuitem.button:insensitive:selected, .osd .toolbar .menuitem.button:insensitive:selected, .toolbar.osd .menuitem.button:insensitive:selected, .app-notification .menuitem.button:insensitive:selected, .titlebar .menuitem.button:insensitive:selected:not(.suggested-action):not(.destructive-action),
  .header-bar .menuitem.button:insensitive:selected:not(.suggested-action):not(.destructive-action), .message-dialog.csd .dialog-action-area .menuitem.button:insensitive:selected, .menuitem.sidebar-button.button:insensitive:selected, .list-row:insensitive:selected, .sidebar:insensitive:selected, GtkPlacesSidebar.sidebar .list-row:selected:insensitive .label {
    color: rgba(0, 0, 0, 0.32); }

.monospace {
  font: Monospace; }

/**********************
 * Touch Copy & Paste *
 *********************/
.entry.cursor-handle,
.cursor-handle {
  background-color: #FF4081;
  background-image: none;
  box-shadow: none;
  border-style: none; }
  .entry.cursor-handle.top:dir(ltr), .entry.cursor-handle.bottom:dir(rtl),
  .cursor-handle.top:dir(ltr),
  .cursor-handle.bottom:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-start.png"), url("assets/text-select-start@2.png"));
    padding-left: 10px; }
  .entry.cursor-handle.bottom:dir(ltr), .entry.cursor-handle.top:dir(rtl),
  .cursor-handle.bottom:dir(ltr),
  .cursor-handle.top:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-end.png"), url("assets/text-select-end@2.png"));
    padding-right: 10px; }
  .entry.cursor-handle.insertion-cursor:dir(ltr), .entry.cursor-handle.insertion-cursor:dir(rtl),
  .cursor-handle.insertion-cursor:dir(ltr),
  .cursor-handle.insertion-cursor:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above.png"), url("assets/slider-horz-scale-has-marks-above@2.png")); }
  .entry.cursor-handle.top:hover:dir(ltr), .entry.cursor-handle.bottom:hover:dir(rtl),
  .cursor-handle.top:hover:dir(ltr),
  .cursor-handle.bottom:hover:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-hover.png"), url("assets/text-select-start-hover@2.png"));
    padding-left: 10px; }
  .entry.cursor-handle.bottom:hover:dir(ltr), .entry.cursor-handle.top:hover:dir(rtl),
  .cursor-handle.bottom:hover:dir(ltr),
  .cursor-handle.top:hover:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-hover.png"), url("assets/text-select-end-hover@2.png"));
    padding-right: 10px; }
  .entry.cursor-handle.insertion-cursor:hover:dir(ltr), .entry.cursor-handle.insertion-cursor:hover:dir(rtl),
  .cursor-handle.insertion-cursor:hover:dir(ltr),
  .cursor-handle.insertion-cursor:hover:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-hover.png"), url("assets/slider-horz-scale-has-marks-above-hover@2.png")); }
  .entry.cursor-handle.top:active:dir(ltr), .entry.cursor-handle.bottom:active:dir(rtl),
  .cursor-handle.top:active:dir(ltr),
  .cursor-handle.bottom:active:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-start-active.png"), url("assets/text-select-start-active@2.png"));
    padding-left: 10px; }
  .entry.cursor-handle.bottom:active:dir(ltr), .entry.cursor-handle.top:active:dir(rtl),
  .cursor-handle.bottom:active:dir(ltr),
  .cursor-handle.top:active:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/text-select-end-active.png"), url("assets/text-select-end-active@2.png"));
    padding-right: 10px; }
  .entry.cursor-handle.insertion-cursor:active:dir(ltr), .entry.cursor-handle.insertion-cursor:active:dir(rtl),
  .cursor-handle.insertion-cursor:active:dir(ltr),
  .cursor-handle.insertion-cursor:active:dir(rtl) {
    -gtk-icon-source: -gtk-scaled(url("assets/slider-horz-scale-has-marks-above-active.png"), url("assets/slider-horz-scale-has-marks-above-active@2.png")); }

/* Decouple the font of context menus from their entry/textview */
.context-menu {
  font: initial; }

.touch-selection {
  font: initial;
  color: rgba(0, 0, 0, 0.8);
  background-color: #FFFFFF;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); }
  .touch-selection:backdrop {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); }

.overshoot.top {
  background-image: -gtk-gradient(radial, center top, 0, center top, 0.75, to(rgba(0, 229, 255, 0.3)), to(transparent));
  background-repeat: no-repeat;
  background-position: center top;
  background-color: transparent;
  border: none;
  box-shadow: none; }
.overshoot.bottom {
  background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.75, to(rgba(0, 229, 255, 0.3)), to(transparent));
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: transparent;
  border: none;
  box-shadow: none; }
.overshoot.left {
  background-image: -gtk-gradient(radial, left center, 0, left center, 0.75, to(rgba(0, 229, 255, 0.3)), to(transparent));
  background-repeat: no-repeat;
  background-position: left center;
  background-color: transparent;
  border: none;
  box-shadow: none; }
.overshoot.right {
  background-image: -gtk-gradient(radial, right center, 0, right center, 0.75, to(rgba(0, 229, 255, 0.3)), to(transparent));
  background-repeat: no-repeat;
  background-position: right center;
  background-color: transparent;
  border: none;
  box-shadow: none; }

.undershoot.top {
  background-color: transparent;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
  padding-top: 0;
  background-size: 16px 2px;
  background-repeat: repeat-x;
  background-origin: content-box;
  background-position: center top; }
.undershoot.bottom {
  background-color: transparent;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
  padding-bottom: 0;
  background-size: 16px 2px;
  background-repeat: repeat-x;
  background-origin: content-box;
  background-position: center bottom; }
.undershoot.left {
  background-color: transparent;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
  padding-left: 0;
  background-size: 2px 16px;
  background-repeat: repeat-y;
  background-origin: content-box;
  background-position: left center; }
.undershoot.right {
  background-color: transparent;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.3) 50%, rgba(0, 0, 0, 0.24) 50%);
  padding-right: 0;
  background-size: 2px 16px;
  background-repeat: repeat-y;
  background-origin: content-box;
  background-position: right center; }

/* GTK NAMED COLORS
   ----------------
   use responsibly! */
/*
widget text/foreground color */
@define-color theme_fg_color rgba(0, 0, 0, 0.8);
/*
text color for entries, views and content in general */
@define-color theme_text_color rgba(0, 0, 0, 0.8);
/*
widget base background color */
@define-color theme_bg_color #ECEFF1;
/*
text widgets and the like base background color */
@define-color theme_base_color #FFFFFF;
/*
base background color of selections */
@define-color theme_selected_bg_color #00BCD4;
/*
text/foreground color of selections */
@define-color theme_selected_fg_color #FFFFFF;
/*
base background color of insensitive widgets */
@define-color insensitive_bg_color #ECEFF1;
/*
text foreground color of insensitive widgets */
@define-color insensitive_fg_color rgba(0, 0, 0, 0.32);
/*
insensitive text widgets and the like base background color */
@define-color insensitive_base_color #f6f7f8;
/*
widget text/foreground color on backdrop windows */
@define-color theme_unfocused_fg_color rgba(0, 0, 0, 0.8);
/*
text color for entries, views and content in general on backdrop windows */
@define-color theme_unfocused_text_color rgba(0, 0, 0, 0.8);
/*
widget base background color on backdrop windows */
@define-color theme_unfocused_bg_color #ECEFF1;
/*
text widgets and the like base background color on backdrop windows */
@define-color theme_unfocused_base_color #FFFFFF;
/*
base background color of selections on backdrop windows */
@define-color theme_unfocused_selected_bg_color #00BCD4;
/*
text/foreground color of selections on backdrop windows */
@define-color theme_unfocused_selected_fg_color #FFFFFF;
/*
widgets main borders color */
@define-color borders rgba(0, 0, 0, 0.1);
/*
widgets main borders color on backdrop windows */
@define-color unfocused_borders rgba(0, 0, 0, 0.1);
/*
these are pretty self explicative */
@define-color warning_color #FF6D00;
@define-color error_color #DD2C00;
@define-color success_color #00C853;
@define-color content_view_bg #FFFFFF;
