.dog_pulled {
	color: #d8d8d0;
}
.abc {
	padding-left: .1em;
	padding-right: .1em;
}
.abc.da-a,
.abc.da-a a,
.abc.da-a a:visited {
	color: #17A589;
}
.abc.da-b,
.abc.da-b a,
.abc.da-b a:visited {
	color: #2E86C1;
}
.abc.da-c,
.abc.da-c a,
.abc.da-c a:visited {
	color: #CB4335;
}
.abcd {
	padding-left: .25em;
}
.card {
	border-top: 0px;
	border-right: 1px solid rgba(10,10,10,.1);
	border-bottom: 1px solid rgba(10,10,10,.1);
	border-left: 1px solid rgba(10,10,10,.1);
	box-shadow: 2px 3px 3px rgba(10,10,10,.1);
}
.card-content {
	padding: 1em;
	margin-top: -1em;
}
.image.is-300x200 {
	height: 300px;
	height: 200px;
}
.image.is-auto {
	width: auto;
	height: 100%;
}

/**
 * Tooltip style
 */
.help-tip {
	position: relative;
	top: 18px;
	right: 18px;
	text-align: center;
	background-color: #BCDBEA;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	font-size: 14px;
	line-height: 18px;
	cursor: default;
}

.help-tip:before {
	content:'?';
	font-weight: bold;
	color:#fff;
}

.help-tip:hover p {
	display:block;
	transform-origin: 100% 0%;

	-webkit-animation: fadeIn 0.3s ease-in-out;
	animation: fadeIn 0.3s ease-in-out;
	z-index: 999;
}
.help-tip p {    /* The tooltip */
	display: none;
	text-align: left;
	background-color: #1E2021;
	padding: 20px;
	width: 300px;
	position: absolute;
	border-radius: 3px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
	right: -4px;
	color: #FFF;
	font-size: 13px;
	line-height: 1.4;
}
.help-tip p:before { /* The pointer of the tooltip */
	position: absolute;
	content: '';
	width:0;
	height: 0;
	border:6px solid transparent;
	border-bottom-color:#1E2021;
	right:10px;
	top:-12px;
}
.help-tip p:after { /* Prevents the tooltip from being hidden */
	width:100%;
	height:40px;
	content:'';
	position: absolute;
	top:-40px;
	left:0;
}

@media only screen
and (max-width : 768px) {
	.help-tip p {    /* The tooltip */
		left: 0;
	}
	.help-tip p:before { /* The pointer of the tooltip */
		right: 0px;
		left: 5px;
	}
}

/* CSS animation */

@-webkit-keyframes fadeIn {
	0% {
		opacity:0;
		transform: scale(0.6);
	}

	100% {
		opacity:100%;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	0% { opacity:0; }
	100% { opacity:100%; }
}

.symbol {
	padding-left: 0px;
	padding-right: 0px;
}
