/**
 * Style Name: Flat responsive theme
 * Style URI:  http://www.wpsimplebookingcalendar.com
 * Description: Flat responsive theme for the WP Simple Booking Calendar
 * Author:      WP Simple Booking Calendar
 * Author URI:  http://www.wpsimplebookingcalendar.com
 *
 * Copyright (c) 2017 WP Simple Booking Calendar
 */


/*Container*/
.wpsbc-container.wpsbc-theme-flat.wpsbc-theme-flat {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}
.wpsbc-container.wpsbc-theme-flat:before,
.wpsbc-container.wpsbc-theme-flat:after
{
	display: table;
	content: "";
}
.wpsbc-container.wpsbc-theme-flat:after
{
	clear: both;
}

/**
 * The Calendar container
 *
 * Style for the calendar box
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
{
	float: left;
	position:relative;
	margin-right: 1%;
	margin-bottom: 1%;
	min-height: 1px;

	height: 339px;

	border-radius: 2px;
	
    background: #fff;
}

/**
 * The calendar heading
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading
{	
	padding: 0 8px;
	text-align: center;
	outline: none;
	background-color: #EF6C00 !important;
	min-height: 45px;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading:after
{
	display: table;
	content: "";
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading:after
{
	clear: both;
}

/**
 * Styles for the Calendar arrows (prev|next)
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-prev:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-next:before
{
	float: left;
	margin-top: 11px;
	font-family: "Material Design Icons" !important;
	font-size: 24px;
	color: #fff;
	text-rendering: auto;
	line-height: 24px;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	content: "\F141";
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-next:before
{
	float: right;
	content: "\F142";
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-prev:hover:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-next:hover:before
{
	text-decoration: none;
	color: rgba(255,255,255,.8);
}

/**
 * Style for the Calendar dropdown (select) container
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading .wpsbc-select-container
{
	display: inline;
    position: relative;
    top: 9px;
    font-family: inherit;
}

/**
 * Style for the dropdown (select)
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading select
{

	border: none !important;
	color: #000 !important;

	display: inherit !important;

	transition: all .25s ease-in-out;
	background-color: #fff !important;
	width: auto !important;
	border-radius: 2px !important;
	height: 22px !important;
    padding: 0 !important;
    padding-left: 5px !important;

    font-family: inherit !important;
	font-size: 16px !important;
	box-shadow: none !important;
	-webkit-appearance: menulist !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

/**
 * Style for the Calendar header titles (month names)
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-heading span
{
	display: inline-block;

	margin-top: 7px;

	/*font-family: Arial, Helvetica, Verdana, sans-serif;*/
	font-size: 16px;
	/*line-height: 16px;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none;
	color: #fff;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


/**
 * Style for the Calendar's list of days
 */

/*reset*/
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul 
{
	padding: 0;
	margin: 0;
	list-style: none;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul:after
{
	display: table;
	content: "";
}

/**
 * Style for the calendar list weekdays subheader
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul.wpsbc-weekdays
{
	border-bottom: 1px solid #ccc;
	background-color: #f4f4f4;
	font-weight: bold;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul:after
{
	clear: both;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li
{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	float: left;
	width: calc(100%/7.01); /* NO NEED TO EDIT THIS */
	margin: 0;
	text-align: center;
	height: 42px;
	margin: 0;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar.wpsbc-week-numbers ul li
{
	width: calc(100%/8.01);
}

.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day
{
	/*box-shadow: 0 0px 1px 0 rgba(0,0,0,.2);*/
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-pad
{
	background-color: #fff;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-pad:before
{
	content: "\00a0 ";
}

/**
 * Default font-size and family for all the elements in the list of days
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul *
{
	/*font-family: Arial, Helvetica, Verdana, sans-serif;*/
	font-size: 14px;

	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	outline: none;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}


/**
 * Styling the pre-loader
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar .wpsbc-loading
{
	display: none;
	position: absolute;
	z-index: 3;
	top: 45%;
	left: 45%;
}

/**
 * Styling the legend
 */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend
{
	clear: both;
    display: block;
    margin-top: 10px;
    float: left;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend:after 
{
	display: table;
	content: "";
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend:before
{
	clear: both;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend .wpsbc-legend-item
{
	float: left;
}

.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend .wpsbc-legend-item .wpsbc-legend-color
{
	float: left;
	width: 22px;
	height: 22px;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-legend .wpsbc-legend-item p
{
	float: left;
	margin: 0 10px;
	height: 16px;
	line-height: 16px;

	font-size: 16px;
}

/* Tooltip */
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day .wpsbc-tooltip-corner
{
	width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    border-color: transparent;
    border-style: solid;
    border-radius: 0;
    border-width: 5px;
    border-right-color: rgba(255,0,0, .7);
    border-top-color: rgba(255,0,0, .7);
}

.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day .wpsbc-tooltip-dot
{
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
    top: 5px;
    right: 5px;
    z-index: 2;
    background-color: rgba(255,0,0, .7);
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-tooltip-active .wpsbc-tooltip
{
	position: absolute;
	bottom: 46px;
	border-radius: 3px;
	background-color: #fff;
	z-index: 6;
	width: auto;
	min-width: 175px;
	padding: 5px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-tooltip-active .wpsbc-tooltip:before,
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-tooltip-active .wpsbc-tooltip:after
{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #fff;
	border-width: 8px;
	margin-left: -8px;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-tooltip-active .wpsbc-tooltip strong
{
	display: block;
}


.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-highlight
{
	background-color: rgba(33,150,243, .9) !important;
	color: #fff;
	line-height: 1.5;
	text-align: center;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar ul li.wpsbc-day.wpsbc-highlight .wpsbc-day-split-day
{
	color: #fff !important;
}


/*Media queries */
@media (max-width: 576px) 
{
	/*mobile portrait*/
	.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
	{
		width: 100%;
		margin: 0;
		margin-bottom: 10px;
	}
}

@media (min-width: 576px) 
{
	/*mobile landscape*/
	.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
	{
		width: 49%;
	}
}

@media (min-width: 768px) {
	/*Tablets*/
	.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
	{
		width: 49%;
	}
}

@media (min-width: 992px) {
	/*Desktops*/
	.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
	{
		width: 32.33333333%;
	}
}

@media (min-width: 1200px) {
	/*Extra large devices*/

	.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar
	{
		width: 32.33333333%;
	}
}

.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar.col-12
{
	width: 100%;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar.col-6
{
	width: 49%;
}
.wpsbc-container.wpsbc-theme-flat .wpsbc-calendars .wpsbc-calendar.col-4
{
	width: 32.33333333%;
}