/*
Theme Name: Child Thrive Theme
Theme URI: http://thrivethemes.com/
Version: 1.0
Author: <a href="http://www.thrivethemes.com">Thrive Themes</a>
Description: Fully customizable, front end theme and template editing for WordPress has arrived! 
Template: thrive-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, custom-everything
*/

:root {
    --mb-bg-color: #000000;
    --mb-accent: #111111;
    --mb-color: #ffffff;
    --mb-lt-color: #cccccc;
    --mb-border-color: #e1e1e1;
    --mb-border-radius: 0px;
}

.mb_heading h1 {
    font-stretch: 100% !important;
}

.sp_svg {
	display: block;
	width: 100%;
	max-height: 125px;
	margin: 0 auto;
}

.mb_crawler {
    display: flex;
    width: 100%;
    gap: 65px;
    align-items: center;
    flex-direction: row;
    animation: scroll 40s linear infinite;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7))
    }
}

/* Gravity Forms Styling */

.gform_required_legend {
    display: none;
}

.gfield input {
    line-height: 1.5rem !important;
}

.gfield input,
.gfield textarea {
    background-color: var(--mb-accent);
    color: var(--mb-color) !important;
    border-radius: var(--mb-border-radius) !important;
}

.gform_button {
    background-color: var(--mb-accent) !important;
    border-color: var(--mb-lt-color) !important;
    border-radius: var(--mb-border-radius);
    color: var(--mb-color) !important;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.gform_button:hover {
    background-color: var(--mb-lt-color) !important;
    color: var(--mb-accent) !important;
}

.gfield_label {
    font-family: "Museo Slab", sans-serif !important;
    letter-spacing: 2px !important;
}