.calendar-outer {
	width: 265px;
	background:#fff;
	padding:10px;
	border-radius:7px;
}

.calendar-outer ul {
	margin: 0px;
	padding: 0px;
}

.calendar-outer ul li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.prev {
	display: inline-block;
	float: left;
	cursor: pointer
}

.next {
	display: inline-block;
	float: right;
	cursor: pointer
}

div.calendar-nav {
	background-color: #B89B8C;
	border-radius: 4px;
	text-align: center;
	padding: 10px;
	color: #FFF;
	box-sizing: border-box;
	font-weight: bold;
}

.calendar-outer .week-name-title li {
	display: inline-block;
	padding: 8px 7.5px;
	color: #80726F;
	font-size: 0.95em;
	font-weight: 600;
}

.week-day-cell li {
	display: inline-block;
	width: 35px;
	height: 35px;
	text-align: center;
	line-height: 35px;
	vertical-align: middle;
	background-color: #F2EDEA;
	color: #80726F;
	border: 1px solid #C2A99B;
	font-size: 1.2em;
	cursor:pointer;
}
#body-overlay {background-color: rgba(0, 0, 0, 0.6);z-index: 999;position: absolute;left: 0;top: 0;width: 100%;height: 100%;display: none;}
#body-overlay div {position:absolute;left:50%;top:50%;margin-top:-32px;margin-left:-32px;}

.calendar_response{
    display:none;
    width:265px;
    background-color:#fff;
    border-radius:7px;
    padding:5px 5px 5px 5px;
    margin-top:10px;
    font-size:14px;
    font-weight:500;
}
.event_info{
    color: #80726F;
	border: 1px solid #C2A99B;
	border-radius:7px;
	margin:5px;
	padding:5px;
	font-size:14px;
	font-family: Roboto, sans-serif;
	font-weight:500;
}

.event_info_no{
    color: #80726F;
	border-radius:7px;
	margin:5px 0;
	padding:10px;
	font-size:14px;
	font-family: Roboto, sans-serif;
	font-weight:500;
}

.event_info_inner{
    display:flex;    
}

.event_time{
    width:20%;
}
.event_description{
    width:70%;
}

.event_type_public{
    font-size:10px;
    height:16px;
    background-color:green;
    padding:3px;
    border-radius:7px;
    color:#fff;
}

.event_type_private{
    font-size:10px;
    height:16px;
    background-color:red;
    padding:3px;
    border-radius:7px;
    color:#fff;
}

.event_address{
    display:flex;
    padding-top:5px;
}

.event_address img{
    width:20px;
    height:20px;
    margin-right:10px;
}

.event_place_text{
    padding-top:8px;
    font-size:11px;
}

/*------------ New Event Form-----------*/
.new_event_header{
    width:265px;
    padding:10px;
    margin:10px 0;
    background-color:#fff;
    border-radius:7px;
}

.new_event_header h3{
    text-align:center;
    padding: 0 5px;
}

.calendar_event_smallinfo{
    font-size:10px;
    color:red;
    font-weight:500;
}

/*-----Calendar New Event Forms-----------*/
.calendar_event_form input[type="date"]{
    background-color:#fff;
    padding:5px;
    margin:5px 0 5px 0;
    width:160px;
    color:#80726F;
    border:#80726F solid 1px;
    border-radius:7px;
    outline:none;
}
.calendar_event_form input[type="text"]{
    background-color:#fff;
    padding:5px;
    margin:5px 0 5px 0;
    width:245px;
    color:#80726F;
    border:#80726F solid 1px;
    border-radius:7px;
    outline:none;
}
.calendar_event_form input[type="time"]{
    background-color:#fff;
    padding:5px;
    margin:5px 0 5px 0;
    width:80px;
    color:#80726F;
    border:#80726F solid 1px;
    border-radius:7px;
    outline:none;
}
.calendar_event_form select{
    background-color:#fff;
    padding:5px;
    margin:5px 0 5px 0;
    width:245px;
    color:#80726F;
    border:#80726F solid 1px;
    border-radius:7px;
    outline:none;
}

.submit_event{
    box-sizing: border-box;
    border-radius:7px;
    border-color:#870D39;
    padding:8px;
    margin: 8px 0px;
    width:245px;
}

.event_menu{
    display:flex;
    justify-content:space-between;
    background-color:#fff;
    border-radius:7px 7px 0 0;
    padding:0;
    margin:0;
}
 
.event_menu hr{
    width:1px;
    height:30px;
    border-color:#80726F;
}

.event_menu img{
    width:20px;
    height:20px;
    margin-left:30px;
    margin-right:10px;
}

.event_menu .menu-item{
    display: flex;
    align-items: center;
    height:34px;
    position: relative;
    cursor: pointer;
    transition: 300ms ease all;
    text-decoration:none;
    color: #554B51;
    width:100%;
    height:50px;
}

.event_menu .menu-item:hover{
    color:#fff;
    background-color:#B89B8C;
    border-radius:7px 7px 0 0;
}

.events_header{
    margin:10px;
}

.events_header h2{
    font-size:20px;
}

.friend_event_container{
    margin-top:10px;
    background-color:#fff;
    border-radius:7px;
    padding:10px;
    display:flex;
}

.friend_event_inner{
    margin-left:40px;
    font-size:14px;
    line-height:1.5;
}