/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 


.formtipwarning {
	position: relative;
background: #f2d9d9;
border-radius: .4em;
width: auto;
display: inline-block;
padding: 10px;
}

.formtipwarning:after {
content: '';
position: absolute;
bottom: 0;
left: 10%;
width: 0;
height: 0;
border: 28px solid transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-bottom-style: solid;
    border-bottom-width: 28px;
    border-left-color: transparent;
    border-left-style: solid;
    border-left-width: 28px;
border-top-color: #f2d9d9;
border-bottom: 0;
border-left: 0;
margin-left: -20.5px;
margin-bottom: -28px;
}

.formtip {
	position: relative;
background: #e5f2d9;
border-radius: .4em;
width: auto;
display: inline-block;
padding: 10px;
}

.formtip:after {
content: '';
position: absolute;
bottom: 0;
left: 10%;
width: 0;
height: 0;
border: 28px solid transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-bottom-style: solid;
    border-bottom-width: 28px;
    border-left-color: transparent;
    border-left-style: solid;
    border-left-width: 28px;
border-top-color: #e5f2d9;
border-bottom: 0;
border-left: 0;
margin-left: -20.5px;
margin-bottom: -28px;
}


