

a.more, input.more, button.more{
	
	@include bone-btn();
	


	display: inline-block;
	margin: 3px;
	&:before{
		content : '[+] ' ;
		color: $bone-light-blue ;
	} 

	
}

.border-bottom{
	border-bottom: 1px solid $gainsboro;
}
.border-top{
	border-top: 1px solid $gainsboro;
}


img.ovale{
	border-radius: 50% 75%;
}
img.left{
	margin: 0 1em 1em 0;
}
img.right{
	margin: 0 0 1em 1em;
}

// alerts 
.alert{
	&.alert-succes{ @include alert($bg:  $success-color,$radius: true); }
	&.alert-error{ @include alert($bg:  $alert-color,$radius: true); }
	&.alert-warning{ @include alert($bg:  $warning-color,$radius: true); }
	&.alert-info,&.alert-notice{ @include alert($bg:  $info-color,$radius: true); }
}

// cols 
.cols2{
	column-count: 2;
}

@media (max-width: 420px){
	.cols2{
		column-count: 1;
	}
}

// animations

.blink_me {
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes blinker {  
    // 0% { opacity: 1.0; }
    // 50% { opacity: 0.0; }
    // 100% { opacity: 1.0; }
	0% { background-color: transparent; }
	33% { background-color: Ivory ; }
	66% { background-color: transparent; }
	100% { background-color: Ivory; }


}
