/*
* custom styles for the content views plugin
*
*/

.wp-child-theme-hybridmagChild .pt-cv-ifield a:focus {
  outline: thin dotted !important; /* Overriding hidden outline. Important is necessary because contentviews itself uses important here. */
}

/*
Button
*/
.wp-child-theme-hybridmagChild .pt-cv-wrapper .btn-success {
  background-color: var(--hybridmag-color-button-background);
  border-color: var(--hybridmag-color-border);
  color: var(--hybridmag-color-button-text);
}

/*
Button hover
*/
.wp-child-theme-hybridmagChild .pt-cv-wrapper .btn-success:hover {
  background-color: var(--hybridmag-color-button-hover-background);
  border-color: var(--hybridmag-color-border);
  color: var(--hybridmag-color-button-hover-text);
}

.wp-child-theme-hybridmagChild .entry-content a {
  color: var(--hybridmag-color-link);
}

.wp-child-theme-hybridmagChild .entry-content a:hover {
  color: var(--hybridmag-color-link-hover);
}