/* wrapper styles */
.b4b-calendar-wrapper{
	margin-bottom:50px;
}
.b4b-calendar-wrapper * { 
box-sizing: border-box;
}

/* month styles */
.b4b-calendar-month-container {
font-size: 20px;
padding: 10px;
border-top: 1px #ccc solid;
}
.b4b-calendar-month-container:first-child {
border-top: 0px #ccc solid;
}

/* item styles */
.b4b-calendar-item {
	background: #fff;
	padding: 10px;
	border-top: 1px #ccc solid;
	border-right: 1px #ccc solid;	
	border-left-style: solid; 
	border-left-width: 3px;
	transition: .2s;
	

	
}

.b4b-calendar-item:hover {
	border-left-width: 8px;
}

.b4b-calendar-item:last-child {
	border-bottom: 1px #ccc solid;
}



/* in item styles */
.b4b-calendar-start-date {
float: left;
font-size: 30px;
line-height: 60px;
width: 40px;
font-weight: 700;
}
.b4b-calendar-item-content {
float: left;
width: 880px;

padding: 0 20px;
}
.b4b-calendar-item-title {
font-size: 20px;
}
.b4b-calendar-item-header {
cursor: pointer;
}
.b4b-calendar-item-hidden {
display: none;
padding-left: 60px;
}
.b4b-calendar-item-hidden-bottom{
margin: 10px 0;
padding: 20px 0px 10px 0px;
border-top: 1px #ccc dotted;
}
.b4b-calendar-button { text-align: center; }
.b4b-calendar-button button {
background: #fff;
border: 1px #ccc solid;
border-radius: 5px;
padding: 10px;
cursor: pointer;
margin: 10px 10px;
outline: 0;
}
.b4b-calendar-button button:hover, .b4b-calendar-button button.active {
background: #E2E0E0;
}
