/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com
Description:  Child theme for GeneratePress. Holds the exchange rate strip and any other custom CSS or PHP.
Author:       Emilio
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  generatepress-child
*/

/* ---------------------------------------------------------------------
   Exchange rate strip
   The markup is <div class="rate-strip"><div class="grid-container"> ... </div></div>
   ------------------------------------------------------------------ */

.rate-strip {
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	background: rgba(0, 0, 0, .02);
	padding: 10px 0;
	font-size: .9em;
}

/* Kills the plugin's default outer spacing so the strip stays slim. */
.rate-strip .cmon {
	margin: 0;
}

/* Hide the strip on phones. Delete this block to keep it on every screen. */
@media (max-width: 768px) {
	.rate-strip {
		display: none;
	}
}

/* Optional: a rate shown next to the navigation menu items. */
.nav-rate {
	display: inline-flex;
	align-items: center;
	padding: 0 15px;
	font-size: .85em;
	font-variant-numeric: tabular-nums;
	opacity: .85;
}
