/**
 * AddToCalendar Base CSS
 * http://addtocalendar.com
 */

/* Base */

.addtocalendar var{
    display: none;
}

.addtocalendar {
    position: relative;
    display: inline-block;
    background: transparent!important;
}

.atcb-link {
    display: block;
    outline: none!important;
    cursor: pointer;/*
	position: absolute;
	font-size: 0;
	line-height: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;*/
	
	font-size:30px;
	position:relative;
	z-index:2;
	opacity:1;
	color:#595958;
}
.addtocalendar.no_before .atcb-link{
	position: absolute;
	font-size: 0;
	line-height: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.addtocalendar.no_before .atcb-link:before{
	display:none;
}

.atcb-link:focus~ul,
.atcb-link:active~ul,
.atcb-list:hover{
    visibility:visible;
	opacity:1;
}

.atcb-list {
	opacity:0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    width: 170px;
    z-index: 900;
	margin-top: 10px !important;
	background:#2b9430;
}

.atcb-list,
.atcb-item
{
    list-style: none;
    margin: 0;
    padding: 0;
    background: #2b9430;
}

.atcb-item {
    float: none;
    text-align: left;
}

.atcb-item-link
{
    text-decoration: none;
    outline: none;
    display: block;
	font-size: 14px;
	line-height: 30px;
	color: #fff;
	font-weight:600;
	padding:0 10px;

}
.atcb-item-link:hover{
	color: #595958;
}

.atcb-item.hover,
.atcb-item:hover {
    position: relative;
    z-index: 900;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

@media only screen and (max-width: 1050px) {
	.atcb-list {
		left:auto;
		right:0;
	}
}