/*
|----------------------------------------------------------------------------
	Contact Form 7 Tooltips WordPress CF7 Add-ons CSS
	Author: MGScoder
	Author URL: https://codecanyon.net/user/mgscoder
|----------------------------------------------------------------------------
*/
.wpcf7mgscfstooltips {
	background-image: url(../images/tooltips-icon.png);
	background-position: center center;
	background-repeat:  no-repeat;
	width: 16px;
	height: 16px;
	margin-left: 10px;
    position: relative;
    display: inline-grid;
	top: 2px;
}
[data-mgstooltip] {
	cursor: help;
	position: relative;
	white-space: nowrap;
}
[data-mgstipcount], [data-mgstipcount] *, [data-mgstipcount] *:before, [data-mgstipcount] *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
[data-mgstipcount] {
	background-color: #0000ff;
	border: 1px solid #0000ff;
	border-radius: 5px;
	width: 380px;
	max-width: calc(100% - 20px);
	position: absolute;
	margin: 0 10px;
	padding: 0 10px 5px 10px;
	opacity: 0;
	transition: .3s opacity ease-in-out;
	z-index: 99999;
}
[data-mgstipcount] > i {
	display: block;
	z-index: 99999;
	position: absolute;
	top: -18px;
	left: 0;
	pointer-events: none;
}
[data-mgstipcount] > i:after {
	content: '';
	display: block;
	border: 10px solid transparent;
	border-bottom-color: #0000ff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}
[data-mgstipcount], [data-mgstipcount] * {
	font-size: 12px;
	color: #fff;
}
[data-mgstipcount] h1, [data-mgstipcount] h2, [data-mgstipcount] h3, [data-mgstipcount] h4, [data-mgstipcount] h5, [data-mgstipcount] h6 {
    margin: 0 0 10px;
    padding: 0;
	font-size: 16px;
	font-weight: bold;
	text-transform: capitalize;
	letter-spacing: inherit;
}
[data-mgstipcount] ul {
	padding: 0 0 0 20px;
	margin: 0;
}
[data-mgstipcount] ol {
	padding: 0 0 0 20px;
	margin: 0;
}
[data-mgstipcount] li {
	padding: 0 0 2px 0;
}
[data-mgstipcount] * + p, [data-mgstipcount] p {
	margin: 10px 0 0;
}

@media (min-width: 576px){
	[data-mgstipcount] {
		width: auto;
		margin: 0;
		max-width: calc(540px - 20px);
	}
}

.fontyellow {
	color: #fdc018 !important;
}