/*
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-gap: 20px;
}

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

.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))
    }
}

.mb_gallery .tcb-flex-row {
	display:flex;
	flex-direction:row;
	gap:var(--mb-gap);
}

.mb_gallery_row {
	display:flex;
	flex-direction:row;
}

.mb_gallery_col > .tve-cb {
	display:flex;
	flex-direction:column;
	gap:var(--mb-gap);
}

.mb_gallery_row .tve-cb {
	display:flex;
	gap:var(--mb-gap);
	flex-direction:row;
}

.mb_gallery .tve-cb .thrv_wrapper {
	flex:1 1 auto;
}

@media screen and (max-width:480px) {
	.mb_gallery_row .tve-cb {
		flex-direction:column;
	}
}

/* .mb_gallery .tcb-col {
	display:flex;
	justify-content:space-between;
	flex-direction:column;
} */

/* 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;
}