/*
	Theme Name: Dale Clifford
	Theme URI: https://daleclifford.com
	Description: Dale Clifford
	Version: 0.0.1
	Author: Dale Clifford
	Author URI: https://daleclifford.com
	Tags: Blank, HTML5, CSS3
*/

:root {
  --blue: rgb(0, 122, 255);
  --green: rgb(48, 209, 88);
  --jade: #06f18e; /* DC */
  --indigo: rgb(68, 74, 210); /* DC */
  --pumpkin: #E44A26; /* DC */
  --orange: rgb(255, 149, 0);
  --purple: rgb(175, 82, 222);
  --pink: rgb(255, 45, 85);
  --red: rgb(255, 59, 48);
  --teal: rgb(90, 200, 250);
  --yellow: rgb(255, 204, 0);
  --black: rgb(28, 28, 30);
  --grey: #CCC;
  --grey-light: #F1F1F1;
  --grey-dark: rgb(118, 113, 113);
  --warning: rgb(255, 149, 0);
  --warning-10pc: rgba(255, 149, 0,0.1);
  --success: var(--green);
  --error: var(--red);
  --heading-font: 'Montserrat', "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Arial, sans-serif;
  --system-font: -apple-system,BlinkMacSystemFont,"Open Sans","Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
}


/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 300;
}

rt {
	font-size: 12px;
	color: var(--grey-dark);
}

/* HINTS */

[data-hint]{
    position: relative;
    overflow: visible !important;
}

[data-hint]::after{
    content: attr(data-hint);
    position: absolute;
    top: calc( 50% - 25px);
    left: calc(100% - 5px);
    display: block;
    width: 270px;
    max-width: 240px;
    background-color: var(--brand-color-10pc);
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-left: 5px solid var(--brand-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px, rgba(0, 0, 0, 0.1) 0px 0px 1px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    padding: 4px 20px 4px 40px;
    font-size: 15px;
    color: var(--brand-color);
    text-align: left;
    line-height: 20px;
    text-transform: none;
    text-indent: 0px;
    z-index: 99;
    height: 50px;
    overflow: hidden;
}


/* ICONS */

.icon-mask{
	position: relative;
}

.icon-mask::before{
	content: "";
	width: 20px;
	height: 20px;
	padding: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: var(--grey-dark);
	-webkit-mask-image: var(--icon);
	mask-image: var(--icon);
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-size: 20px;
	mask-repeat: no-repeat;
	mask-position: center;
}

body.prepare-export .icon-mask{
	background-image: var(--icon);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
}

body.prepare-export .icon-mask::before{
	display: none !important;
}


/* COLORS */

.blue-text				{ color: var(--blue) !important; }
.jade-text				{ color: var(--jade) !important; }
.green-text				{ color: var(--green) !important; }
.indigo-text			{ color: var(--indigo) !important; }
.pumpkin-text			{ color: var(--pumpkin) !important; }
.orange-text			{ color: var(--orange) !important; }
.purple-text			{ color: var(--purple) !important; }
.pink-text				{ color: var(--pink) !important; }
.red-text				{ color: var(--red) !important; }
.teal-text				{ color: var(--teal) !important; }
.yellow-text			{ color: var(--yellow) !important; }
.black-text				{ color: var(--black) !important; }

.blue-background		{ background-color: var(--blue) !important; }
.jade-background		{ background-color: var(--jade) !important; }
.green-background		{ background-color: var(--green) !important; }
.indigo-background		{ background-color: var(--indigo) !important; }
.pumpkin-background		{ background-color: var(--pumpkin) !important; }
.orange-background		{ background-color: var(--orange) !important; }
.purple-background		{ background-color: var(--purple) !important; }
.pink-background		{ background-color: var(--pink) !important; }
.red-background			{ background-color: var(--red) !important; }
.teal-background		{ background-color: var(--teal) !important; }
.yellow-background		{ background-color: var(--yellow) !important; }
.black-background		{ background-color: var(--black) !important; }


.overflow-shadow{
	overflow: auto;
	background:
		linear-gradient(white 30%, rgba(255,255,255,0)),
		linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
		radial-gradient(50% 0, farthest-side, rgba(0,0,0,.1), rgba(0,0,0,0)),
		radial-gradient(50% 100%,farthest-side, rgba(0,0,0,.1), rgba(0,0,0,0)) 0 100%;
	background:
		linear-gradient(white 30%, rgba(255,255,255,0)),
		linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
		radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.1), rgba(0,0,0,0)),
		radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.1), rgba(0,0,0,0)) 0 100%;
	background-repeat: no-repeat;
	background-color: white;
	background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
	background-attachment: local, local, scroll, scroll; /* Opera hack */
}



/* POPOVER */

[data-title]:before {
    content: attr(data-title);
    font-size: 12px;
    position: absolute;
    background: #e2e1e2;
    color: rgb(28, 28, 30);
    padding: 0px 8px;
    border-radius: 6px;
    margin: -35px auto 0px auto;
    display: inline-block;
	min-width: 70%;
}

[data-title] {
    display: inline-block;
    position: relative;
}

[data-title]:after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: -10px auto 0 auto;
    width: 0;
    height: 0;
    border-top: solid 5px #e2e1e2;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
}

[data-title-position="below"]:before{
    margin: 35px auto 0px auto;
}


[data-title-position="below"]:after{
    margin: 30px auto 0 auto;
    border-bottom: solid 5px #e2e1e2;
    border-top: initial;
	
}

.wp-tag-cloud{
	list-style: none;
}

.wp-tag-cloud li{
	background: #eee;
	padding: 4px 8px !important;
	display: inline-block;
	margin: 5px !important;
	border-radius: 6px !important;
}

.wp-tag-cloud li::before{
	content: '' !important;
	display: none !important;
}

/* FULLWIDTH BACKGROUND FRONTPAGE */

.fullwidth-background {
    background: #f1f1f1;
    position: relative;
    padding: 100px 0px;
    margin: 150px 0px;
    box-shadow: 33vw 0px 0px 0px #f1f1f1, -33vw 0px 0px 0px #f1f1f1;
    -webkit-box-shadow: 33vw 0px 0px 0px #f1f1f1, -33vw 0px 0px 0px #f1f1f1;
}

.fullwidth-background hr:last-of-type{
	display: none;
}

/* CONTENT EDITABLE */

[contenteditable=true]{
    position: relative;
	background-size: 15px;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    display: inline-block;
    white-space: nowrap;
}

[contenteditable=true]:focus{
    cursor: text;
}

[placeholder]:empty:before{
	 content: attr(placeholder);
	 color: rgba(0,0,0,0.3);
	 display: block;  /* For Firefox */
	 position: absolute;
}

[contenteditable][placeholder]:empty:before{
	cursor: text;
}

[contenteditable=true]:not(:empty):before,
[contenteditable=true].force-title:before{
	content: attr(title);
	color: rgba(0,0,0,0.3);
	display: block;
	position: absolute;
	margin-top: -40px;
	font-size: 15px;
}

[contenteditable="true"]:not([multiline="true"])::after{
	width: 0px;
	content: "";
	display: block;
	position: absolute;
	bottom: 0px;
	left: 30px;
	border-bottom: 2px solid rgba(0,0,0,0.2);
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

nav#main .submenu-group > [contenteditable="true"],
nav#main .submenu-group > .make-contenteditable{
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

nav#main .submenu-group.active > [contenteditable="true"],
nav#main .submenu-group.active > .make-contenteditable{
	cursor: text;
}

nav#main .submenu-item.loading:before{
	display: none !important;
}

nav#main .submenu-item > [contenteditable="true"],
nav#main .submenu-item > .make-contenteditable{
	border-radius: 5px;
	margin-left: -5px;
}

nav#main [contenteditable="true"]:empty,
nav#main [contenteditable="true"]:hover{
	background: rgba(0,0,0,0.05);
}

nav#main [contenteditable="true"]:focus{
	background: transparent;
}

nav#main .submenu-item-title[contenteditable="true"]:focus ~ * {
    opacity: 0 !important;
    cursor: default !important;
}

[contenteditable="true"].inline-editor.updating::after {
    animation-name: inline-update;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    width: 5% !important;
}

[contenteditable="true"]:focus::after{
	width: calc(100% - 20px);
	left: 10px;
}

[contenteditable="true"].contenteditable-full-width:focus::after,
.tile.layout-column [contenteditable="true"]:focus::after{
	width: 100%;
	left: 0px;
}

.input-field[contenteditable=true]{
	padding: 10px;
	border-radius: 5px;
    background-color: #f1f1f1;
    cursor: text;
    width: 510px;
    max-width: 100%;
    margin: 20px 10px 20px 0px;
}

.input-field[multiline=true]{
	white-space: normal !important;
}

.input-field.small-field{
    width: 245px !important;
    display: inline-block !important;
}

.input-field[contenteditable=true]:empty{
    background-color: #f1f1f1;
}

.input-field[contenteditable=true]:focus{
    background-color: #f1f1f1;
}

[contenteditable=true][title]:before{
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;

}



/* LOGIN BUTTON */

header #extra-menu > a{
	text-transform: uppercase;
	font-weight: bold;
	font-size: smaller;
}

body.editing #extra-menu{
	display: none !important;
}

body.logged-in header .user-button{
	color: var(--grey-dark);
}

body .email-header{
	display: none;
}

header .user-button[action="show-login"] {
	color:white;
    border: 2px solid var(--brand-color, rgb(0, 122, 255));
    color: var(--brand-color, rgb(0, 122, 255));
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    border-radius: 6px;
    padding: 12px;
    display: inline-block;
    font-size: 15px;
}

header .user-button[action="show-login"]:hover{
	border-color: var(--brand-color, rgb(0, 122, 255)) !important;
    background-color: var(--brand-color, rgb(0, 122, 255)) !important;
    color: white !important;
}

body.scrollBelow50px header .user-button[action="show-login"],
body.show-search header .user-button[action="show-login"]{
	border-color: transparent;
	color: var(--brand-color, rgb(0, 122, 255));
}


header .user-button[action="show-account"]{
	display: none !important;
}

header #extra-menu .notification-count {
	border-radius: 100%;
	background-color: var(--brand-color,black);
	display: inline-block;
	height: 6px;
	width: 6px;
	position: relative;
	top: 0;
	margin-left: 4px;
	color: #fff;
	padding: 0px;
	text-align: center;
	font-size: 10px !important;
	font-weight: 800;
	display: inline-block;
	float: right;
	margin-top: -3px;
}


/* Shrink to Hide */
nav#main:not(.active) .back-button,
.menu-section.active .separator,
.menu-section.child-active .master-item:not(.active){
	height: 0px !important;
    opacity: 0 !important;
    min-height: 0px !important;
    padding: 0px !important;
    overflow: hidden !important;
    margin: 0px !important;
    border-width: 0px !important;
    -webkit-transition: .25s ease-in-out 0.3s;
    -moz-transition: .25s ease-in-out 0.3s;
    -o-transition: .25s ease-in-out 0.3s;
    transition: .25s ease-in-out 0.3s;
}


nav#main .back-button:hover {
    color: #000;
}

nav#main.active .menu-section:not(.active){
    height: 0px !important;
    opacity: 0 !important;
    min-height: 0px !important;
    padding: 0px !important;
    overflow: hidden !important;
    margin: 0px !important;
    border-width: 0px !important;
    -webkit-transition: .25s ease-in-out 0.3s;
    -moz-transition: .25s ease-in-out 0.3s;
    -o-transition: .25s ease-in-out 0.3s;
    transition: .25s ease-in-out 0.3s;
}

nav#main .menu-section:nth-of-type(1) .separator{
	margin-top: 30px;
    border: none;
    padding-top: 0px;
}

nav#main .menu-section,
nav#main .separator,
nav#main .master-item,
nav#main .submenu-group:not(.ui-sortable-helper),
nav#main .submenu-item:not(.ui-sortable-helper){
	-webkit-transition: .25s all ease-in-out !important;
	-moz-transition: .25s all ease-in-out !important;
	-o-transition: .25s all ease-in-out !important;
	transition: .25s all ease-in-out !important;
}

.submenu-group-title[contenteditable="true"]::after {
    top: 50px !important;
    bottom: initial !important;
}

nav#main .master-item.active,
nav#main .master-item.active:hover{
	box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    overflow: visible;
}

nav#main .master-item > .submenu-group,
nav#main .master-item > .submenu-item,
nav#main .master-item > .submenu-item-sortable-placeholder{
	position: relative;
}

nav#main .submenu-group .submenu-item {
    border-left: 0px solid #f2f2f2;
}

nav#main .submenu-group .submenu-item.expanded{
	height: 70px !important;
}

nav#main .submenu-group .submenu-item:not(.new-item):hover,
nav#main .submenu-group .submenu-item:not(.new-item).active{
    border-left-width: 2px;
	border-top-width: 0px;
	padding-top: 11px;
}

nav#main .submenu-group .submenu-item.active,
nav#main .submenu-group .submenu-group.active{
	cursor: default;
}

nav#main .master-item > .submenu-group ~ .submenu-group,
nav#main .master-item > .submenu-group ~ .submenu-item,
nav#main .master-item > .submenu-item:not(.ui-sortable-helper) ~ .submenu-item,
nav#main .master-item > .submenu-item:not(.ui-sortable-helper) ~ .submenu-item-sortable-placeholder,
nav#main .master-item > .submenu-item-sortable-placeholder ~ .submenu-item{
	margin-top: 0px;
}

nav#main .submenu-item{
	color: inherit;
	cursor: pointer;
	position: relative;
	height: 50px;
    padding: 10px 10px 10px 15px;
    width: 100%;
    word-wrap: break-word;
    display: none;
    text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 300;
	border-top: 1px solid #f2f2f2;
	border-left: 2px solid transparent;
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: 20px center;
	clear: both;
}

nav#main .reorder-item-placeholder{
	height: 50px;
    padding: 10px 10px 10px 15px;
    width: 100%;
    display: block;
	border-top: 1px solid #f2f2f2;
	border-left: 2px solid transparent;
	clear: both;
}

nav#main .submenu-group{
	color: inherit;
	display: none;
	overflow: hidden;
	height: 100px;
	border-top: 1px solid #f2f2f2;
    border-left: 2px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

nav#main .submenu-group:hover{
	border-left-color: #ccc;
	border-right-color: #f1f1f1;
	border-bottom-color: #f1f1f1;
}

nav#main .submenu-group:not(.active){
	cursor: pointer;
}

nav#main .master-item:not(.active) .submenu-group:not(.active):hover .submenu-group-title{
	background-color: #f1f1f1;
}

nav#main .master-item.active .submenu-group{
    border: 1px solid #f1f1f1;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.05);
    -ms-box-shadow: 0px 2px 2px rgba(0,0,0,0.05);
    background-color: white;
    position: relative;
    border-radius: 6px;
}

nav#main .master-item.active .new-item::before{
	content: "";
	display: block;
	position: absolute;
	top: calc( 50% - 10px );
	left: 20px;
	background-color: rgb(118, 113, 113);
	-webkit-mask-size: 20px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-size: 20px;
	mask-repeat: no-repeat;
	mask-position: center;
	width: 20px;
	height: 20px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

nav#main .master-item.active .new-item:hover::before,
nav#main .master-item.active .new-item.hint::before{
	background-color: var(--success);
}

nav#main .master-item.active .new-group::before{
	content: "";
	display: block;
	position: absolute;
	top: calc( 50% - 20px );
	left: calc( 50% - 20px );
	background-color: rgb(118, 113, 113);
	-webkit-mask-size: 40px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-size: 40px;
	mask-repeat: no-repeat;
	mask-position: center;
	width: 40px;
	height: 40px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

nav#main .master-item.active .submenu-group + .new-group:not(.hint){
	border: 1px solid transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    background-color: transparent;
}

nav#main .master-item.active .new-group:hover::before,
nav#main .master-item.active .new-group.hint::before{
	background-color: var(--success);
}

nav#main .submenu-group.active{
	height: auto;
	opacity: 1;
	overflow: visible;
	z-index: 9999;
	cursor: default;
	border-color: #e5e5e5 !important;
	box-shadow: 0px 0px 8px rgba(0,0,0,0.1), 0px -20px 20px #fafafa, 0px 20px 20px #fafafa !important;
	-webkit-box-shadow: 0px 0px 8px rgba(0,0,0,0.1), 0px -20px 20px #fafafa, 0px 20px 20px #fafafa !important;
	-moz-box-shadow: 0px 0px 8px rgba(0,0,0,0.1), 0px -20px 20px #fafafa, 0px 20px 20px #fafafa !important;
	-ms-box-shadow: 0px 0px 8px rgba(0,0,0,0.1), 0px -20px 20px #fafafa, 0px 20px 20px #fafafa !important;
}

nav#main .new-group.loading{
	opacity: 1;
}

nav#main .master-item.active .submenu-group:hover,
nav#main .master-item.active .new-group:hover,
nav#main .master-item.active .new-group.loading{
	border-color: #f1f1f1 !important;
	background-color: white !important;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    opacity: 1;
}

nav#main .submenu-group-title {
	padding: 10px;
	font-size: 15px;
	width: 100%;
	height: 100px;
	clear: both;
	display: block;
	font-family: var(--heading-font);
	font-weight: 500;
	padding: 15px 20px;
	background: white;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

nav#main .submenu-group-subtitle {
	position: absolute;
	top: 40px;
	left: 0px;
	height: 50px;
	width: 100%;
	font-size: 12px;
	padding: 10px 20px;
	display: block;
	line-height: 15px;
	color: #aaa;
}

nav#main .submenu-group-subtitle[href]::after{
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	top: 0px;
	-webkit-transform: rotate(-45deg) translate(-6px, 12px);
	transform: rotate(-45deg) translate(-6px, 12px);
	-webkit-box-shadow: 3px 3px 0px -1px rgba(0,0,0, 0.7);
	box-shadow: 3px 3px 0px -1px rgba(0,0,0, 0.7);
	-webkit-transition: .25s ease-in-out 0.1s;
	-moz-transition: .25s ease-in-out 0.1s;
	-o-transition: .25s ease-in-out 0.1s;
	transition: .25s ease-in-out 0.1s;
	position: absolute;
	border: 0px;
	opacity: 0;
}

nav#main .submenu-group:hover .submenu-group-subtitle[href]::after{
	opacity: 0.3;
}

nav#main .submenu-group-subtitle[href]:hover::after,
nav#main .submenu-group-subtitle[href].active::after{
	-webkit-transform: rotate(-45deg) translate(0px, 17px);
	transform: rotate(-45deg) translate(0px, 17px);
	-webkit-box-shadow: 3px 3px 0px -1px var(--brand-color) !important;
	box-shadow: 3px 3px 0px -1px var(--brand-color) !important;
	opacity: 1;
}

nav#main .submenu-group-title.make-contenteditable + .submenu-group-subtitle {
	top: 50px;
}

nav#main .submenu-group-subtitle[href]{
	cursor:pointer;
}

nav#main .submenu-group-subtitle[href]:hover{
	color: var(--brand-color);
}

nav#main .submenu-group-subtitle[href].active{
	color: var(--brand-color);
	font-weight: bold;
}

nav#main .submenu-group.active .submenu-group-title {
	background: #fbfbfb;
	background: linear-gradient(-10deg, #ffffff 30px, #fbfbfb 100%);
}

nav#main .submenu-group.active .submenu-group-title[contenteditable="true"]:focus{
	background-image: none;
}

nav#main .submenu-item:hover{
	border-left-color: #cccccc;
	background-color: #f1f1f1;
}

nav#main .master-item.active .submenu-group,
nav#main .master-item.active .new-group{
	margin: 20px 0px;
	border-radius: 6px;
	padding-bottom: 8px;
}

nav#main .master-item.active .submenu-group:not(.active):not(.new-group){
	border-color: #f1f1f1;
}

nav#main .submenu-item.active{
	border-left-color: var(--brand-color, rgba(0, 0, 0, 1.0));
	background-color: var(--brand-color-10pc, rgba(0, 0, 0, 0.1));
}

nav#main .submenu-group.active:not(.child-active) .submenu-group-title{
	background: var(--brand-color-10pc, rgba(0, 0, 0, 0.1)) !important;
	background: linear-gradient(15deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.05) 100%) !important;
}

nav#main .submenu-item.active,
nav#main .submenu-item.active + .submenu-item{
	border-top-color: transparent;
}

nav#main a.submenu-item{
	text-decoration: none;
}

nav#main .master-item.active .submenu-group,
nav#main .master-item.active .submenu-item{
	display: block;
}

nav#main .submenu-item.new-item{
	text-transform: uppercase;
	color: #AAA;
	font-size: 12px;
	text-indent: 40px;
    line-height: 30px;
    font-weight: 300;
}


nav#main .submenu-item.new-item:hover,
nav#main .submenu-item.new-item.active,
nav#main .submenu-item.new-item.hint{
    color: var(--success);
}

nav#main .submenu-item.new-item:hover,
nav#main .submenu-item.new-item.active{
	background-color: rgba(52, 199, 89, 0.1);
    border-top-color: transparent;
}


nav#main .master-item:not(.active):hover{
	background: white;
	border: 1px solid #eee;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

nav#main .master-item .light{
	display: inline-block;
	font-weight: 300;
}

nav#main .master-item .master-item-title{
	font-family: var(--heading-font);
	font-weight: 500;
	padding: 13px 13px 13px 45px;
    display: block;
    clear: both;
}

nav#main .master-item .master-item-icon{
	max-height: 20px;
	max-width: 20px;
	position: absolute;
	top: 15px;
	left: 15px;
}

nav#main .master-item .submenu-item .move-handle {
    opacity: 0;
    height: 30px;
    width: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    top: calc( 50% - 15px );
    z-index: 99;
    border-radius: 50px;
    background-size: 15px;
}

nav#main .master-item .submenu-item:hover .move-handle {
    opacity: 0.5;
}

nav#main .master-item .submenu-item .move-handle:hover,
nav#main .master-item .submenu-item.ui-sortable-helper .move-handle {
    opacity: 1;
    background-color: white;
}

nav#main .submenu-item-title {
    width: 90%;
    width: calc( 100% - 40px);
	line-height: 28px;
    height: 30px;
    position: relative;
    display: block;
    margin-left:5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 400;
}

nav#main .read-only .submenu-item-title {
	width: 100% !important;
}

/* REORDER ITEMS */

.reorder-item.ui-sortable-helper{
	-webkit-transition: none !important;
	-moz-transition: none !important;
	transition: none !important;
}



body.has-header-image:not(.application) #menu-mobile::after{
    background: var(--brand-color-10pc, #eee);
}

body.show-mobile-menu #menu-mobile::after,
body.hint-mobile-menu #menu-mobile::after,
body #menu-mobile:hover::after{
    opacity: 1;
    background: #eee;
}

body.show-mobile-menu .modal-form.peek{
	opacity: 0 !important;
}

body.home #menu-mobile .toggle span{
	background: #231E20;
}

body.has-header-image:not(.application) #menu-mobile .toggle span{
	background: var(--brand-color) !important;
}

body.has-header-image:not(.application) #menu-mobile:hover .toggle span{
	background: var(--brand-color) !important;
}

body #menu-mobile{
	width: 320px;
	position: relative;
	cursor: pointer;
	float: left;
	height: 40px;
	padding: 0px;
}

body.wide-header #menu-mobile{
	display: block !important;
}

body #menu-mobile .toggle{
	left: 45px;
	right: initial;
	top: 8px;
}

body.show-mobile-menu.nav-back #menu-mobile .toggle,
body.hint-mobile-menu.nav-back #menu-mobile .toggle{
	margin-left: 10px;
}

body.show-mobile-menu.nav-back #menu-mobile:hover .toggle,
body.hint-mobile-menu.nav-back #menu-mobile:hover .toggle{
	margin-left: 0px;
}

nav#main:empty ~ header #menu-mobile{
	display: none !important;
}

#menu-mobile::before{
	content: "Show menu";
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
	position: absolute;
	display: block;
	opacity: 0;
	top: 10px;
	left: 90px;
	width: 230px;
	color: var(--grey-dark);
}

body.has-header-image:not(.application) #menu-mobile::before{
	color: var(--brand-color-10pc);
}

body #menu-mobile:hover::before{
	opacity: 1;
}

body.show-mobile-menu #menu-mobile::before{
	content: "Close menu";
}

body.show-mobile-menu #menu-mobile::before,
body.hint-mobile-menu #menu-mobile::before{
	opacity: 1;
}

body.hint-mobile-menu:not(.nav-back) #menu-mobile{
	display: none !important;
}

body.show-mobile-menu.nav-back #menu-mobile::before,
body.hint-mobile-menu.nav-back #menu-mobile::before{
	content: "Show all apps";
	color: var(--brand-color);
}

body.canvas content{
	cursor: grab;
}

body.canvas.dragging content{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: grabbing;
}



body.canvas content .tile{
	cursor: initial;
}


body.show-mobile-menu.nav-back #menu-mobile::after,
body.hint-mobile-menu.nav-back #menu-mobile::after{
	width: 230px;
	background: var(--brand-color-10pc);
}

body.wide-header .site-title{
	display: none;
}

#menu-mobile .toggle span{
    display: block;
    position: absolute;
    height: 3px;
    width: 18px;
    background: rgb(50,50,50);
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#menu-mobile .toggle span:nth-child(1) {
  top: 5px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#menu-mobile .toggle span:nth-child(2) {
  top: 13px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#menu-mobile .toggle span:nth-child(3) {
  top: 21px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

body.show-mobile-menu #menu-mobile .toggle span:nth-child(1){
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(42deg);
  top: 5px;
  left: 0px;
  width: 24px;
  background: #888 !important;
}

body.show-mobile-menu #menu-mobile .toggle span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

body.show-mobile-menu #menu-mobile .toggle span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-42deg);
  top: 21px;
  left: 0px;
  width: 24px;
  background: #888 !important;
}

body.nav-back.show-mobile-menu #menu-mobile .toggle span:nth-child(1),
body.nav-back.hint-mobile-menu #menu-mobile .toggle span:nth-child(1){
  -webkit-transform: rotate(-42deg);
  -moz-transform: rotate(-42deg);
  -o-transform: rotate(-42deg);
  transform: rotate(-42deg);
  top: 12.5px;
  left: 0px;
  width: 10px;
  background: var(--brand-color) !important;
}

body.nav-back.show-mobile-menu #menu-mobile .toggle span:nth-child(2),
body.nav-back.hint-mobile-menu #menu-mobile .toggle span:nth-child(2){
  width: 20px;
  opacity: 1;
  background: var(--brand-color) !important;
  margin-left: -1px;
}

body.nav-back.show-mobile-menu #menu-mobile .toggle span:nth-child(3),
body.nav-back.hint-mobile-menu #menu-mobile .toggle span:nth-child(3){
  -webkit-transform: rotate(42deg);
  -moz-transform: rotate(42deg);
  -o-transform: rotate(42deg);
  transform: rotate(42deg);
  top: 12.5px;
  left: 0px;
  width: 10px;
  background: var(--brand-color) !important;
}

body.show-mobile-menu #menu-mobile .toggle span {
    background: #231E20 !important;
}

/* BODY */

body{
	background: #FBFBFB;
	background: linear-gradient(0deg, #FBFBFB 140px, #FAFAFA 100%) fixed;
	font-size: 17px;
	line-height: 1.35;
	font-weight: 400;
	font-family: var(--system-font);
	color: rgb(28,28,30);
}

body.white-background{
	background: white !important;
}

body.no-scroll {
  overflow: hidden;
}

body.dark{
	background: rgb(28,28,30);
	background: linear-gradient(0deg, rgba(28,28,30,1) 0%, rgba(44,44,46,1) 100%);
}

body:not(.loading) .transition:not(.ui-sortable-helper){
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

body.application:not(.single) #detail-view p{
	margin: 0px 0px;
}


/* BLOCKQUOTE */

blockquote {
    margin: 40px;
    width: 550px;
    border-left: 5px solid var(--brand-color, rgb(0, 122, 255));
    padding-left: 20px;
}

blockquote, blockquote p {
    font-weight: bold;
    font-size: 17px;
    line-height: 40px;
}


/* HEADER */

body.admin-bar:not(.has-header-image) header,
body.admin-bar.has-header-image:not(.home) header{
    margin-top: 32px;
}

body:not(.home) header,
body.home.scrollBelow50px header,
body.wide-header header{
    -webkit-box-shadow: 0 0 50px rgba(0,0,0,0.2);
    box-shadow: 0 0 50px rgba(0,0,0,0.2);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(244, 244, 244, 0.7);
    z-index: 999;
}

body.has-header-image:not(.home) header{
    height: auto !important;
    background-position: top;
}

body.has-header-image.wide-header:not(.home) header{
/*	background-image: none !important;*/
}

body.home.has-header-image header{
    position: initial;
}

header.logo-standard .custom-logo-link{
    position: absolute;
}

header.logo-standard .custom-logo-link img{
    max-height: 55px !important;
}

header.logo-full-width{
    height: 160px !important;
}

header.logo-full-width ~ content{
	margin-top: 160px;
}

body.home header.logo-full-width ~ content{
	margin-top: 250px;
}

body.wide-header #header-frame {
    max-width: 100%;
}

.site-title{
	height: 40px;
	width: 320px;
	padding: 5px 20px;
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: calc(var(--brand-size, 30) * 1px);
	line-height: 30px;
	color: var(--brand-color, rgb(0, 122, 255));
	position: relative;
	box-sizing: border-box;
	display: inline-block;
	float: left;
}

.site-title a {
    color: inherit !important;
    text-decoration: inherit !important;
}

.site-title .light{
	font-weight: 900;
	color: #767171;
}

#site-title-work {
    clear: left;
    display: inline-block;
    margin-left: 17px;
}

#site-title-dot {
    display: inline-block;
}

/* FRONT PAGE WAVES */

.waves {
	position: absolute;
	width: 100%;
	height: 30vh;
	margin-bottom: -7px;
	min-height: 100px;
	max-height: 500px;
	top: 0;
	left: 0;
	z-index: -1;
}

body:not(.home) .waves,
body.wide-header .waves{
	display: none;
}

.parallax>use {
  animation: move-forever 95s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 127s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 50s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 63s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 90s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}


/* LINKS */

p a,
footer a,
a.link,
a.cta{
	transition-duration: .1s;
    display: inline-block;
    position: relative;
}

a{
	text-decoration:none;
}

a.cta:not(.button)::after {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	top: -5px;
	-webkit-transform: rotate(-45deg) translate(-6px, 12px);
	transform: rotate(-45deg) translate(-6px, 12px);
	-webkit-box-shadow: 3px 3px 0px -1px rgba(0,0,0, 1);
	box-shadow: 3px 3px 0px -1px rgba(0,0,0, 1);
	position: absolute;
	border: 0px;
	opacity: 0.3;
}

p a,
p a:hover,
a.link,
a.link:hover,
a.cta,
a.cta:hover{
	color:var(--brand-color, rgb(0, 122, 255));
}

footer a,
footer a:hover{
	color: #767171;
}

p a:not([class*="button"])::before,
footer a::before,
a.link::before,
a.cta::before,
.user-item.loading::before{
    position: absolute;
    content: '';
    width: 100%;
    pointer-events: none;
    opacity: 0;
    top: 100%;
    margin-top: 0em;
    height: 1px;
    background-color: var(--brand-color, rgb(0, 122, 255));
    left: 0;
    transition: .2s;
    border-radius: 0px;
    border: 0px;
}

p a:hover::before,
footer a:hover::before,
a.link:hover::before,
a.cta:hover::before,
.user-item.loading::before{
    margin-top: 0em;
    opacity: 1;
}

p a.loading::before,
p a:active::before,
footer a.loading::before,
footer a:active::before,
a.link.loading::before,
a.link:active::before,
.user-item.loading::before{
	animation-name: link-loading !important;
    animation-duration: 4s !important;
    animation-iteration-count: infinite !important;
    width: 5%;
    opacity: 1;
}

p a[target="_blank"]{
	padding-right: 20px;
}

.external-content p a[target="_blank"]{
    padding: 0px !important;
}


p a[target="_blank"]::after,
a.button[target="_blank"]::after,
a.link[target="_blank"]::after{
	content: "";
	opacity: 0;
	position: absolute;
	background-color: var(--brand-color);
    -webkit-mask:  url(images/external-link.svg) no-repeat 50% 50%;
    mask: url(images/external-link.svg) no-repeat 50% 50%;
	padding: 2px;
	height: 100%;
	width: 0px;
	display: inline-block;
	margin: 0px 5px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
	background-position: left center;
	top: 0px;
	right: -4px;
}

a.link[target="_blank"]::after{
	opacity: 0.5;
	width: 16px;
}

.external-content a[target="_blank"]::after,
.external-content a.button[target="_blank"]::after,
.external-content a.link[target="_blank"]::after{
    display: none !important;
}

p a[target="_blank"]::after,
a.button[target="_blank"]:hover::after,
a.link[target="_blank"]:hover::after{
	opacity: 1;
	width: 16px;
}

a.button[target="_blank"]::after{
	background-color: white;
}

a.button[target="_blank"],
a.link[target="_blank"]{
	padding-right: 24px;
}



@-webkit-keyframes link-loading {
    0%   {border-color: var(--brand-color-10pc); left:0px; width: 5%; }
    25%  {width: 10%; }
    50%  {border-color:var(--brand-color); left:90%; }
    75%  {width: 10%; }
    100% {border-color:var(--brand-color-10pc); left:0px; width: 5%; }
}

/* INTERFACE ANIMATIONS */

@-moz-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-o-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  60% {
    opacity: 1;
    -ms-filter: none;
    filter: none;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}


@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }
  20% {
    height: 0;
    width: 0.45em;
    opacity: 1;
  }
  40% {
    height: 1em;
    width: 0.45em;
    opacity: 1;
  }
  100% {
    height: 1em;
    width: 0.45em;
    opacity: 1;
  }
}

@-webkit-keyframes inline-update {
    0%   {border-color:#ccc; left:0px; width: 5%; }
    25%  {width: 10%; }
    50%  {border-color:#eee; left:90%; }
    75%  {width: 10%; }
    100% {border-color:#ccc; left:0px; width: 5%; }
}


/* MAXIMUM SIZES */

img{
	max-width: 100%;
	max-height: 100%;
	height: auto;
    width: auto;   
}

.circle-image img{
	border-radius: 100%;
}

/* SHARE */

#share{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.shared-private + [action="share-email"],
.shared-private + #shared-users{
	display: none !important;
}

/* COMMENTS */

#comments{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.comment-list{
	list-style: none;
}

.comment-list li::before{
	display: none !important;
}

#new-comment {
	position: sticky;
	bottom: -40px;
	left: 0px;
	height: 130px;
	width: 100%;
	background: linear-gradient(0deg, #FBFBFB 140px, #FAFAFA 100%) fixed;
	margin-bottom: -40px;
	box-shadow: 0px -10px 10px -10px rgba(0,0,0,0.1);
	max-width: 700px;
	margin: 0px auto;
}

#new-comment::before{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(68, 68, 68,0.1), rgba(0, 0, 0, 0));
	margin-bottom: 25px;
}

#comment-content{
	border-radius: 6px;
	height: 80px;
	background: var(--grey-light);
	width: 100%;
	padding: 16px;
}

.send-button{
	border-radius: 100%;
	background: var(--brand-color);
	text-indent: -1000px;
	overflow: hidden;
	height: 40px;
	width: 40px;
	position: absolute !important;
	cursor: pointer;
	right: 20px;
	bottom: 40px;
}

.send-button:not(.loading)::before{
	content: "";
	display: block;
	position: absolute;
	-webkit-mask-image: url(icons/messaging/icons8-email_send.svg);
	mask-image: url(icons/messaging/icons8-email_send.svg);
	background-color: white;
	top: calc( 50% - 10px ) !important;
	right: calc( 50% - 10px ) !important;
	width: 20px;
	height: 20px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.send-button:not(.loading):hover::before{
	top: calc( 50% - 12px ) !important;
	right: calc( 50% - 12px ) !important;
}


.send-button.loading:empty::before{
	height: 30px !important;
	width: 30px !important;
	left: 5px !important;
	top: 5px !important;
	border-width: 2px !important;
}

#comment {
    padding: 10px;
	border-radius: 5px;
    border-color: #cccccc;
    background-color: white;
    cursor: text;
    width: 100%;
    margin: 20px 10px 20px 0px;
    font-size: 15px;
}

.comment-form-comment{
	margin: 0px;
}

#respond .form-submit{
	display: inline-block;
	margin: 20px 0px;
}

#respond .form-submit .button{
	margin: 0px;
}

#respond,
.comment {
	border-radius: 6px;
	background: var(--grey-light);
	margin: 20px;
	width: 80%;
	list-style: none;
	padding: 40px;
	position: relative;
}

#reply-title {
	margin: 20px 0px;
}

.logged-in-as{
	display: none;
}

.comment .says,
.comment .reply,
.comment .comment-edit-link{
	display: none;
}

.comment .avatar {
	height: 20px;
	width: 20px;
	float: left;
	margin-right: 13px;
}

.comment-author{
	height: 40px;
	position: absolute;
	bottom: 0px;
	left: 40px;
	font-size: 13px;
	padding-top: 8px;
	color: var(--grey-dark);
	width: calc( 100% - 80px);
}

.comment-meta{
	float: right;
    text-align: right;
    height: 40px;
	position: absolute;
	bottom: 0px;
	right: 40px;
	font-size: 13px;
	border-top: 1px solid #eaeaea;
	padding-top: 8px;
	width: calc( 100% - 80px);
}

.comment-meta a{
    color: var(--grey-dark) !important;
}

.comment-form-url{
	display: none !important;
}


/* PROFILES */

.avatar-item {
	height: 40px;
	width: 40px;
	float: left;
	margin-right: 15px;
	position: relative;
}

.avatar {
	border-radius: 100%;
}

.user-item .avatar-item {
	margin: -10px 15px 0px 0px;
}

.user-item[data-status] .avatar-item::after{
	content: "";
	height: 16px;
	width: 16px;
	display: block;
	border: 1px solid white;
	position: absolute;
	background: white;
	bottom: -3px;
	right: -3px;
	border-radius: 100%;
}

.user-item[data-status="online"] .avatar-item::after{
	background: var(--success);
}

.user-item[data-status="away"] .avatar-item::after{
	background: var(--warning);
}

.user-item[data-status="offline"] .avatar-item::after{
	background: var(--error);
}

[itemprop="dateModified"],
.hidden{
	display: none;
}

[itemprop="author"]{
	color: black;
	font-weight: bold;
	font-size: 15px;
}

[itemprop="datePublished"]{

}

.post-meta{
	font-size: 13px;
	min-height: 48px;
	margin: 50px 0px;
	max-width: 500px;
	box-sizing: content-box;
	position: relative;
	vertical-align: baseline;
	display: block;
}

.post-hashtags {
    margin-top: 10px;
    display: block;
    max-width: calc( 100% - 70px) !important;
}

.post-meta .avatar-link{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 48px;
	width: 48px;
	display: block;
	vertical-align: top;
}

.post-meta .author-link{
	position: absolute;
	top: 3px;
	left: 70px;
	display: block;
	vertical-align: top;
}

.post-meta .post-details{
	padding: 40px 0px 0px 70px;
	color: var(--grey-dark);
	top: 25px;
	left: 70px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(68, 68, 68,0.1), rgba(0, 0, 0, 0));
    margin: 80px 0px;
    clear: both;
    display: block;
    grid: none;
    border: none !important;
}




/* TEXT STYLES */


h1{
    font-size: 30px;
    line-height: initial;
    font-weight: 700;
}

body.home h1{
    max-width: initial !important;
}

h2{
	font-size: 24px;
	margin: 70px 0px 40px 0px;
	font-weight: 500;
}

body.single-post h2{
	font-size: 24px;
}

h3{
	font-size: 22px;
    margin: 80px 0px 40px 0px;
    font-weight: 400;
}

h4{
    border-bottom: 1px solid #eee;
    display: inline-block;
    padding-top: 20px;
}

h1.frontpage-header {
	margin: 30px auto;
	text-align: center;
}

.sentence-case::first-letter{
	text-transform: capitalize;
}

mark {
  margin: 0 -0.4em;
  padding: 0.1em 0.6em;
  border-radius: 0.8em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    var(--brand-color-20pc, --grey-light),
    var(--brand-color-10pc, --grey-light) 4%,
    var(--brand-color-20pc, --grey-light)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.6em;
} 

.inline-block{
	display: inline-block;
	margin: 0px 15px 0px 0px;
}

kbd {
    background-color: #eee;
    border-radius: 3px;
    border: 1px solid #b4b4b4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
    color: #333;
    display: inline-block;
    font-size: .85em;
    font-weight: 700;
    line-height: 1;
    padding: 2px 4px;
    white-space: nowrap;
}

/* TABLES */

table.calculator th {
    background: var(--brand-color, rgb(0, 122, 255));
    color: white;
    font-size: 17px;
    padding: 24px !important;
}

table.calculator th input {
    color: white;
}

.tile table{
    margin: 50px -30px 0px;
    width: calc( 100% + 60px);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    border: none;
}

.tile table th{
    border-radius: 0px !important;
}

tile table{
	background: white;
	margin: 0px;
}

td.hover-link{
	text-align: center;
}

th {
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-size: 14px;
    background: rgba(0,0,0,0.07);
    padding: 8px 24px !important;
}

table.center td{
	text-align: center;
}

th em, td em {
    font-size: 12px;
    line-height: 12px;
    clear: both;
    display: block;
    color: rgba(0,0,0,0.4);
    font-style: normal;
}

tr:first-of-type th:first-of-type{
	border-top-left-radius:6px;
}

tr:first-of-type th:last-of-type{
	border-top-right-radius: 6px;
}

tr + tr:last-of-type th{
	border-bottom-left-radius:6px;
	border-bottom-right-radius: 6px;
}

tr:not(:last-of-type) th:not([rowspan]),
tr:not(:last-of-type) td:not([rowspan]) {
    border-bottom: 5px solid #fafafa;
}

table:not(.ui-datepicker-calendar):not(.compare) td + th:before,
table:not(.ui-datepicker-calendar):not(.compare) th:not(.join) + th:not(.join):before {
    content: "|";
    margin-left: -24px;
    padding-right: 24px;
    color: #ccc;
}

th.join, td.join {
    font-size: 30px;
    color: rgba(0,0,0,0.1);
    font-weight: bold;
	padding: 30px 10px;
}

th.join {
    color: #444444;
}

/* THEME IMAGES */

.modal-introduction {
    background-image: url(images/sign-up.svg);
}

/* SECTIONS */

content .section-content{
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
	display: block;
	clear: both;
}

content .section-content + content .section-content::before{
    content: attr(title);
    font-size: 30px;
    text-align: center;
    display: block;
    margin: 30px auto;
}

content .section-header{
	position: relative;
	padding-top: 20px;
	display: block;
	clear: both;
    text-align: center;
	max-width: 500px;
	margin: 5px auto;
	display: block;
}

content .section-content .tile.detail{
	margin: 50px auto;
}


/* GROUP TILES BY PROFILE */

content .profile-section{
	position: relative;
	margin-top: 20px;
	padding-top: 20px;
	display: block;
	clear: both;
}

content .profile-section .tile.detail{
	margin: 50px auto;
}

content .profile-section ol li.tile.detail{
    counter-increment: step-counter;
    overflow:visible;
}


content .section-content > h3,
content .section-content > h4,
content .section-content > p,
content .profile-section > h3,
content .profile-section > h4,
content .profile-section > p{
	text-align: center;
	max-width: 500px;
	margin: 5px auto;
	display: block;
}


content .section-content .section-icon,
content .profile-section .profile-icon{
	-webkit-mask-image: var(--icon);
	mask-image: var(--icon);
	background-color: #e7e7e6;
	-webkit-mask-size: 50px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-size: 50px;
	mask-repeat: no-repeat;
	mask-position: center;
	height: 100px;
	width: 100px;
    text-align: center;
    display: block;
    margin: 0px auto;
}



.info{
	position: relative;
	padding: 16px 30px 16px 30px;
	display: block;
	line-height: 19px;
	font-size: 14px;
	background-color: rgb(245, 245, 245);
	margin: 20px -30px !important;
}

.info::before {
	content: "";
	height: 20px;
	width: 20px;
	position: absolute;
	top: calc( 50% - 10px );
	left: 5px;
	display: block;
	-webkit-mask-image: url('icons/icons8-info.svg');
    mask-image: url('icons/icons8-info.svg');
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
	opacity: 0.5;
}

.info.success::before {
	-webkit-mask-image: url('icons/messaging/icons8-ok.svg');
    mask-image: url('icons/messaging/icons8-ok.svg');
    background-color: var(--brand-color);
    opacity: 1;
}

.info.question::before {
	-webkit-mask-image: url('icons/interface/icons8-help.svg');
    mask-image: url('icons/interface/icons8-help.svg');
    background-color: #000;
}


/* BUTTONS */

button:hover,
.button:hover{
	text-decoration: none !important;
    border: 1px solid var(--brand-color, rgba(0,0,0,.3) );
}

button.go:hover,
.button.go:hover{
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    -ms-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    transform: translate(0px, -1px);
}

button.hero,
a.hero{
    padding: 10px 80px;
    height: 60px;
    width: 300px;
    font-size: 20px;
    margin: 50px auto !important;
    display: block;
    border-radius: 999em;
    font-family: var(--heading-font);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 40px !important;
    text-align: center !important;
}

button.loading,
.button.loading{
    padding-left: 55px;
    background-size: 25px;
}

button.loading::before,
.button.loading::before{
	height: 1.3em !important;
    width: 1.3em !important;
    left: 16px !important;
    top: calc(50% - 0.7em) !important;
    border-width: 2px !important;
}

button.go.loading::before,
.button.go.loading::before{
	border: 3px solid rgba(255,255,255,.2) !important;
    border-top-color: rgba(255,255,255,.7) !important;
}

.button.small {
    font-size: 12px;
    padding: 2px 20px;
    text-transform: uppercase;
    background: #eee;
    color: #241e1f;
    height: 30px;
    border: none !important;
}

.button.small:hover {
    background: #ccc;
}

.has-text-align-center,
.aligncenter{
    text-align: center;
    max-width: 100%;
}


/* LISTS */

.single content ol,
.page content ol{
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    list-style-type: none;
    margin: 50px 0px;
}

.single content ol li,
.page content ol li{
	counter-increment: step-counter;
    margin: 20px;
    padding-left: 50px;
    padding-top: 30px;
}

ol li.tile.detail::before,
.single content ol li::before,
.page content ol li::before {
    content: counter(step-counter);
    margin-left: -45px;
    font-size: 17px;
    color: white;
    padding: 5px 0px;
    font-weight: bold;
    width: 30px;
    display: block;
    float: left;
    line-height: 20px;
    background: #7b7b81;
    border-radius: 5px;
    height: 30px;
    text-align: center;
    margin-top: -2px;
    box-sizing: border-box;
}

.sublist-wrapper{
    counter-reset: sublist-counter;     
}

ol li.tile.detail::before{
    margin: 20px 10px 0px 0px;
    background-color: var(--brand-color, grey);
    position: absolute;
    left: -50px;
    counter-increment: sublist-counter;
    content: counter(sublist-counter);
}

.single content ul:not(.breadcrumb),
.page content ul:not(.breadcrumb),
.archive content ul:not(.breadcrumb){
    padding: 0;
    list-style-type: none;
}

.archive content ul:not(.breadcrumb):not(.featured-tools) li,
.page content ul:not(.breadcrumb):not(.featured-tools) li,
.single content ul:not(.breadcrumb):not(.featured-tools) li{
	margin: 40px 20px;
    padding: 0px 0px 0px 30px;
}

.archive content ul:not(.breadcrumb) li::before,
.single content ul:not(.breadcrumb) li::before,
.page content ul:not(.breadcrumb) li::before {
	content: "";
    margin-left: -40px;
    font-size: 16px;
    color: white;
    padding: 4px;
    font-weight: bold;
    width: 6px;
    display: block;
    float: left;
    line-height: 20px;
    background: #ccc;
    border-radius: 20px;
    height: 6px;
    text-align: center;
    margin-top: 12px;
    box-sizing: border-box;
}







/* CODE */

pre code{
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    white-space: pre-wrap;
}

code {
    font-family: monospace;
    position: relative;
}

p code {
    background: rgba(0, 122, 255, 0.1);
    padding: 0px 10px;
    font-weight: 600;
    border-radius: 6px;
}

pre {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0px;
    font-family: monospace;
    font-size: 14px;
    line-height: 19px;
    max-width: 700px;
    box-shadow: inset 0 0px 5px 0 #e0e0e0;
    position: relative;
}

pre:before{
	position: absolute;
    top: -18px;
    background: #eee;
    padding: 0px 16px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-family: var(--heading-font);
    font-size: 10px;
    font-weight: bold;
    color: #aaa;
}

pre strong{
    background: rgba(0,122,255,0.1);
    display: inline;
    border-radius: 6px;
    padding: 4px 16px;
    margin: 0px -16px;
}

:not(pre) > code{
	background: var(--brand-color-10pc, --grey-light);
    display: inline;
    border-radius: 6px;
    padding: 4px 8px;
    margin: 0px 0px;
}


pre.html:before{
	content: "HTML";
}

pre.css:before{
	content: "CSS";
}

pre.js:before{
	content: "JS";
}

u {
    text-decoration: none;
    color: #007aff;
}

/* FOOTER */

body.application .footer,
body.hide-footer .footer{
	display: none !important;
}

footer h3.widget-title {
    font-weight: bold;
    font-size: 17px;
    margin: 20px 0px;
}

.footer .legal {
    padding: 1.625em 25px;
    text-transform: uppercase;
    font-size: 13px;
}

.footer .legal a{
	margin: 0px 0px 0px 20px;
}

.footer .legal-links {
    display: inline;
}

.footer ul {
    list-style: none;
    padding: 0px;
}

.footer{
	max-width:960px;
	width:95%;
	margin: 0px auto;
    padding-bottom: 170px;   
}

footer small {
    font-size: 10px;
}

#supplementary {
    margin:auto;
    max-width:1000px;
	padding: 1.625em 15px;
	overflow: hidden;
}

#supplementary .widget-area{
    padding: 1%;
    display: inline-block;
    float: left;
	margin-right: 3.7%;
	width: 25.85%;
}

#supplementary .widget-area + .widget-area + .widget-area {
	margin-right: 0;
}

#supplementary #wide-footer {
    width: 100% !important;
    clear: both;
    display: block !important;
}




/* SOFTWARE Style Overrides */

body.theme-style-software a.button,
body.theme-style-software nav#global > ul > li.menu-item,
body.theme-style-software nav#global a{
	border-radius: 3px !important;
	font-family: var(--system-font) !important;
	font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.42857142857143;
    letter-spacing: normal;
    font-stretch: normal;
    padding: 3px 6px;
}

body.theme-style-software nav#global > ul > .current-menu-item > a::after,
body.theme-style-software nav#global > ul > .menu-item > a::after{
	border-bottom-width: 0px !important;
}

body.theme-style-software nav#global .menu-item-has-children:hover .sub-menu{
	border-radius: 3px !important;
	border-top-left-radius: 0px !important;
	margin-top: 0px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.31) 0px 0px 1px;
}

body.theme-style-software nav#global .menu-item-has-children:hover{
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	-ms-box-shadow: none !important;
}

body.theme-style-software nav#global .sub-menu li{
	padding: 8px 20px;
}

body.theme-style-software.has-header-image header .user-button{
	padding: 3px 6px !important;
	border: none !important;
	color: var(--brand-color-10pc, rgb(0, 122, 255)) !important;
	background-color: transparent;
}

body.theme-style-software.has-header-image header .user-button:hover{
	background-color: transparent !important;
}

body.theme-style-software.has-header-image header #extra-menu:not(.menu-item-has-children){
	padding: 3px 6px !important;
	background-color: transparent !important;
	border: 2px solid var(--brand-color-10pc, rgb(0, 122, 255)) !important;
}

body.theme-style-software.has-header-image header #extra-menu:hover{
	background-color: var(--brand-color-10pc, rgb(0, 122, 255)) !important;
}

body.theme-style-software.has-header-image header #extra-menu:hover .user-button{
	color: var(--brand-color, rgb(0, 122, 255)) !important;
}

/* BUSINESS Style Overrides */

body.theme-style-business nav#global a{
	font-family: var(--system-font);
	letter-spacing: .01rem;
	font-size: 13px;
	text-transform: uppercase;
}

body.theme-style-business nav#global > ul > .current-menu-item > a::after,
body.theme-style-business nav#global > ul > .menu-item > a::after{
	border-bottom-width: 1px;
}

/* iPhone */
@media only screen and (max-width:568px) {

	/* Paragraphs */
	
	body{
		font-size: 14px;
		line-height: initial;
	}
	
	h1 {
		font-size: 18px;
		line-height: 30px;
	}
	
	h1 em {
		font-size: 18px !important;
		padding: 5px 0px;
	}
	
	h1 small {
		font-size: 14px !important;
		line-height: 16px;
		padding-top: 0px !important;
		font-weight: normal;
	}
	
	button.hero, a.hero {
		font-size: 16px !important;
		width: 60%;
		padding: 10px;
	}
	
	blockquote, blockquote p {
		width: initial;
		line-height: initial;
		margin-left: 5px;
		font-size: 14px;
	}
	
	#guide > li .button-section{
		left: 0px;
		width: 100%;
	}
	
	#guide {
		width: 100%;
		min-height: 100vh;
	}
 
    body ul.category-list li{
        margin: 40px auto !important;
        display: block !important;
        width: 100% !important;
    }
    
    body ul.category-list li.has-children::after{
        width: 100% !important;
    }
	
	/* Breadcrumb */
	
	ul.breadcrumb li:last-of-type{
		display: none !important;
	}
	
	
	/* Search - Mobile */

	.search-form select:first-of-type + .selectize-control .selectize-input{
		border-left: 1px solid rgb(200,200,200) !important;
		border-right: 1px solid rgb(200,200,200) !important;
		border-bottom: 0px !important;
		border-top: 1px solid rgb(200,200,200) !important;
		border-top-left-radius: 6px !important;
		border-top-right-radius: 6px !important;
		border-bottom-left-radius: 0px !important;
		border-bottom-right-radius: 0px !important;
	}

	.search-form select:nth-of-type(1) + .selectize-control .selectize-input{
		border-left: 1px solid rgb(200,200,200) !important;
		border-right: 1px solid rgb(200,200,200) !important;
		border-bottom: 0px !important;
		border-top: 1px solid rgb(200,200,200) !important;
		border-radius: 0px !important;
	}
	
	.search-form .button {
		border-top-left-radius: 0px !important;
		border-top-right-radius: 0px !important;
		border-bottom-left-radius: 6px !important;
		border-bottom-right-radius: 6px !important;
		margin-left: 0px !important;
		border-left: 1px solid rgb(200,200,200) !important;
		border-right: 1px solid rgb(200,200,200) !important;
		border-top: 1px solid rgb(200,200,200) !important;
		border-bottom: 1px solid rgb(200,200,200) !important;
	}
	
}


