/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.container{
    display: inline-block;
    width: 100%;
	border: 1px solid #c3c4c7;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 0px;
}
/* Style the tab */
.tab {
  float: left;
    width: calc(15% - 11px);
    padding: 5px;
}

/* Style the buttons inside the tab */
.tab button {
	display: block;
	background-color: inherit;
	color: black;
	padding: 9px 16px;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	cursor: pointer;
	transition: 0.3s;
	font-size: 17px;
	border-radius: 3px;
	box-shadow: 0px 0px 3px 0px #000;
	margin: 0 0 15px 0;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #93dbe7;
}

/* Style the tab content */
.tabcontent {
	float: left;
    padding: 0px 12px;
    width: calc(85% - 23px);
    border-left: none;
    min-height: 300px;
    display: none;
    border-left: 1px solid #c3c4c7;
    padding: 10px;
}
.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

table.email_table th, table.settings_table th {
    width: 20%;
}
table.email_table input[type="text"], table.email_table input[type="email"], table.settings_table input[type="text"], table.settings_table input[type="email"], table.settings_table select {
    width: 100%;
}
.ba_infobox {
    border-left: 3px solid #58d558;
    padding: 10px;
    margin: 10px;
    border-radius: 3px;
    background: #fefefe;
}

textarea#offline_message{width:100%;height:200px;}
form#add_holiday input[type='text'], form#add_holiday textarea, form#add_holiday input[type='date']{width:100%;}