/*
Theme Name: The Branding Iron Elementor
Author: Timothy Hendershot
Description: Shell theme for Elementor by The Branding Iron.
Version: 1.0
Author URI: https://thebrandingiron.us/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
html {
    display: block!important;
}

img, iframe {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

input:focus,textarea,select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.widget_media_image {
    text-align: center;
}

img {
    height: auto;
}

button:active, button:focus {
    border: inherit;
    outline: inherit;
}

a, a:visited, a:hover, a:active, a:focus {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0.5em 0em;
}

ul li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}

.wp-block-image {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

img.centered, .aligncenter {
    display: block;
    margin: 0 auto 24px;
}

a.alignnone img, .alignnone img {
    margin-bottom: 12px;
}

.alignleft {
    float: left;
    text-align: left;
}

.alignright {
    float: right;
    text-align: right;
}

a.alignleft, a.alignright {
    max-width: 100%;
}

a.alignleft img, img.alignleft, .wp-caption.alignleft {
    margin: 0 24px 24px 0;
}

a.alignright img, img.alignright, .wp-caption.alignright {
    margin: 0 0 24px 24px;
}

@media all and (max-width: 600px) {
    .alignleft, .alignright {
        float: none!important;
        margin: 0px auto!important;
        display:block;
    }
}

#header-fixed {
    display: none;
    -webkit-animation: fade_in 0.25s 1;
    -moz-animation: fade_in 0.25s 1;
    -o-animation: fade_in 0.25s 1;
    animation: fade_in 0.25s 1;
    opacity: 1;
}

#header-fixed.show {
    display: block;
}

@keyframes fade_in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/********
* Theme
*********/
h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4,h5,h6 {
    font-size: 20px;
}

body {
    font-size: 16px;
    background-color: white;
    color: #4D4D4D;
    padding: 0px;
    font-weight: normal;
    font-style: normal;
}

/*Gravity Forms*/
.gform_wrapper input[type=submit] {
    cursor: pointer;
}

.gform_footer {
    text-align: center;
}

.gform_body input[type="checkbox"]{
	appearance: none;
	content: none;
	outline: none;
	cursor:pointer;
}

.gform_body .gchoice {
	margin-bottom:4px;
}

.gform_body input[type="checkbox"]:checked {
	appearance: none;
	outline: none;
	padding: 0;
	content: none;
	border: none;
	position:relative;
}

.gform_body input[type="checkbox"]:checked::before{
	position: absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	color: #E8466F;
	content: "\00A0\2713\00A0";
	font-weight: 800;
	font-size: 20px;
}