/*!
Author: Adam Hetherington
Description: Online scheduling software & booking system for Small Businesses.
Version: 1.0.0

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "Noto Sans", sans-serif;
	line-height: 1.5;
}

.area {
	display: none;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: "Noto Sans", sans-serif;
	font-weight: 700;
	color: #000;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	text-decoration: none;
}

big {
	font-size: 125%;
}

.center {
	text-align: center;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 0 0;
}

dl {
	margin: .5em 0;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	font-size: .8em;
}

table tr th {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	text-align: left;
	padding: .5em;
	background-color: #f5f5f5;
}

table tr td {
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: .5em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button-element {
	display: inline-block;
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: .6em 1em .4em;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button-element:hover {
	cursor: pointer;
	border-color: #ccc #bbb #aaa;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus,
.button-element:active,
.button-element:focus {
	border-color: #aaa #bbb #bbb;
}

#operations {
	margin-top: 1em;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: .5em 1em;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.field-wrapper {
	text-align: left;
	margin: 0 auto;
	padding: 1em 3em;
}

.field-wrapper label {
	display: block;
	margin-bottom: .5em;
	font-weight: 600;
}

.field-wrapper input {
	width: 100%;
}

.admin-edit input[type="text"],
.admin-edit input[type="password"] {
	width: 100%;
}

.admin-edit .pw-guide {
	font-size: .6em;
}

.colour-selector {
	padding: 0 !important;
}

.jqte_editor {
	background: #e6e8ee;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: royalblue;
	text-decoration: none;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Global Layouts
--------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.site-content {
	min-height: 100VH;
	display: -ms-flexbox;
	display: flex;
}

.site-content .side-bar {
	width: 300px;
	padding: 0;
}

.site-content .side-bar .logo {
	margin-bottom: 1em;
}

.site-content .side-bar .logo img {
	width: 100%;
	height: auto;
}

.site-content .side-bar .menus {
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.site-content .side-bar .menus .side-icons {
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
	width: 60px;
	font-size: 1.6em;
	background-color: #3e3e3e;
}

.site-content .side-bar .menus .menu {
	position: fixed;
	background-color: #bbbbbb;
	width: 100%;
	height: 100%;
	position: relative;
	min-height: 600px;
	padding: 20px 10px;
}

.site-content .side-bar .menus .menu hr {
	background-color: #ffffff;
}

.site-content .side-bar .menus .menu ul {
	margin: 0;
	padding: 0;
}

.site-content .side-bar .menus .menu ul li {
	list-style: none;
}

.site-content .side-bar .menus .menu ul li a {
	color: #fff;
	text-decoration: none;
}

.site-content .side-bar .menus .menu ul li a:visited {
	color: #fff;
}

.site-content .side-bar .menus .menu ul li a:hover {
	color: #000;
}

.site-content .side-bar .menus .menu .itomic-logo {
	bottom: 0;
	position: absolute;
}

.site-content .side-bar .menus .menu .powered-by {
	font-size: .8em;
	margin-bottom: 5px;
	position: absolute;
	bottom: 0;
}

.site-content .main-content {
	width: 100%;
	margin-bottom: 2em;
}

.site-content .main-content .top-head {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	padding: 0 2em;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.site-content .screen-main-content {
	width: 100%;
	padding: 2em;
	text-align: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-direction: column;
	    flex-direction: column;
}

/* //Commented out because of conflict with alertifyjs - could delete
.errors {
  border: 1px solid #ff5252;
  border-radius: 8px;
  padding: 1em;
  display: inline-block;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), 0 10px 10px rgba(0, 0, 0, 0.08);
  color: #ff5252;
  margin-bottom: 1em;
  ul {
    margin: .5em 0 0 0;
  }
}
*/
.inline {
	display: inline-block;
}

.login {
	position: relative;
	background-color: #fff;
	text-align: center;
	margin: 0;
	width: 33%;
	max-width: 400px;
	height: 100vh;
	padding-top: 2em;
	box-shadow: 20px 0 5px -2px rgba(0, 0, 0, 0.14);
}

.login input[type="submit"] {
	background: linear-gradient(45deg, #92fe9d, #00c9ff);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	color: #ffffff;
	font-weight: 600;
}

.login input[type="submit"]:hover {
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.login .webPanel-logo {
	opacity: 1;
}

.login .login-footer {
	width: 100%;
	text-align: center;
	padding: 1em;
	color: #999;
	font-size: .6em;
}

.login .validation-err {
	background: #f2a9a9;
	display: inline-block;
	padding: 0 1em;
	border-radius: 2px;
	line-height: 1em;
}

.login .validation-err .err-icon {
	font-size: 2em;
	margin-bottom: 0;
}

/* //Commented out because of conflict with alertifyjs - could delete
#message {
  padding: 1em 2em;
  display: inline-block;
  border: 2px solid #42ca49;
  color: #42ca49;
  border-radius: 8px;
  margin: 1em 0;
}
*/
.flex {
	display: -ms-flexbox;
	display: flex;
}

.settings-layout .template {
	text-align: center;
	display: inline-block;
}

.settings-layout .template img {
	display: block;
	max-width: 120px;
	height: auto;
}

dt {
	margin-bottom: 1em;
	font-size: .8em;
}

.form-images {
	border-right: 1px solid #ccc;
	margin-right: 1em;
}

.dropbtn {
	color: white;
	border: none;
	cursor: pointer;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	text-align: left;
	display: none;
	position: absolute;
	background-color: #ffffff;
	min-width: 100px;
	width: 140px;
	padding: 5px;
	border-radius: 8px;
	overflow: auto;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content .heading {
	font-size: .5em;
	color: #404040;
	margin: 0 .6em;
}

.dropdown-content a {
	font-size: 12px;
	margin: .6em;
	color: black;
	text-decoration: none;
	display: block;
	font-weight: bold;
}

.dropdown-content a:hover {
	font-weight: bold;
}

.show {
	display: block;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: black;
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
	/* Modal Content */
}

.modal .modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	border-radius: 8px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.modal .modal-content .modal-header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	border-bottom: 1px solid #3e3e3e;
}

.modal .modal-content .modal-header h4 {
	margin: 2px;
}

.modal .modal-content .modal-body {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	padding: 1em 0;
}

.modal .modal-content .modal-body .image {
	width: 50%;
	text-align: center;
	background-color: #bbbbbb;
}

.modal .modal-content .modal-body .image img {
	max-height: 400px;
	height: 100%;
}

.modal .modal-content .modal-body .details {
	background-color: #f3f3f3;
	width: 50%;
	padding: 1em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}

.modal .modal-content .modal-body .details p {
	font-size: .6em;
	margin: .1em 0;
}

.modal .modal-content .modal-body .details .footer {
	padding: 1em 0;
	font-size: .6em;
	text-align: right;
}

.modal .modal-content .modal-body .details .footer .view a {
	color: #00c9ff;
}

.modal .modal-content .modal-body .details .footer .delete a {
	color: #ff5252;
}

.delete-image {
	max-height: 400px;
	height: 100%;
}

.show-opacity {
	opacity: 1;
}

.jqte_tool.jqte_tool_1 .jqte_tool_label {
	height: 100% !important;
}

.padding-2 {
	padding: 2em;
}

.query_list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: .8em;
}

.query_list li {
	outline: 1px solid #bbbbbb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	margin-bottom: 8px;
	padding: .5em 1em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
footer .copy {
	text-align: center;
	font-size: .8em;
	color: #999;
}

/*--------------------------------------------------------------
## Screen
--------------------------------------------------------------*/
.site-content.current-screen {
	width: 100vw;
}

.site-content.current-screen .full_output {
	height: 100vh;
	width: auto;
	margin: 0 auto;
}

footer {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 0;
	font-size: .6em;
	overflow: hidden;
}

footer .logo {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: auto;
	z-index: 10000;
	background-color: #000;
}

footer .logo img {
	height: 100%;
	max-width: 100%;
	padding: 1em;
}

footer #rssOutput {
	background-color: #000;
	color: #fff;
	font-size: 2em;
	margin: 0 auto;
	white-space: nowrap;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	padding: 1em 0;
}

footer #rssOutput .story {
	display: inline-block;
	animation: marquee 90s linear infinite;
}

footer #rssOutput .story:first-child {
	padding-left: 100%;
}

footer #rssOutput .story .headline {
	padding-right: 80px;
}

@keyframes marquee {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0);
	}
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

.media-list {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

.media-list li {
	float: left;
	border: 2px solid #f3f3f3;
	border-radius: 8px;
	margin: 2px;
}

.media-list li:hover {
	border: 2px solid #00c9ff;
}

.media-list li .media-item {
	margin: 5px;
	width: 100px;
	height: 100px;
	height: 100px;
	background-size: cover;
	background-position: center 0;
	background-color: #bbbbbb;
	border-radius: 8px;
	cursor: pointer;
}

/*# sourceMappingURL=pub/admin/sass/maps/style.css.map */
